@aws-sdk/client-opensearch 3.699.0 → 3.709.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 +40 -0
- package/dist-cjs/index.js +240 -5
- package/dist-es/OpenSearch.js +10 -0
- package/dist-es/commands/AddDirectQueryDataSourceCommand.js +22 -0
- package/dist-es/commands/DeleteDirectQueryDataSourceCommand.js +22 -0
- package/dist-es/commands/GetDirectQueryDataSourceCommand.js +22 -0
- package/dist-es/commands/ListDirectQueryDataSourcesCommand.js +22 -0
- package/dist-es/commands/UpdateDirectQueryDataSourceCommand.js +22 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +10 -4
- package/dist-es/models/models_1.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +134 -0
- package/dist-types/OpenSearch.d.ts +36 -0
- package/dist-types/OpenSearchClient.d.ts +7 -2
- package/dist-types/commands/AddDirectQueryDataSourceCommand.d.ts +110 -0
- package/dist-types/commands/AddTagsCommand.d.ts +4 -4
- package/dist-types/commands/DeleteDirectQueryDataSourceCommand.d.ts +87 -0
- package/dist-types/commands/GetDirectQueryDataSourceCommand.d.ts +102 -0
- package/dist-types/commands/ListDirectQueryDataSourcesCommand.d.ts +113 -0
- package/dist-types/commands/ListInstanceTypeDetailsCommand.d.ts +1 -1
- package/dist-types/commands/ListPackagesForDomainCommand.d.ts +1 -1
- package/dist-types/commands/ListScheduledActionsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsCommand.d.ts +4 -3
- package/dist-types/commands/RemoveTagsCommand.d.ts +2 -2
- package/dist-types/commands/UpdateDirectQueryDataSourceCommand.d.ts +101 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +307 -298
- package/dist-types/models/models_1.d.ts +331 -4
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/OpenSearch.d.ts +86 -0
- package/dist-types/ts3.4/OpenSearchClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/AddDirectQueryDataSourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDirectQueryDataSourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetDirectQueryDataSourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDirectQueryDataSourcesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListInstanceTypeDetailsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPackagesForDomainCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListScheduledActionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDirectQueryDataSourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +74 -65
- package/dist-types/ts3.4/models/models_1.d.ts +77 -1
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +35 -35
|
@@ -53,6 +53,10 @@ import {
|
|
|
53
53
|
AddDataSourceCommandInput,
|
|
54
54
|
AddDataSourceCommandOutput,
|
|
55
55
|
} from "./commands/AddDataSourceCommand";
|
|
56
|
+
import {
|
|
57
|
+
AddDirectQueryDataSourceCommandInput,
|
|
58
|
+
AddDirectQueryDataSourceCommandOutput,
|
|
59
|
+
} from "./commands/AddDirectQueryDataSourceCommand";
|
|
56
60
|
import {
|
|
57
61
|
AddTagsCommandInput,
|
|
58
62
|
AddTagsCommandOutput,
|
|
@@ -105,6 +109,10 @@ import {
|
|
|
105
109
|
DeleteDataSourceCommandInput,
|
|
106
110
|
DeleteDataSourceCommandOutput,
|
|
107
111
|
} from "./commands/DeleteDataSourceCommand";
|
|
112
|
+
import {
|
|
113
|
+
DeleteDirectQueryDataSourceCommandInput,
|
|
114
|
+
DeleteDirectQueryDataSourceCommandOutput,
|
|
115
|
+
} from "./commands/DeleteDirectQueryDataSourceCommand";
|
|
108
116
|
import {
|
|
109
117
|
DeleteDomainCommandInput,
|
|
110
118
|
DeleteDomainCommandOutput,
|
|
@@ -205,6 +213,10 @@ import {
|
|
|
205
213
|
GetDataSourceCommandInput,
|
|
206
214
|
GetDataSourceCommandOutput,
|
|
207
215
|
} from "./commands/GetDataSourceCommand";
|
|
216
|
+
import {
|
|
217
|
+
GetDirectQueryDataSourceCommandInput,
|
|
218
|
+
GetDirectQueryDataSourceCommandOutput,
|
|
219
|
+
} from "./commands/GetDirectQueryDataSourceCommand";
|
|
208
220
|
import {
|
|
209
221
|
GetDomainMaintenanceStatusCommandInput,
|
|
210
222
|
GetDomainMaintenanceStatusCommandOutput,
|
|
@@ -229,6 +241,10 @@ import {
|
|
|
229
241
|
ListDataSourcesCommandInput,
|
|
230
242
|
ListDataSourcesCommandOutput,
|
|
231
243
|
} from "./commands/ListDataSourcesCommand";
|
|
244
|
+
import {
|
|
245
|
+
ListDirectQueryDataSourcesCommandInput,
|
|
246
|
+
ListDirectQueryDataSourcesCommandOutput,
|
|
247
|
+
} from "./commands/ListDirectQueryDataSourcesCommand";
|
|
232
248
|
import {
|
|
233
249
|
ListDomainMaintenancesCommandInput,
|
|
234
250
|
ListDomainMaintenancesCommandOutput,
|
|
@@ -305,6 +321,10 @@ import {
|
|
|
305
321
|
UpdateDataSourceCommandInput,
|
|
306
322
|
UpdateDataSourceCommandOutput,
|
|
307
323
|
} from "./commands/UpdateDataSourceCommand";
|
|
324
|
+
import {
|
|
325
|
+
UpdateDirectQueryDataSourceCommandInput,
|
|
326
|
+
UpdateDirectQueryDataSourceCommandOutput,
|
|
327
|
+
} from "./commands/UpdateDirectQueryDataSourceCommand";
|
|
308
328
|
import {
|
|
309
329
|
UpdateDomainConfigCommandInput,
|
|
310
330
|
UpdateDomainConfigCommandOutput,
|
|
@@ -339,6 +359,7 @@ export { __Client };
|
|
|
339
359
|
export type ServiceInputTypes =
|
|
340
360
|
| AcceptInboundConnectionCommandInput
|
|
341
361
|
| AddDataSourceCommandInput
|
|
362
|
+
| AddDirectQueryDataSourceCommandInput
|
|
342
363
|
| AddTagsCommandInput
|
|
343
364
|
| AssociatePackageCommandInput
|
|
344
365
|
| AssociatePackagesCommandInput
|
|
@@ -352,6 +373,7 @@ export type ServiceInputTypes =
|
|
|
352
373
|
| CreateVpcEndpointCommandInput
|
|
353
374
|
| DeleteApplicationCommandInput
|
|
354
375
|
| DeleteDataSourceCommandInput
|
|
376
|
+
| DeleteDirectQueryDataSourceCommandInput
|
|
355
377
|
| DeleteDomainCommandInput
|
|
356
378
|
| DeleteInboundConnectionCommandInput
|
|
357
379
|
| DeleteOutboundConnectionCommandInput
|
|
@@ -377,12 +399,14 @@ export type ServiceInputTypes =
|
|
|
377
399
|
| GetApplicationCommandInput
|
|
378
400
|
| GetCompatibleVersionsCommandInput
|
|
379
401
|
| GetDataSourceCommandInput
|
|
402
|
+
| GetDirectQueryDataSourceCommandInput
|
|
380
403
|
| GetDomainMaintenanceStatusCommandInput
|
|
381
404
|
| GetPackageVersionHistoryCommandInput
|
|
382
405
|
| GetUpgradeHistoryCommandInput
|
|
383
406
|
| GetUpgradeStatusCommandInput
|
|
384
407
|
| ListApplicationsCommandInput
|
|
385
408
|
| ListDataSourcesCommandInput
|
|
409
|
+
| ListDirectQueryDataSourcesCommandInput
|
|
386
410
|
| ListDomainMaintenancesCommandInput
|
|
387
411
|
| ListDomainNamesCommandInput
|
|
388
412
|
| ListDomainsForPackageCommandInput
|
|
@@ -402,6 +426,7 @@ export type ServiceInputTypes =
|
|
|
402
426
|
| StartServiceSoftwareUpdateCommandInput
|
|
403
427
|
| UpdateApplicationCommandInput
|
|
404
428
|
| UpdateDataSourceCommandInput
|
|
429
|
+
| UpdateDirectQueryDataSourceCommandInput
|
|
405
430
|
| UpdateDomainConfigCommandInput
|
|
406
431
|
| UpdatePackageCommandInput
|
|
407
432
|
| UpdatePackageScopeCommandInput
|
|
@@ -411,6 +436,7 @@ export type ServiceInputTypes =
|
|
|
411
436
|
export type ServiceOutputTypes =
|
|
412
437
|
| AcceptInboundConnectionCommandOutput
|
|
413
438
|
| AddDataSourceCommandOutput
|
|
439
|
+
| AddDirectQueryDataSourceCommandOutput
|
|
414
440
|
| AddTagsCommandOutput
|
|
415
441
|
| AssociatePackageCommandOutput
|
|
416
442
|
| AssociatePackagesCommandOutput
|
|
@@ -424,6 +450,7 @@ export type ServiceOutputTypes =
|
|
|
424
450
|
| CreateVpcEndpointCommandOutput
|
|
425
451
|
| DeleteApplicationCommandOutput
|
|
426
452
|
| DeleteDataSourceCommandOutput
|
|
453
|
+
| DeleteDirectQueryDataSourceCommandOutput
|
|
427
454
|
| DeleteDomainCommandOutput
|
|
428
455
|
| DeleteInboundConnectionCommandOutput
|
|
429
456
|
| DeleteOutboundConnectionCommandOutput
|
|
@@ -449,12 +476,14 @@ export type ServiceOutputTypes =
|
|
|
449
476
|
| GetApplicationCommandOutput
|
|
450
477
|
| GetCompatibleVersionsCommandOutput
|
|
451
478
|
| GetDataSourceCommandOutput
|
|
479
|
+
| GetDirectQueryDataSourceCommandOutput
|
|
452
480
|
| GetDomainMaintenanceStatusCommandOutput
|
|
453
481
|
| GetPackageVersionHistoryCommandOutput
|
|
454
482
|
| GetUpgradeHistoryCommandOutput
|
|
455
483
|
| GetUpgradeStatusCommandOutput
|
|
456
484
|
| ListApplicationsCommandOutput
|
|
457
485
|
| ListDataSourcesCommandOutput
|
|
486
|
+
| ListDirectQueryDataSourcesCommandOutput
|
|
458
487
|
| ListDomainMaintenancesCommandOutput
|
|
459
488
|
| ListDomainNamesCommandOutput
|
|
460
489
|
| ListDomainsForPackageCommandOutput
|
|
@@ -474,6 +503,7 @@ export type ServiceOutputTypes =
|
|
|
474
503
|
| StartServiceSoftwareUpdateCommandOutput
|
|
475
504
|
| UpdateApplicationCommandOutput
|
|
476
505
|
| UpdateDataSourceCommandOutput
|
|
506
|
+
| UpdateDirectQueryDataSourceCommandOutput
|
|
477
507
|
| UpdateDomainConfigCommandOutput
|
|
478
508
|
| UpdatePackageCommandOutput
|
|
479
509
|
| UpdatePackageScopeCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AddDirectQueryDataSourceRequest,
|
|
5
|
+
AddDirectQueryDataSourceResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
OpenSearchClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OpenSearchClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface AddDirectQueryDataSourceCommandInput
|
|
15
|
+
extends AddDirectQueryDataSourceRequest {}
|
|
16
|
+
export interface AddDirectQueryDataSourceCommandOutput
|
|
17
|
+
extends AddDirectQueryDataSourceResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const AddDirectQueryDataSourceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: AddDirectQueryDataSourceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
AddDirectQueryDataSourceCommandInput,
|
|
24
|
+
AddDirectQueryDataSourceCommandOutput,
|
|
25
|
+
OpenSearchClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: AddDirectQueryDataSourceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
AddDirectQueryDataSourceCommandInput,
|
|
33
|
+
AddDirectQueryDataSourceCommandOutput,
|
|
34
|
+
OpenSearchClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class AddDirectQueryDataSourceCommand extends AddDirectQueryDataSourceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: AddDirectQueryDataSourceRequest;
|
|
44
|
+
output: AddDirectQueryDataSourceResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: AddDirectQueryDataSourceCommandInput;
|
|
48
|
+
output: AddDirectQueryDataSourceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteDirectQueryDataSourceRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
OpenSearchClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../OpenSearchClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteDirectQueryDataSourceCommandInput
|
|
12
|
+
extends DeleteDirectQueryDataSourceRequest {}
|
|
13
|
+
export interface DeleteDirectQueryDataSourceCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const DeleteDirectQueryDataSourceCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteDirectQueryDataSourceCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
DeleteDirectQueryDataSourceCommandInput,
|
|
20
|
+
DeleteDirectQueryDataSourceCommandOutput,
|
|
21
|
+
OpenSearchClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: DeleteDirectQueryDataSourceCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
DeleteDirectQueryDataSourceCommandInput,
|
|
29
|
+
DeleteDirectQueryDataSourceCommandOutput,
|
|
30
|
+
OpenSearchClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class DeleteDirectQueryDataSourceCommand extends DeleteDirectQueryDataSourceCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: DeleteDirectQueryDataSourceRequest;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: DeleteDirectQueryDataSourceCommandInput;
|
|
44
|
+
output: DeleteDirectQueryDataSourceCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetDirectQueryDataSourceRequest,
|
|
5
|
+
GetDirectQueryDataSourceResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
OpenSearchClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OpenSearchClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetDirectQueryDataSourceCommandInput
|
|
15
|
+
extends GetDirectQueryDataSourceRequest {}
|
|
16
|
+
export interface GetDirectQueryDataSourceCommandOutput
|
|
17
|
+
extends GetDirectQueryDataSourceResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetDirectQueryDataSourceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetDirectQueryDataSourceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetDirectQueryDataSourceCommandInput,
|
|
24
|
+
GetDirectQueryDataSourceCommandOutput,
|
|
25
|
+
OpenSearchClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetDirectQueryDataSourceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetDirectQueryDataSourceCommandInput,
|
|
33
|
+
GetDirectQueryDataSourceCommandOutput,
|
|
34
|
+
OpenSearchClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetDirectQueryDataSourceCommand extends GetDirectQueryDataSourceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetDirectQueryDataSourceRequest;
|
|
44
|
+
output: GetDirectQueryDataSourceResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetDirectQueryDataSourceCommandInput;
|
|
48
|
+
output: GetDirectQueryDataSourceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListDirectQueryDataSourcesRequest,
|
|
5
|
+
ListDirectQueryDataSourcesResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
OpenSearchClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OpenSearchClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListDirectQueryDataSourcesCommandInput
|
|
15
|
+
extends ListDirectQueryDataSourcesRequest {}
|
|
16
|
+
export interface ListDirectQueryDataSourcesCommandOutput
|
|
17
|
+
extends ListDirectQueryDataSourcesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListDirectQueryDataSourcesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListDirectQueryDataSourcesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListDirectQueryDataSourcesCommandInput,
|
|
24
|
+
ListDirectQueryDataSourcesCommandOutput,
|
|
25
|
+
OpenSearchClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListDirectQueryDataSourcesCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListDirectQueryDataSourcesCommandInput,
|
|
33
|
+
ListDirectQueryDataSourcesCommandOutput,
|
|
34
|
+
OpenSearchClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListDirectQueryDataSourcesCommand extends ListDirectQueryDataSourcesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListDirectQueryDataSourcesRequest;
|
|
44
|
+
output: ListDirectQueryDataSourcesResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListDirectQueryDataSourcesCommandInput;
|
|
48
|
+
output: ListDirectQueryDataSourcesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
ListInstanceTypeDetailsRequest,
|
|
5
5
|
ListInstanceTypeDetailsResponse,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_1";
|
|
7
7
|
import {
|
|
8
8
|
OpenSearchClientResolvedConfig,
|
|
9
9
|
ServiceInputTypes,
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
ListPackagesForDomainRequest,
|
|
5
5
|
ListPackagesForDomainResponse,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_1";
|
|
7
7
|
import {
|
|
8
8
|
OpenSearchClientResolvedConfig,
|
|
9
9
|
ServiceInputTypes,
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
ListScheduledActionsRequest,
|
|
5
5
|
ListScheduledActionsResponse,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_1";
|
|
7
7
|
import {
|
|
8
8
|
OpenSearchClientResolvedConfig,
|
|
9
9
|
ServiceInputTypes,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { ListTagsRequest, ListTagsResponse } from "../models/
|
|
3
|
+
import { ListTagsRequest, ListTagsResponse } from "../models/models_1";
|
|
4
4
|
import {
|
|
5
5
|
OpenSearchClientResolvedConfig,
|
|
6
6
|
ServiceInputTypes,
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UpdateDirectQueryDataSourceRequest,
|
|
5
|
+
UpdateDirectQueryDataSourceResponse,
|
|
6
|
+
} from "../models/models_1";
|
|
7
|
+
import {
|
|
8
|
+
OpenSearchClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OpenSearchClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateDirectQueryDataSourceCommandInput
|
|
15
|
+
extends UpdateDirectQueryDataSourceRequest {}
|
|
16
|
+
export interface UpdateDirectQueryDataSourceCommandOutput
|
|
17
|
+
extends UpdateDirectQueryDataSourceResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateDirectQueryDataSourceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateDirectQueryDataSourceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateDirectQueryDataSourceCommandInput,
|
|
24
|
+
UpdateDirectQueryDataSourceCommandOutput,
|
|
25
|
+
OpenSearchClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateDirectQueryDataSourceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateDirectQueryDataSourceCommandInput,
|
|
33
|
+
UpdateDirectQueryDataSourceCommandOutput,
|
|
34
|
+
OpenSearchClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateDirectQueryDataSourceCommand extends UpdateDirectQueryDataSourceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateDirectQueryDataSourceRequest;
|
|
44
|
+
output: UpdateDirectQueryDataSourceResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateDirectQueryDataSourceCommandInput;
|
|
48
|
+
output: UpdateDirectQueryDataSourceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./AcceptInboundConnectionCommand";
|
|
2
2
|
export * from "./AddDataSourceCommand";
|
|
3
|
+
export * from "./AddDirectQueryDataSourceCommand";
|
|
3
4
|
export * from "./AddTagsCommand";
|
|
4
5
|
export * from "./AssociatePackageCommand";
|
|
5
6
|
export * from "./AssociatePackagesCommand";
|
|
@@ -13,6 +14,7 @@ export * from "./CreatePackageCommand";
|
|
|
13
14
|
export * from "./CreateVpcEndpointCommand";
|
|
14
15
|
export * from "./DeleteApplicationCommand";
|
|
15
16
|
export * from "./DeleteDataSourceCommand";
|
|
17
|
+
export * from "./DeleteDirectQueryDataSourceCommand";
|
|
16
18
|
export * from "./DeleteDomainCommand";
|
|
17
19
|
export * from "./DeleteInboundConnectionCommand";
|
|
18
20
|
export * from "./DeleteOutboundConnectionCommand";
|
|
@@ -38,12 +40,14 @@ export * from "./DissociatePackagesCommand";
|
|
|
38
40
|
export * from "./GetApplicationCommand";
|
|
39
41
|
export * from "./GetCompatibleVersionsCommand";
|
|
40
42
|
export * from "./GetDataSourceCommand";
|
|
43
|
+
export * from "./GetDirectQueryDataSourceCommand";
|
|
41
44
|
export * from "./GetDomainMaintenanceStatusCommand";
|
|
42
45
|
export * from "./GetPackageVersionHistoryCommand";
|
|
43
46
|
export * from "./GetUpgradeHistoryCommand";
|
|
44
47
|
export * from "./GetUpgradeStatusCommand";
|
|
45
48
|
export * from "./ListApplicationsCommand";
|
|
46
49
|
export * from "./ListDataSourcesCommand";
|
|
50
|
+
export * from "./ListDirectQueryDataSourcesCommand";
|
|
47
51
|
export * from "./ListDomainMaintenancesCommand";
|
|
48
52
|
export * from "./ListDomainNamesCommand";
|
|
49
53
|
export * from "./ListDomainsForPackageCommand";
|
|
@@ -63,6 +67,7 @@ export * from "./StartDomainMaintenanceCommand";
|
|
|
63
67
|
export * from "./StartServiceSoftwareUpdateCommand";
|
|
64
68
|
export * from "./UpdateApplicationCommand";
|
|
65
69
|
export * from "./UpdateDataSourceCommand";
|
|
70
|
+
export * from "./UpdateDirectQueryDataSourceCommand";
|
|
66
71
|
export * from "./UpdateDomainConfigCommand";
|
|
67
72
|
export * from "./UpdatePackageCommand";
|
|
68
73
|
export * from "./UpdatePackageScopeCommand";
|
|
@@ -164,14 +164,57 @@ export declare class ValidationException extends __BaseException {
|
|
|
164
164
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
165
165
|
);
|
|
166
166
|
}
|
|
167
|
-
export interface
|
|
168
|
-
|
|
169
|
-
|
|
167
|
+
export interface CloudWatchDirectQueryDataSource {
|
|
168
|
+
RoleArn: string | undefined;
|
|
169
|
+
}
|
|
170
|
+
export interface SecurityLakeDirectQueryDataSource {
|
|
171
|
+
RoleArn: string | undefined;
|
|
172
|
+
}
|
|
173
|
+
export type DirectQueryDataSourceType =
|
|
174
|
+
| DirectQueryDataSourceType.CloudWatchLogMember
|
|
175
|
+
| DirectQueryDataSourceType.SecurityLakeMember
|
|
176
|
+
| DirectQueryDataSourceType.$UnknownMember;
|
|
177
|
+
export declare namespace DirectQueryDataSourceType {
|
|
178
|
+
interface CloudWatchLogMember {
|
|
179
|
+
CloudWatchLog: CloudWatchDirectQueryDataSource;
|
|
180
|
+
SecurityLake?: never;
|
|
181
|
+
$unknown?: never;
|
|
182
|
+
}
|
|
183
|
+
interface SecurityLakeMember {
|
|
184
|
+
CloudWatchLog?: never;
|
|
185
|
+
SecurityLake: SecurityLakeDirectQueryDataSource;
|
|
186
|
+
$unknown?: never;
|
|
187
|
+
}
|
|
188
|
+
interface $UnknownMember {
|
|
189
|
+
CloudWatchLog?: never;
|
|
190
|
+
SecurityLake?: never;
|
|
191
|
+
$unknown: [string, any];
|
|
192
|
+
}
|
|
193
|
+
interface Visitor<T> {
|
|
194
|
+
CloudWatchLog: (value: CloudWatchDirectQueryDataSource) => T;
|
|
195
|
+
SecurityLake: (value: SecurityLakeDirectQueryDataSource) => T;
|
|
196
|
+
_: (name: string, value: any) => T;
|
|
197
|
+
}
|
|
198
|
+
const visit: <T>(value: DirectQueryDataSourceType, visitor: Visitor<T>) => T;
|
|
170
199
|
}
|
|
171
200
|
export interface Tag {
|
|
172
201
|
Key: string | undefined;
|
|
173
202
|
Value: string | undefined;
|
|
174
203
|
}
|
|
204
|
+
export interface AddDirectQueryDataSourceRequest {
|
|
205
|
+
DataSourceName: string | undefined;
|
|
206
|
+
DataSourceType: DirectQueryDataSourceType | undefined;
|
|
207
|
+
Description?: string | undefined;
|
|
208
|
+
OpenSearchArns: string[] | undefined;
|
|
209
|
+
TagList?: Tag[] | undefined;
|
|
210
|
+
}
|
|
211
|
+
export interface AddDirectQueryDataSourceResponse {
|
|
212
|
+
DataSourceArn?: string | undefined;
|
|
213
|
+
}
|
|
214
|
+
export interface AdditionalLimit {
|
|
215
|
+
LimitName?: string | undefined;
|
|
216
|
+
LimitValues?: string[] | undefined;
|
|
217
|
+
}
|
|
175
218
|
export interface AddTagsRequest {
|
|
176
219
|
ARN: string | undefined;
|
|
177
220
|
TagList: Tag[] | undefined;
|
|
@@ -1031,6 +1074,9 @@ export interface DeleteDataSourceRequest {
|
|
|
1031
1074
|
export interface DeleteDataSourceResponse {
|
|
1032
1075
|
Message?: string | undefined;
|
|
1033
1076
|
}
|
|
1077
|
+
export interface DeleteDirectQueryDataSourceRequest {
|
|
1078
|
+
DataSourceName: string | undefined;
|
|
1079
|
+
}
|
|
1034
1080
|
export interface DeleteDomainRequest {
|
|
1035
1081
|
DomainName: string | undefined;
|
|
1036
1082
|
}
|
|
@@ -1597,6 +1643,16 @@ export interface GetDataSourceResponse {
|
|
|
1597
1643
|
Description?: string | undefined;
|
|
1598
1644
|
Status?: DataSourceStatus | undefined;
|
|
1599
1645
|
}
|
|
1646
|
+
export interface GetDirectQueryDataSourceRequest {
|
|
1647
|
+
DataSourceName: string | undefined;
|
|
1648
|
+
}
|
|
1649
|
+
export interface GetDirectQueryDataSourceResponse {
|
|
1650
|
+
DataSourceName?: string | undefined;
|
|
1651
|
+
DataSourceType?: DirectQueryDataSourceType | undefined;
|
|
1652
|
+
Description?: string | undefined;
|
|
1653
|
+
OpenSearchArns?: string[] | undefined;
|
|
1654
|
+
DataSourceArn?: string | undefined;
|
|
1655
|
+
}
|
|
1600
1656
|
export interface GetDomainMaintenanceStatusRequest {
|
|
1601
1657
|
DomainName: string | undefined;
|
|
1602
1658
|
MaintenanceId: string | undefined;
|
|
@@ -1714,6 +1770,21 @@ export interface DataSourceDetails {
|
|
|
1714
1770
|
export interface ListDataSourcesResponse {
|
|
1715
1771
|
DataSources?: DataSourceDetails[] | undefined;
|
|
1716
1772
|
}
|
|
1773
|
+
export interface ListDirectQueryDataSourcesRequest {
|
|
1774
|
+
NextToken?: string | undefined;
|
|
1775
|
+
}
|
|
1776
|
+
export interface DirectQueryDataSource {
|
|
1777
|
+
DataSourceName?: string | undefined;
|
|
1778
|
+
DataSourceType?: DirectQueryDataSourceType | undefined;
|
|
1779
|
+
Description?: string | undefined;
|
|
1780
|
+
OpenSearchArns?: string[] | undefined;
|
|
1781
|
+
DataSourceArn?: string | undefined;
|
|
1782
|
+
TagList?: Tag[] | undefined;
|
|
1783
|
+
}
|
|
1784
|
+
export interface ListDirectQueryDataSourcesResponse {
|
|
1785
|
+
NextToken?: string | undefined;
|
|
1786
|
+
DirectQueryDataSources?: DirectQueryDataSource[] | undefined;
|
|
1787
|
+
}
|
|
1717
1788
|
export interface ListDomainMaintenancesRequest {
|
|
1718
1789
|
DomainName: string | undefined;
|
|
1719
1790
|
Action?: MaintenanceType | undefined;
|
|
@@ -1759,68 +1830,6 @@ export interface ListDomainsForPackageResponse {
|
|
|
1759
1830
|
DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
|
|
1760
1831
|
NextToken?: string | undefined;
|
|
1761
1832
|
}
|
|
1762
|
-
export interface ListInstanceTypeDetailsRequest {
|
|
1763
|
-
EngineVersion: string | undefined;
|
|
1764
|
-
DomainName?: string | undefined;
|
|
1765
|
-
MaxResults?: number | undefined;
|
|
1766
|
-
NextToken?: string | undefined;
|
|
1767
|
-
RetrieveAZs?: boolean | undefined;
|
|
1768
|
-
InstanceType?: string | undefined;
|
|
1769
|
-
}
|
|
1770
|
-
export interface InstanceTypeDetails {
|
|
1771
|
-
InstanceType?: OpenSearchPartitionInstanceType | undefined;
|
|
1772
|
-
EncryptionEnabled?: boolean | undefined;
|
|
1773
|
-
CognitoEnabled?: boolean | undefined;
|
|
1774
|
-
AppLogsEnabled?: boolean | undefined;
|
|
1775
|
-
AdvancedSecurityEnabled?: boolean | undefined;
|
|
1776
|
-
WarmEnabled?: boolean | undefined;
|
|
1777
|
-
InstanceRole?: string[] | undefined;
|
|
1778
|
-
AvailabilityZones?: string[] | undefined;
|
|
1779
|
-
}
|
|
1780
|
-
export interface ListInstanceTypeDetailsResponse {
|
|
1781
|
-
InstanceTypeDetails?: InstanceTypeDetails[] | undefined;
|
|
1782
|
-
NextToken?: string | undefined;
|
|
1783
|
-
}
|
|
1784
|
-
export interface ListPackagesForDomainRequest {
|
|
1785
|
-
DomainName: string | undefined;
|
|
1786
|
-
MaxResults?: number | undefined;
|
|
1787
|
-
NextToken?: string | undefined;
|
|
1788
|
-
}
|
|
1789
|
-
export interface ListPackagesForDomainResponse {
|
|
1790
|
-
DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
|
|
1791
|
-
NextToken?: string | undefined;
|
|
1792
|
-
}
|
|
1793
|
-
export interface ListScheduledActionsRequest {
|
|
1794
|
-
DomainName: string | undefined;
|
|
1795
|
-
MaxResults?: number | undefined;
|
|
1796
|
-
NextToken?: string | undefined;
|
|
1797
|
-
}
|
|
1798
|
-
export declare const ScheduledBy: {
|
|
1799
|
-
readonly CUSTOMER: "CUSTOMER";
|
|
1800
|
-
readonly SYSTEM: "SYSTEM";
|
|
1801
|
-
};
|
|
1802
|
-
export type ScheduledBy = (typeof ScheduledBy)[keyof typeof ScheduledBy];
|
|
1803
|
-
export interface ScheduledAction {
|
|
1804
|
-
Id: string | undefined;
|
|
1805
|
-
Type: ActionType | undefined;
|
|
1806
|
-
Severity: ActionSeverity | undefined;
|
|
1807
|
-
ScheduledTime: number | undefined;
|
|
1808
|
-
Description?: string | undefined;
|
|
1809
|
-
ScheduledBy?: ScheduledBy | undefined;
|
|
1810
|
-
Status?: ActionStatus | undefined;
|
|
1811
|
-
Mandatory?: boolean | undefined;
|
|
1812
|
-
Cancellable?: boolean | undefined;
|
|
1813
|
-
}
|
|
1814
|
-
export interface ListScheduledActionsResponse {
|
|
1815
|
-
ScheduledActions?: ScheduledAction[] | undefined;
|
|
1816
|
-
NextToken?: string | undefined;
|
|
1817
|
-
}
|
|
1818
|
-
export interface ListTagsRequest {
|
|
1819
|
-
ARN: string | undefined;
|
|
1820
|
-
}
|
|
1821
|
-
export interface ListTagsResponse {
|
|
1822
|
-
TagList?: Tag[] | undefined;
|
|
1823
|
-
}
|
|
1824
1833
|
export declare const MasterUserOptionsFilterSensitiveLog: (
|
|
1825
1834
|
obj: MasterUserOptions
|
|
1826
1835
|
) => any;
|