@aws-sdk/client-opensearch 3.1020.0 → 3.1022.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 +21 -0
- package/dist-cjs/index.js +57 -0
- package/dist-cjs/models/errors.js +14 -1
- package/dist-cjs/schemas/schemas_0.js +107 -11
- package/dist-es/OpenSearch.js +6 -0
- package/dist-es/commands/DeregisterCapabilityCommand.js +16 -0
- package/dist-es/commands/GetCapabilityCommand.js +16 -0
- package/dist-es/commands/RegisterCapabilityCommand.js +16 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/enums.js +13 -0
- package/dist-es/models/errors.js +12 -0
- package/dist-es/schemas/schemas_0.js +99 -3
- package/dist-types/OpenSearch.d.ts +21 -0
- package/dist-types/OpenSearchClient.d.ts +5 -2
- package/dist-types/commands/CreateDomainCommand.d.ts +2 -2
- package/dist-types/commands/DeleteDomainCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterCapabilityCommand.d.ts +93 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDomainConfigCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDomainsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDryRunProgressCommand.d.ts +1 -1
- package/dist-types/commands/GetCapabilityCommand.d.ts +101 -0
- package/dist-types/commands/RegisterCapabilityCommand.d.ts +104 -0
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDirectQueryDataSourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainConfigCommand.d.ts +3 -3
- package/dist-types/commands/UpdateIndexCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePackageCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePackageScopeCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/enums.d.ts +29 -0
- package/dist-types/models/errors.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +249 -366
- package/dist-types/models/models_1.d.ts +368 -2
- package/dist-types/schemas/schemas_0.d.ts +15 -0
- package/dist-types/ts3.4/OpenSearch.d.ts +51 -0
- package/dist-types/ts3.4/OpenSearchClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DeregisterCapabilityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetCapabilityCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/RegisterCapabilityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateDirectQueryDataSourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateIndexCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePackageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePackageScopeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/enums.d.ts +17 -0
- package/dist-types/ts3.4/models/errors.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +87 -75
- package/dist-types/ts3.4/models/models_1.d.ts +106 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +15 -0
- package/package.json +6 -6
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetCapabilityRequest,
|
|
5
|
+
GetCapabilityResponse,
|
|
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 GetCapabilityCommandInput extends GetCapabilityRequest {}
|
|
15
|
+
export interface GetCapabilityCommandOutput
|
|
16
|
+
extends GetCapabilityResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetCapabilityCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetCapabilityCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetCapabilityCommandInput,
|
|
23
|
+
GetCapabilityCommandOutput,
|
|
24
|
+
OpenSearchClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: GetCapabilityCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetCapabilityCommandInput,
|
|
32
|
+
GetCapabilityCommandOutput,
|
|
33
|
+
OpenSearchClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GetCapabilityCommand extends GetCapabilityCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GetCapabilityRequest;
|
|
43
|
+
output: GetCapabilityResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GetCapabilityCommandInput;
|
|
47
|
+
output: GetCapabilityCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
RegisterCapabilityRequest,
|
|
5
|
+
RegisterCapabilityResponse,
|
|
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 RegisterCapabilityCommandInput
|
|
15
|
+
extends RegisterCapabilityRequest {}
|
|
16
|
+
export interface RegisterCapabilityCommandOutput
|
|
17
|
+
extends RegisterCapabilityResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const RegisterCapabilityCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: RegisterCapabilityCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
RegisterCapabilityCommandInput,
|
|
24
|
+
RegisterCapabilityCommandOutput,
|
|
25
|
+
OpenSearchClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: RegisterCapabilityCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
RegisterCapabilityCommandInput,
|
|
33
|
+
RegisterCapabilityCommandOutput,
|
|
34
|
+
OpenSearchClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class RegisterCapabilityCommand extends RegisterCapabilityCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: RegisterCapabilityRequest;
|
|
44
|
+
output: RegisterCapabilityResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: RegisterCapabilityCommandInput;
|
|
48
|
+
output: RegisterCapabilityCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
UpdateDataSourceResponse,
|
|
6
|
-
} from "../models/models_0";
|
|
3
|
+
import { UpdateDataSourceRequest } from "../models/models_0";
|
|
4
|
+
import { UpdateDataSourceResponse } from "../models/models_1";
|
|
7
5
|
import {
|
|
8
6
|
OpenSearchClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
UpdateDirectQueryDataSourceRequest,
|
|
5
5
|
UpdateDirectQueryDataSourceResponse,
|
|
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 { UpdateIndexRequest, UpdateIndexResponse } from "../models/
|
|
3
|
+
import { UpdateIndexRequest, UpdateIndexResponse } from "../models/models_1";
|
|
4
4
|
import {
|
|
5
5
|
OpenSearchClientResolvedConfig,
|
|
6
6
|
ServiceInputTypes,
|
|
@@ -22,6 +22,7 @@ export * from "./DeleteIndexCommand";
|
|
|
22
22
|
export * from "./DeleteOutboundConnectionCommand";
|
|
23
23
|
export * from "./DeletePackageCommand";
|
|
24
24
|
export * from "./DeleteVpcEndpointCommand";
|
|
25
|
+
export * from "./DeregisterCapabilityCommand";
|
|
25
26
|
export * from "./DescribeDomainAutoTunesCommand";
|
|
26
27
|
export * from "./DescribeDomainChangeProgressCommand";
|
|
27
28
|
export * from "./DescribeDomainCommand";
|
|
@@ -41,6 +42,7 @@ export * from "./DescribeVpcEndpointsCommand";
|
|
|
41
42
|
export * from "./DissociatePackageCommand";
|
|
42
43
|
export * from "./DissociatePackagesCommand";
|
|
43
44
|
export * from "./GetApplicationCommand";
|
|
45
|
+
export * from "./GetCapabilityCommand";
|
|
44
46
|
export * from "./GetCompatibleVersionsCommand";
|
|
45
47
|
export * from "./GetDataSourceCommand";
|
|
46
48
|
export * from "./GetDefaultApplicationSettingCommand";
|
|
@@ -67,6 +69,7 @@ export * from "./ListVpcEndpointsCommand";
|
|
|
67
69
|
export * from "./ListVpcEndpointsForDomainCommand";
|
|
68
70
|
export * from "./PurchaseReservedInstanceOfferingCommand";
|
|
69
71
|
export * from "./PutDefaultApplicationSettingCommand";
|
|
72
|
+
export * from "./RegisterCapabilityCommand";
|
|
70
73
|
export * from "./RejectInboundConnectionCommand";
|
|
71
74
|
export * from "./RemoveTagsCommand";
|
|
72
75
|
export * from "./RevokeVpcEndpointAccessCommand";
|
|
@@ -240,6 +240,7 @@ export declare const TLSSecurityPolicy: {
|
|
|
240
240
|
readonly POLICY_MIN_TLS_1_0_2019_07: "Policy-Min-TLS-1-0-2019-07";
|
|
241
241
|
readonly POLICY_MIN_TLS_1_2_2019_07: "Policy-Min-TLS-1-2-2019-07";
|
|
242
242
|
readonly POLICY_MIN_TLS_1_2_PFS_2023_10: "Policy-Min-TLS-1-2-PFS-2023-10";
|
|
243
|
+
readonly POLICY_MIN_TLS_1_2_RFC9151_FIPS_2024_08: "Policy-Min-TLS-1-2-RFC9151-FIPS-2024-08";
|
|
243
244
|
};
|
|
244
245
|
export type TLSSecurityPolicy =
|
|
245
246
|
(typeof TLSSecurityPolicy)[keyof typeof TLSSecurityPolicy];
|
|
@@ -376,6 +377,17 @@ export declare const VpcEndpointStatus: {
|
|
|
376
377
|
};
|
|
377
378
|
export type VpcEndpointStatus =
|
|
378
379
|
(typeof VpcEndpointStatus)[keyof typeof VpcEndpointStatus];
|
|
380
|
+
export declare const CapabilityStatus: {
|
|
381
|
+
readonly ACTIVE: "active";
|
|
382
|
+
readonly CREATE_FAILED: "create_failed";
|
|
383
|
+
readonly CREATING: "creating";
|
|
384
|
+
readonly DELETE_FAILED: "delete_failed";
|
|
385
|
+
readonly DELETING: "deleting";
|
|
386
|
+
readonly UPDATE_FAILED: "update_failed";
|
|
387
|
+
readonly UPDATING: "updating";
|
|
388
|
+
};
|
|
389
|
+
export type CapabilityStatus =
|
|
390
|
+
(typeof CapabilityStatus)[keyof typeof CapabilityStatus];
|
|
379
391
|
export declare const ScheduledAutoTuneActionType: {
|
|
380
392
|
readonly JVM_HEAP_SIZE_TUNING: "JVM_HEAP_SIZE_TUNING";
|
|
381
393
|
readonly JVM_YOUNG_GEN_TUNING: "JVM_YOUNG_GEN_TUNING";
|
|
@@ -489,6 +501,11 @@ export declare const ApplicationStatus: {
|
|
|
489
501
|
};
|
|
490
502
|
export type ApplicationStatus =
|
|
491
503
|
(typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
504
|
+
export declare const CapabilityFailureReason: {
|
|
505
|
+
readonly KMS_KEY_INSUFFICIENT_PERMISSION: "KMS_KEY_INSUFFICIENT_PERMISSION";
|
|
506
|
+
};
|
|
507
|
+
export type CapabilityFailureReason =
|
|
508
|
+
(typeof CapabilityFailureReason)[keyof typeof CapabilityFailureReason];
|
|
492
509
|
export declare const DataSourceStatus: {
|
|
493
510
|
readonly ACTIVE: "ACTIVE";
|
|
494
511
|
readonly DISABLED: "DISABLED";
|
|
@@ -88,6 +88,13 @@ export declare class InvalidPaginationTokenException extends __BaseException {
|
|
|
88
88
|
>
|
|
89
89
|
);
|
|
90
90
|
}
|
|
91
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
92
|
+
readonly name: "ServiceQuotaExceededException";
|
|
93
|
+
readonly $fault: "client";
|
|
94
|
+
constructor(
|
|
95
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
96
|
+
);
|
|
97
|
+
}
|
|
91
98
|
export declare class SlotNotAvailableException extends __BaseException {
|
|
92
99
|
readonly name: "SlotNotAvailableException";
|
|
93
100
|
readonly $fault: "client";
|
|
@@ -9,6 +9,8 @@ import {
|
|
|
9
9
|
AutoTuneState,
|
|
10
10
|
AutoTuneType,
|
|
11
11
|
AWSServicePrincipal,
|
|
12
|
+
CapabilityFailureReason,
|
|
13
|
+
CapabilityStatus,
|
|
12
14
|
ConfigChangeStatus,
|
|
13
15
|
ConnectionMode,
|
|
14
16
|
DataSourceStatus,
|
|
@@ -19,7 +21,6 @@ import {
|
|
|
19
21
|
DomainPackageStatus,
|
|
20
22
|
DomainProcessingStatusType,
|
|
21
23
|
DomainState,
|
|
22
|
-
DryRunMode,
|
|
23
24
|
EngineType,
|
|
24
25
|
InboundConnectionStatusCode,
|
|
25
26
|
IndexStatus,
|
|
@@ -45,7 +46,6 @@ import {
|
|
|
45
46
|
OptionState,
|
|
46
47
|
OutboundConnectionStatusCode,
|
|
47
48
|
OverallChangeStatus,
|
|
48
|
-
PackageScopeOperationEnum,
|
|
49
49
|
PackageStatus,
|
|
50
50
|
PackageType,
|
|
51
51
|
PrincipalType,
|
|
@@ -277,6 +277,7 @@ export interface AdvancedSecurityOptionsStatus {
|
|
|
277
277
|
Options: AdvancedSecurityOptions | undefined;
|
|
278
278
|
Status: OptionStatus | undefined;
|
|
279
279
|
}
|
|
280
|
+
export interface AIConfig {}
|
|
280
281
|
export interface NaturalLanguageQueryGenerationOptionsInput {
|
|
281
282
|
DesiredState?: NaturalLanguageQueryGenerationDesiredState | undefined;
|
|
282
283
|
}
|
|
@@ -813,6 +814,13 @@ export interface VpcEndpointSummary {
|
|
|
813
814
|
export interface DeleteVpcEndpointResponse {
|
|
814
815
|
VpcEndpointSummary: VpcEndpointSummary | undefined;
|
|
815
816
|
}
|
|
817
|
+
export interface DeregisterCapabilityRequest {
|
|
818
|
+
applicationId: string | undefined;
|
|
819
|
+
capabilityName: string | undefined;
|
|
820
|
+
}
|
|
821
|
+
export interface DeregisterCapabilityResponse {
|
|
822
|
+
status?: CapabilityStatus | undefined;
|
|
823
|
+
}
|
|
816
824
|
export interface DescribeDomainRequest {
|
|
817
825
|
DomainName: string | undefined;
|
|
818
826
|
}
|
|
@@ -1221,6 +1229,38 @@ export interface GetApplicationResponse {
|
|
|
1221
1229
|
lastUpdatedAt?: Date | undefined;
|
|
1222
1230
|
kmsKeyArn?: string | undefined;
|
|
1223
1231
|
}
|
|
1232
|
+
export interface GetCapabilityRequest {
|
|
1233
|
+
applicationId: string | undefined;
|
|
1234
|
+
capabilityName: string | undefined;
|
|
1235
|
+
}
|
|
1236
|
+
export type CapabilityExtendedResponseConfig =
|
|
1237
|
+
| CapabilityExtendedResponseConfig.AiConfigMember
|
|
1238
|
+
| CapabilityExtendedResponseConfig.$UnknownMember;
|
|
1239
|
+
export declare namespace CapabilityExtendedResponseConfig {
|
|
1240
|
+
interface AiConfigMember {
|
|
1241
|
+
aiConfig: AIConfig;
|
|
1242
|
+
$unknown?: never;
|
|
1243
|
+
}
|
|
1244
|
+
interface $UnknownMember {
|
|
1245
|
+
aiConfig?: never;
|
|
1246
|
+
$unknown: [string, any];
|
|
1247
|
+
}
|
|
1248
|
+
interface Visitor<T> {
|
|
1249
|
+
aiConfig: (value: AIConfig) => T;
|
|
1250
|
+
_: (name: string, value: any) => T;
|
|
1251
|
+
}
|
|
1252
|
+
}
|
|
1253
|
+
export interface CapabilityFailure {
|
|
1254
|
+
reason?: CapabilityFailureReason | undefined;
|
|
1255
|
+
details?: string | undefined;
|
|
1256
|
+
}
|
|
1257
|
+
export interface GetCapabilityResponse {
|
|
1258
|
+
capabilityName?: string | undefined;
|
|
1259
|
+
applicationId?: string | undefined;
|
|
1260
|
+
status?: CapabilityStatus | undefined;
|
|
1261
|
+
capabilityConfig?: CapabilityExtendedResponseConfig | undefined;
|
|
1262
|
+
failures?: CapabilityFailure[] | undefined;
|
|
1263
|
+
}
|
|
1224
1264
|
export interface GetCompatibleVersionsRequest {
|
|
1225
1265
|
DomainName?: string | undefined;
|
|
1226
1266
|
}
|
|
@@ -1535,6 +1575,51 @@ export interface PutDefaultApplicationSettingRequest {
|
|
|
1535
1575
|
export interface PutDefaultApplicationSettingResponse {
|
|
1536
1576
|
applicationArn?: string | undefined;
|
|
1537
1577
|
}
|
|
1578
|
+
export type CapabilityBaseRequestConfig =
|
|
1579
|
+
| CapabilityBaseRequestConfig.AiConfigMember
|
|
1580
|
+
| CapabilityBaseRequestConfig.$UnknownMember;
|
|
1581
|
+
export declare namespace CapabilityBaseRequestConfig {
|
|
1582
|
+
interface AiConfigMember {
|
|
1583
|
+
aiConfig: AIConfig;
|
|
1584
|
+
$unknown?: never;
|
|
1585
|
+
}
|
|
1586
|
+
interface $UnknownMember {
|
|
1587
|
+
aiConfig?: never;
|
|
1588
|
+
$unknown: [string, any];
|
|
1589
|
+
}
|
|
1590
|
+
interface Visitor<T> {
|
|
1591
|
+
aiConfig: (value: AIConfig) => T;
|
|
1592
|
+
_: (name: string, value: any) => T;
|
|
1593
|
+
}
|
|
1594
|
+
}
|
|
1595
|
+
export interface RegisterCapabilityRequest {
|
|
1596
|
+
applicationId: string | undefined;
|
|
1597
|
+
capabilityName: string | undefined;
|
|
1598
|
+
capabilityConfig: CapabilityBaseRequestConfig | undefined;
|
|
1599
|
+
}
|
|
1600
|
+
export type CapabilityBaseResponseConfig =
|
|
1601
|
+
| CapabilityBaseResponseConfig.AiConfigMember
|
|
1602
|
+
| CapabilityBaseResponseConfig.$UnknownMember;
|
|
1603
|
+
export declare namespace CapabilityBaseResponseConfig {
|
|
1604
|
+
interface AiConfigMember {
|
|
1605
|
+
aiConfig: AIConfig;
|
|
1606
|
+
$unknown?: never;
|
|
1607
|
+
}
|
|
1608
|
+
interface $UnknownMember {
|
|
1609
|
+
aiConfig?: never;
|
|
1610
|
+
$unknown: [string, any];
|
|
1611
|
+
}
|
|
1612
|
+
interface Visitor<T> {
|
|
1613
|
+
aiConfig: (value: AIConfig) => T;
|
|
1614
|
+
_: (name: string, value: any) => T;
|
|
1615
|
+
}
|
|
1616
|
+
}
|
|
1617
|
+
export interface RegisterCapabilityResponse {
|
|
1618
|
+
capabilityName?: string | undefined;
|
|
1619
|
+
applicationId?: string | undefined;
|
|
1620
|
+
status?: CapabilityStatus | undefined;
|
|
1621
|
+
capabilityConfig?: CapabilityBaseResponseConfig | undefined;
|
|
1622
|
+
}
|
|
1538
1623
|
export interface RejectInboundConnectionRequest {
|
|
1539
1624
|
ConnectionId: string | undefined;
|
|
1540
1625
|
}
|
|
@@ -1589,76 +1674,3 @@ export interface UpdateDataSourceRequest {
|
|
|
1589
1674
|
Description?: string | undefined;
|
|
1590
1675
|
Status?: DataSourceStatus | undefined;
|
|
1591
1676
|
}
|
|
1592
|
-
export interface UpdateDataSourceResponse {
|
|
1593
|
-
Message?: string | undefined;
|
|
1594
|
-
}
|
|
1595
|
-
export interface UpdateDirectQueryDataSourceRequest {
|
|
1596
|
-
DataSourceName: string | undefined;
|
|
1597
|
-
DataSourceType: DirectQueryDataSourceType | undefined;
|
|
1598
|
-
Description?: string | undefined;
|
|
1599
|
-
OpenSearchArns?: string[] | undefined;
|
|
1600
|
-
DataSourceAccessPolicy?: string | undefined;
|
|
1601
|
-
}
|
|
1602
|
-
export interface UpdateDirectQueryDataSourceResponse {
|
|
1603
|
-
DataSourceArn?: string | undefined;
|
|
1604
|
-
}
|
|
1605
|
-
export interface UpdateDomainConfigRequest {
|
|
1606
|
-
DomainName: string | undefined;
|
|
1607
|
-
ClusterConfig?: ClusterConfig | undefined;
|
|
1608
|
-
EBSOptions?: EBSOptions | undefined;
|
|
1609
|
-
SnapshotOptions?: SnapshotOptions | undefined;
|
|
1610
|
-
VPCOptions?: VPCOptions | undefined;
|
|
1611
|
-
CognitoOptions?: CognitoOptions | undefined;
|
|
1612
|
-
AdvancedOptions?: Record<string, string> | undefined;
|
|
1613
|
-
AccessPolicies?: string | undefined;
|
|
1614
|
-
IPAddressType?: IPAddressType | undefined;
|
|
1615
|
-
LogPublishingOptions?:
|
|
1616
|
-
| Partial<Record<LogType, LogPublishingOption>>
|
|
1617
|
-
| undefined;
|
|
1618
|
-
EncryptionAtRestOptions?: EncryptionAtRestOptions | undefined;
|
|
1619
|
-
DomainEndpointOptions?: DomainEndpointOptions | undefined;
|
|
1620
|
-
NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions | undefined;
|
|
1621
|
-
AdvancedSecurityOptions?: AdvancedSecurityOptionsInput | undefined;
|
|
1622
|
-
IdentityCenterOptions?: IdentityCenterOptionsInput | undefined;
|
|
1623
|
-
AutoTuneOptions?: AutoTuneOptions | undefined;
|
|
1624
|
-
DryRun?: boolean | undefined;
|
|
1625
|
-
DryRunMode?: DryRunMode | undefined;
|
|
1626
|
-
OffPeakWindowOptions?: OffPeakWindowOptions | undefined;
|
|
1627
|
-
SoftwareUpdateOptions?: SoftwareUpdateOptions | undefined;
|
|
1628
|
-
AIMLOptions?: AIMLOptionsInput | undefined;
|
|
1629
|
-
DeploymentStrategyOptions?: DeploymentStrategyOptions | undefined;
|
|
1630
|
-
}
|
|
1631
|
-
export interface UpdateDomainConfigResponse {
|
|
1632
|
-
DomainConfig: DomainConfig | undefined;
|
|
1633
|
-
DryRunResults?: DryRunResults | undefined;
|
|
1634
|
-
DryRunProgressStatus?: DryRunProgressStatus | undefined;
|
|
1635
|
-
}
|
|
1636
|
-
export interface UpdateIndexRequest {
|
|
1637
|
-
DomainName: string | undefined;
|
|
1638
|
-
IndexName: string | undefined;
|
|
1639
|
-
IndexSchema: __DocumentType | undefined;
|
|
1640
|
-
}
|
|
1641
|
-
export interface UpdateIndexResponse {
|
|
1642
|
-
Status: IndexStatus | undefined;
|
|
1643
|
-
}
|
|
1644
|
-
export interface UpdatePackageRequest {
|
|
1645
|
-
PackageID: string | undefined;
|
|
1646
|
-
PackageSource: PackageSource | undefined;
|
|
1647
|
-
PackageDescription?: string | undefined;
|
|
1648
|
-
CommitMessage?: string | undefined;
|
|
1649
|
-
PackageConfiguration?: PackageConfiguration | undefined;
|
|
1650
|
-
PackageEncryptionOptions?: PackageEncryptionOptions | undefined;
|
|
1651
|
-
}
|
|
1652
|
-
export interface UpdatePackageResponse {
|
|
1653
|
-
PackageDetails?: PackageDetails | undefined;
|
|
1654
|
-
}
|
|
1655
|
-
export interface UpdatePackageScopeRequest {
|
|
1656
|
-
PackageID: string | undefined;
|
|
1657
|
-
Operation: PackageScopeOperationEnum | undefined;
|
|
1658
|
-
PackageUserList: string[] | undefined;
|
|
1659
|
-
}
|
|
1660
|
-
export interface UpdatePackageScopeResponse {
|
|
1661
|
-
PackageID?: string | undefined;
|
|
1662
|
-
Operation?: PackageScopeOperationEnum | undefined;
|
|
1663
|
-
PackageUserList?: string[] | undefined;
|
|
1664
|
-
}
|
|
@@ -1,10 +1,115 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
2
2
|
import {
|
|
3
|
+
ActionType,
|
|
4
|
+
DryRunMode,
|
|
5
|
+
IndexStatus,
|
|
6
|
+
IPAddressType,
|
|
7
|
+
LogType,
|
|
8
|
+
PackageScopeOperationEnum,
|
|
9
|
+
ScheduleAt,
|
|
10
|
+
} from "./enums";
|
|
11
|
+
import {
|
|
12
|
+
AdvancedSecurityOptionsInput,
|
|
13
|
+
AIMLOptionsInput,
|
|
14
|
+
AutoTuneOptions,
|
|
3
15
|
ChangeProgressDetails,
|
|
16
|
+
ClusterConfig,
|
|
17
|
+
CognitoOptions,
|
|
18
|
+
DeploymentStrategyOptions,
|
|
19
|
+
DirectQueryDataSourceType,
|
|
20
|
+
DomainConfig,
|
|
21
|
+
DomainEndpointOptions,
|
|
22
|
+
DryRunProgressStatus,
|
|
23
|
+
DryRunResults,
|
|
24
|
+
EBSOptions,
|
|
25
|
+
EncryptionAtRestOptions,
|
|
26
|
+
IdentityCenterOptionsInput,
|
|
27
|
+
LogPublishingOption,
|
|
28
|
+
NodeToNodeEncryptionOptions,
|
|
29
|
+
OffPeakWindowOptions,
|
|
30
|
+
PackageConfiguration,
|
|
31
|
+
PackageDetails,
|
|
32
|
+
PackageEncryptionOptions,
|
|
33
|
+
PackageSource,
|
|
4
34
|
ScheduledAction,
|
|
35
|
+
SnapshotOptions,
|
|
36
|
+
SoftwareUpdateOptions,
|
|
5
37
|
VpcEndpoint,
|
|
6
38
|
VPCOptions,
|
|
7
39
|
} from "./models_0";
|
|
40
|
+
export interface UpdateDataSourceResponse {
|
|
41
|
+
Message?: string | undefined;
|
|
42
|
+
}
|
|
43
|
+
export interface UpdateDirectQueryDataSourceRequest {
|
|
44
|
+
DataSourceName: string | undefined;
|
|
45
|
+
DataSourceType: DirectQueryDataSourceType | undefined;
|
|
46
|
+
Description?: string | undefined;
|
|
47
|
+
OpenSearchArns?: string[] | undefined;
|
|
48
|
+
DataSourceAccessPolicy?: string | undefined;
|
|
49
|
+
}
|
|
50
|
+
export interface UpdateDirectQueryDataSourceResponse {
|
|
51
|
+
DataSourceArn?: string | undefined;
|
|
52
|
+
}
|
|
53
|
+
export interface UpdateDomainConfigRequest {
|
|
54
|
+
DomainName: string | undefined;
|
|
55
|
+
ClusterConfig?: ClusterConfig | undefined;
|
|
56
|
+
EBSOptions?: EBSOptions | undefined;
|
|
57
|
+
SnapshotOptions?: SnapshotOptions | undefined;
|
|
58
|
+
VPCOptions?: VPCOptions | undefined;
|
|
59
|
+
CognitoOptions?: CognitoOptions | undefined;
|
|
60
|
+
AdvancedOptions?: Record<string, string> | undefined;
|
|
61
|
+
AccessPolicies?: string | undefined;
|
|
62
|
+
IPAddressType?: IPAddressType | undefined;
|
|
63
|
+
LogPublishingOptions?:
|
|
64
|
+
| Partial<Record<LogType, LogPublishingOption>>
|
|
65
|
+
| undefined;
|
|
66
|
+
EncryptionAtRestOptions?: EncryptionAtRestOptions | undefined;
|
|
67
|
+
DomainEndpointOptions?: DomainEndpointOptions | undefined;
|
|
68
|
+
NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions | undefined;
|
|
69
|
+
AdvancedSecurityOptions?: AdvancedSecurityOptionsInput | undefined;
|
|
70
|
+
IdentityCenterOptions?: IdentityCenterOptionsInput | undefined;
|
|
71
|
+
AutoTuneOptions?: AutoTuneOptions | undefined;
|
|
72
|
+
DryRun?: boolean | undefined;
|
|
73
|
+
DryRunMode?: DryRunMode | undefined;
|
|
74
|
+
OffPeakWindowOptions?: OffPeakWindowOptions | undefined;
|
|
75
|
+
SoftwareUpdateOptions?: SoftwareUpdateOptions | undefined;
|
|
76
|
+
AIMLOptions?: AIMLOptionsInput | undefined;
|
|
77
|
+
DeploymentStrategyOptions?: DeploymentStrategyOptions | undefined;
|
|
78
|
+
}
|
|
79
|
+
export interface UpdateDomainConfigResponse {
|
|
80
|
+
DomainConfig: DomainConfig | undefined;
|
|
81
|
+
DryRunResults?: DryRunResults | undefined;
|
|
82
|
+
DryRunProgressStatus?: DryRunProgressStatus | undefined;
|
|
83
|
+
}
|
|
84
|
+
export interface UpdateIndexRequest {
|
|
85
|
+
DomainName: string | undefined;
|
|
86
|
+
IndexName: string | undefined;
|
|
87
|
+
IndexSchema: __DocumentType | undefined;
|
|
88
|
+
}
|
|
89
|
+
export interface UpdateIndexResponse {
|
|
90
|
+
Status: IndexStatus | undefined;
|
|
91
|
+
}
|
|
92
|
+
export interface UpdatePackageRequest {
|
|
93
|
+
PackageID: string | undefined;
|
|
94
|
+
PackageSource: PackageSource | undefined;
|
|
95
|
+
PackageDescription?: string | undefined;
|
|
96
|
+
CommitMessage?: string | undefined;
|
|
97
|
+
PackageConfiguration?: PackageConfiguration | undefined;
|
|
98
|
+
PackageEncryptionOptions?: PackageEncryptionOptions | undefined;
|
|
99
|
+
}
|
|
100
|
+
export interface UpdatePackageResponse {
|
|
101
|
+
PackageDetails?: PackageDetails | undefined;
|
|
102
|
+
}
|
|
103
|
+
export interface UpdatePackageScopeRequest {
|
|
104
|
+
PackageID: string | undefined;
|
|
105
|
+
Operation: PackageScopeOperationEnum | undefined;
|
|
106
|
+
PackageUserList: string[] | undefined;
|
|
107
|
+
}
|
|
108
|
+
export interface UpdatePackageScopeResponse {
|
|
109
|
+
PackageID?: string | undefined;
|
|
110
|
+
Operation?: PackageScopeOperationEnum | undefined;
|
|
111
|
+
PackageUserList?: string[] | undefined;
|
|
112
|
+
}
|
|
8
113
|
export interface UpdateScheduledActionRequest {
|
|
9
114
|
DomainName: string | undefined;
|
|
10
115
|
ActionID: string | undefined;
|
|
@@ -17,6 +17,7 @@ export declare var InvalidTypeException$: StaticErrorSchema;
|
|
|
17
17
|
export declare var LimitExceededException$: StaticErrorSchema;
|
|
18
18
|
export declare var ResourceAlreadyExistsException$: StaticErrorSchema;
|
|
19
19
|
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
20
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
20
21
|
export declare var SlotNotAvailableException$: StaticErrorSchema;
|
|
21
22
|
export declare var ThrottlingException$: StaticErrorSchema;
|
|
22
23
|
export declare var ValidationException$: StaticErrorSchema;
|
|
@@ -34,6 +35,7 @@ export declare var AdvancedOptionsStatus$: StaticStructureSchema;
|
|
|
34
35
|
export declare var AdvancedSecurityOptions$: StaticStructureSchema;
|
|
35
36
|
export declare var AdvancedSecurityOptionsInput$: StaticStructureSchema;
|
|
36
37
|
export declare var AdvancedSecurityOptionsStatus$: StaticStructureSchema;
|
|
38
|
+
export declare var AIConfig$: StaticStructureSchema;
|
|
37
39
|
export declare var AIMLOptionsInput$: StaticStructureSchema;
|
|
38
40
|
export declare var AIMLOptionsOutput$: StaticStructureSchema;
|
|
39
41
|
export declare var AIMLOptionsStatus$: StaticStructureSchema;
|
|
@@ -61,6 +63,7 @@ export declare var CancelDomainConfigChangeResponse$: StaticStructureSchema;
|
|
|
61
63
|
export declare var CancelledChangeProperty$: StaticStructureSchema;
|
|
62
64
|
export declare var CancelServiceSoftwareUpdateRequest$: StaticStructureSchema;
|
|
63
65
|
export declare var CancelServiceSoftwareUpdateResponse$: StaticStructureSchema;
|
|
66
|
+
export declare var CapabilityFailure$: StaticStructureSchema;
|
|
64
67
|
export declare var ChangeProgressDetails$: StaticStructureSchema;
|
|
65
68
|
export declare var ChangeProgressStage$: StaticStructureSchema;
|
|
66
69
|
export declare var ChangeProgressStatusDetails$: StaticStructureSchema;
|
|
@@ -106,6 +109,8 @@ export declare var DeleteVpcEndpointRequest$: StaticStructureSchema;
|
|
|
106
109
|
export declare var DeleteVpcEndpointResponse$: StaticStructureSchema;
|
|
107
110
|
export declare var DeploymentStrategyOptions$: StaticStructureSchema;
|
|
108
111
|
export declare var DeploymentStrategyOptionsStatus$: StaticStructureSchema;
|
|
112
|
+
export declare var DeregisterCapabilityRequest$: StaticStructureSchema;
|
|
113
|
+
export declare var DeregisterCapabilityResponse$: StaticStructureSchema;
|
|
109
114
|
export declare var DescribeDomainAutoTunesRequest$: StaticStructureSchema;
|
|
110
115
|
export declare var DescribeDomainAutoTunesResponse$: StaticStructureSchema;
|
|
111
116
|
export declare var DescribeDomainChangeProgressRequest$: StaticStructureSchema;
|
|
@@ -165,6 +170,8 @@ export declare var ErrorDetails$: StaticStructureSchema;
|
|
|
165
170
|
export declare var Filter$: StaticStructureSchema;
|
|
166
171
|
export declare var GetApplicationRequest$: StaticStructureSchema;
|
|
167
172
|
export declare var GetApplicationResponse$: StaticStructureSchema;
|
|
173
|
+
export declare var GetCapabilityRequest$: StaticStructureSchema;
|
|
174
|
+
export declare var GetCapabilityResponse$: StaticStructureSchema;
|
|
168
175
|
export declare var GetCompatibleVersionsRequest$: StaticStructureSchema;
|
|
169
176
|
export declare var GetCompatibleVersionsResponse$: StaticStructureSchema;
|
|
170
177
|
export declare var GetDataSourceRequest$: StaticStructureSchema;
|
|
@@ -265,6 +272,8 @@ export declare var PurchaseReservedInstanceOfferingResponse$: StaticStructureSch
|
|
|
265
272
|
export declare var PutDefaultApplicationSettingRequest$: StaticStructureSchema;
|
|
266
273
|
export declare var PutDefaultApplicationSettingResponse$: StaticStructureSchema;
|
|
267
274
|
export declare var RecurringCharge$: StaticStructureSchema;
|
|
275
|
+
export declare var RegisterCapabilityRequest$: StaticStructureSchema;
|
|
276
|
+
export declare var RegisterCapabilityResponse$: StaticStructureSchema;
|
|
268
277
|
export declare var RejectInboundConnectionRequest$: StaticStructureSchema;
|
|
269
278
|
export declare var RejectInboundConnectionResponse$: StaticStructureSchema;
|
|
270
279
|
export declare var RemoveTagsRequest$: StaticStructureSchema;
|
|
@@ -325,6 +334,9 @@ export declare var VpcEndpointSummary$: StaticStructureSchema;
|
|
|
325
334
|
export declare var VPCOptions$: StaticStructureSchema;
|
|
326
335
|
export declare var WindowStartTime$: StaticStructureSchema;
|
|
327
336
|
export declare var ZoneAwarenessConfig$: StaticStructureSchema;
|
|
337
|
+
export declare var CapabilityBaseRequestConfig$: StaticUnionSchema;
|
|
338
|
+
export declare var CapabilityBaseResponseConfig$: StaticUnionSchema;
|
|
339
|
+
export declare var CapabilityExtendedResponseConfig$: StaticUnionSchema;
|
|
328
340
|
export declare var DataSourceType$: StaticUnionSchema;
|
|
329
341
|
export declare var DirectQueryDataSourceType$: StaticUnionSchema;
|
|
330
342
|
export declare var AcceptInboundConnection$: StaticOperationSchema;
|
|
@@ -351,6 +363,7 @@ export declare var DeleteIndex$: StaticOperationSchema;
|
|
|
351
363
|
export declare var DeleteOutboundConnection$: StaticOperationSchema;
|
|
352
364
|
export declare var DeletePackage$: StaticOperationSchema;
|
|
353
365
|
export declare var DeleteVpcEndpoint$: StaticOperationSchema;
|
|
366
|
+
export declare var DeregisterCapability$: StaticOperationSchema;
|
|
354
367
|
export declare var DescribeDomain$: StaticOperationSchema;
|
|
355
368
|
export declare var DescribeDomainAutoTunes$: StaticOperationSchema;
|
|
356
369
|
export declare var DescribeDomainChangeProgress$: StaticOperationSchema;
|
|
@@ -370,6 +383,7 @@ export declare var DescribeVpcEndpoints$: StaticOperationSchema;
|
|
|
370
383
|
export declare var DissociatePackage$: StaticOperationSchema;
|
|
371
384
|
export declare var DissociatePackages$: StaticOperationSchema;
|
|
372
385
|
export declare var GetApplication$: StaticOperationSchema;
|
|
386
|
+
export declare var GetCapability$: StaticOperationSchema;
|
|
373
387
|
export declare var GetCompatibleVersions$: StaticOperationSchema;
|
|
374
388
|
export declare var GetDataSource$: StaticOperationSchema;
|
|
375
389
|
export declare var GetDefaultApplicationSetting$: StaticOperationSchema;
|
|
@@ -396,6 +410,7 @@ export declare var ListVpcEndpoints$: StaticOperationSchema;
|
|
|
396
410
|
export declare var ListVpcEndpointsForDomain$: StaticOperationSchema;
|
|
397
411
|
export declare var PurchaseReservedInstanceOffering$: StaticOperationSchema;
|
|
398
412
|
export declare var PutDefaultApplicationSetting$: StaticOperationSchema;
|
|
413
|
+
export declare var RegisterCapability$: StaticOperationSchema;
|
|
399
414
|
export declare var RejectInboundConnection$: StaticOperationSchema;
|
|
400
415
|
export declare var RemoveTags$: StaticOperationSchema;
|
|
401
416
|
export declare var RevokeVpcEndpointAccess$: StaticOperationSchema;
|