@aws-sdk/client-opensearch 3.682.0 → 3.683.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 +47 -7
- package/dist-cjs/index.js +344 -29
- package/dist-es/OpenSearch.js +10 -0
- package/dist-es/commands/CreateApplicationCommand.js +22 -0
- package/dist-es/commands/DeleteApplicationCommand.js +22 -0
- package/dist-es/commands/GetApplicationCommand.js +22 -0
- package/dist-es/commands/ListApplicationsCommand.js +22 -0
- package/dist-es/commands/UpdateApplicationCommand.js +22 -0
- package/dist-es/commands/UpdateDomainConfigCommand.js +1 -1
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +23 -28
- package/dist-es/models/models_1.js +30 -1
- package/dist-es/pagination/ListApplicationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +191 -3
- package/dist-types/OpenSearch.d.ts +36 -0
- package/dist-types/OpenSearchClient.d.ts +7 -2
- package/dist-types/commands/AuthorizeVpcEndpointAccessCommand.d.ts +2 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +140 -0
- package/dist-types/commands/CreateDomainCommand.d.ts +14 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +90 -0
- package/dist-types/commands/DeleteDomainCommand.d.ts +8 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +8 -0
- package/dist-types/commands/DescribeDomainConfigCommand.d.ts +11 -0
- package/dist-types/commands/DescribeDomainsCommand.d.ts +8 -0
- package/dist-types/commands/DescribeDryRunProgressCommand.d.ts +8 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +113 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +104 -0
- package/dist-types/commands/RejectInboundConnectionCommand.d.ts +2 -1
- package/dist-types/commands/RemoveTagsCommand.d.ts +1 -1
- package/dist-types/commands/RevokeVpcEndpointAccessCommand.d.ts +3 -2
- package/dist-types/commands/StartDomainMaintenanceCommand.d.ts +1 -1
- package/dist-types/commands/StartServiceSoftwareUpdateCommand.d.ts +1 -1
- package/dist-types/commands/UpdateApplicationCommand.d.ts +126 -0
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainConfigCommand.d.ts +18 -1
- package/dist-types/commands/UpdatePackageCommand.d.ts +1 -1
- package/dist-types/commands/UpdateScheduledActionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +538 -565
- package/dist-types/models/models_1.d.ts +603 -1
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- 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/CreateApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/RejectInboundConnectionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeVpcEndpointAccessCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartDomainMaintenanceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartServiceSoftwareUpdateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePackageCommand.d.ts +1 -1
- 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/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +129 -114
- package/dist-types/ts3.4/models/models_1.d.ts +169 -1
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +4 -2
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UpdateApplicationRequest,
|
|
5
|
+
UpdateApplicationResponse,
|
|
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 UpdateApplicationCommandInput
|
|
15
|
+
extends UpdateApplicationRequest {}
|
|
16
|
+
export interface UpdateApplicationCommandOutput
|
|
17
|
+
extends UpdateApplicationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateApplicationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateApplicationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateApplicationCommandInput,
|
|
24
|
+
UpdateApplicationCommandOutput,
|
|
25
|
+
OpenSearchClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateApplicationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateApplicationCommandInput,
|
|
33
|
+
UpdateApplicationCommandOutput,
|
|
34
|
+
OpenSearchClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateApplicationCommand extends UpdateApplicationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateApplicationRequest;
|
|
44
|
+
output: UpdateApplicationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateApplicationCommandInput;
|
|
48
|
+
output: UpdateApplicationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
UpdateScheduledActionRequest,
|
|
5
5
|
UpdateScheduledActionResponse,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_1";
|
|
7
7
|
import {
|
|
8
8
|
OpenSearchClientResolvedConfig,
|
|
9
9
|
ServiceInputTypes,
|
|
@@ -5,10 +5,12 @@ export * from "./AssociatePackageCommand";
|
|
|
5
5
|
export * from "./AuthorizeVpcEndpointAccessCommand";
|
|
6
6
|
export * from "./CancelDomainConfigChangeCommand";
|
|
7
7
|
export * from "./CancelServiceSoftwareUpdateCommand";
|
|
8
|
+
export * from "./CreateApplicationCommand";
|
|
8
9
|
export * from "./CreateDomainCommand";
|
|
9
10
|
export * from "./CreateOutboundConnectionCommand";
|
|
10
11
|
export * from "./CreatePackageCommand";
|
|
11
12
|
export * from "./CreateVpcEndpointCommand";
|
|
13
|
+
export * from "./DeleteApplicationCommand";
|
|
12
14
|
export * from "./DeleteDataSourceCommand";
|
|
13
15
|
export * from "./DeleteDomainCommand";
|
|
14
16
|
export * from "./DeleteInboundConnectionCommand";
|
|
@@ -31,12 +33,14 @@ export * from "./DescribeReservedInstanceOfferingsCommand";
|
|
|
31
33
|
export * from "./DescribeReservedInstancesCommand";
|
|
32
34
|
export * from "./DescribeVpcEndpointsCommand";
|
|
33
35
|
export * from "./DissociatePackageCommand";
|
|
36
|
+
export * from "./GetApplicationCommand";
|
|
34
37
|
export * from "./GetCompatibleVersionsCommand";
|
|
35
38
|
export * from "./GetDataSourceCommand";
|
|
36
39
|
export * from "./GetDomainMaintenanceStatusCommand";
|
|
37
40
|
export * from "./GetPackageVersionHistoryCommand";
|
|
38
41
|
export * from "./GetUpgradeHistoryCommand";
|
|
39
42
|
export * from "./GetUpgradeStatusCommand";
|
|
43
|
+
export * from "./ListApplicationsCommand";
|
|
40
44
|
export * from "./ListDataSourcesCommand";
|
|
41
45
|
export * from "./ListDomainMaintenancesCommand";
|
|
42
46
|
export * from "./ListDomainNamesCommand";
|
|
@@ -55,6 +59,7 @@ export * from "./RemoveTagsCommand";
|
|
|
55
59
|
export * from "./RevokeVpcEndpointAccessCommand";
|
|
56
60
|
export * from "./StartDomainMaintenanceCommand";
|
|
57
61
|
export * from "./StartServiceSoftwareUpdateCommand";
|
|
62
|
+
export * from "./UpdateApplicationCommand";
|
|
58
63
|
export * from "./UpdateDataSourceCommand";
|
|
59
64
|
export * from "./UpdateDomainConfigCommand";
|
|
60
65
|
export * from "./UpdatePackageCommand";
|
|
@@ -312,9 +312,15 @@ export declare class ConflictException extends __BaseException {
|
|
|
312
312
|
readonly $fault: "client";
|
|
313
313
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
314
314
|
}
|
|
315
|
+
export declare const AWSServicePrincipal: {
|
|
316
|
+
readonly application_opensearchservice_amazonaws_com: "application.opensearchservice.amazonaws.com";
|
|
317
|
+
};
|
|
318
|
+
export type AWSServicePrincipal =
|
|
319
|
+
(typeof AWSServicePrincipal)[keyof typeof AWSServicePrincipal];
|
|
315
320
|
export interface AuthorizeVpcEndpointAccessRequest {
|
|
316
321
|
DomainName: string | undefined;
|
|
317
|
-
Account
|
|
322
|
+
Account?: string;
|
|
323
|
+
Service?: AWSServicePrincipal;
|
|
318
324
|
}
|
|
319
325
|
export declare const PrincipalType: {
|
|
320
326
|
readonly AWS_ACCOUNT: "AWS_ACCOUNT";
|
|
@@ -367,6 +373,48 @@ export interface ServiceSoftwareOptions {
|
|
|
367
373
|
export interface CancelServiceSoftwareUpdateResponse {
|
|
368
374
|
ServiceSoftwareOptions?: ServiceSoftwareOptions;
|
|
369
375
|
}
|
|
376
|
+
export declare const AppConfigType: {
|
|
377
|
+
readonly OpensearchDashboardAdminGroups: "opensearchDashboards.dashboardAdmin.groups";
|
|
378
|
+
readonly OpensearchDashboardAdminUsers: "opensearchDashboards.dashboardAdmin.users";
|
|
379
|
+
};
|
|
380
|
+
export type AppConfigType = (typeof AppConfigType)[keyof typeof AppConfigType];
|
|
381
|
+
export interface AppConfig {
|
|
382
|
+
key?: AppConfigType;
|
|
383
|
+
value?: string;
|
|
384
|
+
}
|
|
385
|
+
export interface DataSource {
|
|
386
|
+
dataSourceArn?: string;
|
|
387
|
+
dataSourceDescription?: string;
|
|
388
|
+
}
|
|
389
|
+
export interface IamIdentityCenterOptionsInput {
|
|
390
|
+
enabled?: boolean;
|
|
391
|
+
iamIdentityCenterInstanceArn?: string;
|
|
392
|
+
iamRoleForIdentityCenterApplicationArn?: string;
|
|
393
|
+
}
|
|
394
|
+
export interface CreateApplicationRequest {
|
|
395
|
+
clientToken?: string;
|
|
396
|
+
name: string | undefined;
|
|
397
|
+
dataSources?: DataSource[];
|
|
398
|
+
iamIdentityCenterOptions?: IamIdentityCenterOptionsInput;
|
|
399
|
+
appConfigs?: AppConfig[];
|
|
400
|
+
tagList?: Tag[];
|
|
401
|
+
}
|
|
402
|
+
export interface IamIdentityCenterOptions {
|
|
403
|
+
enabled?: boolean;
|
|
404
|
+
iamIdentityCenterInstanceArn?: string;
|
|
405
|
+
iamRoleForIdentityCenterApplicationArn?: string;
|
|
406
|
+
iamIdentityCenterApplicationArn?: string;
|
|
407
|
+
}
|
|
408
|
+
export interface CreateApplicationResponse {
|
|
409
|
+
id?: string;
|
|
410
|
+
name?: string;
|
|
411
|
+
arn?: string;
|
|
412
|
+
dataSources?: DataSource[];
|
|
413
|
+
iamIdentityCenterOptions?: IamIdentityCenterOptions;
|
|
414
|
+
appConfigs?: AppConfig[];
|
|
415
|
+
tagList?: Tag[];
|
|
416
|
+
createdAt?: Date;
|
|
417
|
+
}
|
|
370
418
|
export declare const AutoTuneDesiredState: {
|
|
371
419
|
readonly DISABLED: "DISABLED";
|
|
372
420
|
readonly ENABLED: "ENABLED";
|
|
@@ -578,6 +626,25 @@ export interface EncryptionAtRestOptions {
|
|
|
578
626
|
Enabled?: boolean;
|
|
579
627
|
KmsKeyId?: string;
|
|
580
628
|
}
|
|
629
|
+
export declare const RolesKeyIdCOption: {
|
|
630
|
+
readonly GroupId: "GroupId";
|
|
631
|
+
readonly GroupName: "GroupName";
|
|
632
|
+
};
|
|
633
|
+
export type RolesKeyIdCOption =
|
|
634
|
+
(typeof RolesKeyIdCOption)[keyof typeof RolesKeyIdCOption];
|
|
635
|
+
export declare const SubjectKeyIdCOption: {
|
|
636
|
+
readonly Email: "Email";
|
|
637
|
+
readonly UserId: "UserId";
|
|
638
|
+
readonly UserName: "UserName";
|
|
639
|
+
};
|
|
640
|
+
export type SubjectKeyIdCOption =
|
|
641
|
+
(typeof SubjectKeyIdCOption)[keyof typeof SubjectKeyIdCOption];
|
|
642
|
+
export interface IdentityCenterOptionsInput {
|
|
643
|
+
EnabledAPIAccess?: boolean;
|
|
644
|
+
IdentityCenterInstanceARN?: string;
|
|
645
|
+
SubjectKey?: SubjectKeyIdCOption;
|
|
646
|
+
RolesKey?: RolesKeyIdCOption;
|
|
647
|
+
}
|
|
581
648
|
export declare const IPAddressType: {
|
|
582
649
|
readonly DUALSTACK: "dualstack";
|
|
583
650
|
readonly IPV4: "ipv4";
|
|
@@ -634,6 +701,7 @@ export interface CreateDomainRequest {
|
|
|
634
701
|
LogPublishingOptions?: Partial<Record<LogType, LogPublishingOption>>;
|
|
635
702
|
DomainEndpointOptions?: DomainEndpointOptions;
|
|
636
703
|
AdvancedSecurityOptions?: AdvancedSecurityOptionsInput;
|
|
704
|
+
IdentityCenterOptions?: IdentityCenterOptionsInput;
|
|
637
705
|
TagList?: Tag[];
|
|
638
706
|
AutoTuneOptions?: AutoTuneOptionsInput;
|
|
639
707
|
OffPeakWindowOptions?: OffPeakWindowOptions;
|
|
@@ -693,6 +761,14 @@ export declare const DomainProcessingStatusType: {
|
|
|
693
761
|
};
|
|
694
762
|
export type DomainProcessingStatusType =
|
|
695
763
|
(typeof DomainProcessingStatusType)[keyof typeof DomainProcessingStatusType];
|
|
764
|
+
export interface IdentityCenterOptions {
|
|
765
|
+
EnabledAPIAccess?: boolean;
|
|
766
|
+
IdentityCenterInstanceARN?: string;
|
|
767
|
+
SubjectKey?: SubjectKeyIdCOption;
|
|
768
|
+
RolesKey?: RolesKeyIdCOption;
|
|
769
|
+
IdentityCenterApplicationARN?: string;
|
|
770
|
+
IdentityStoreId?: string;
|
|
771
|
+
}
|
|
696
772
|
export declare const PropertyValueType: {
|
|
697
773
|
readonly PLAIN_TEXT: "PLAIN_TEXT";
|
|
698
774
|
readonly STRINGIFIED_JSON: "STRINGIFIED_JSON";
|
|
@@ -738,6 +814,7 @@ export interface DomainStatus {
|
|
|
738
814
|
ServiceSoftwareOptions?: ServiceSoftwareOptions;
|
|
739
815
|
DomainEndpointOptions?: DomainEndpointOptions;
|
|
740
816
|
AdvancedSecurityOptions?: AdvancedSecurityOptions;
|
|
817
|
+
IdentityCenterOptions?: IdentityCenterOptions;
|
|
741
818
|
AutoTuneOptions?: AutoTuneOptionsOutput;
|
|
742
819
|
ChangeProgressDetails?: ChangeProgressDetails;
|
|
743
820
|
OffPeakWindowOptions?: OffPeakWindowOptions;
|
|
@@ -881,6 +958,10 @@ export interface VpcEndpoint {
|
|
|
881
958
|
export interface CreateVpcEndpointResponse {
|
|
882
959
|
VpcEndpoint: VpcEndpoint | undefined;
|
|
883
960
|
}
|
|
961
|
+
export interface DeleteApplicationRequest {
|
|
962
|
+
id: string | undefined;
|
|
963
|
+
}
|
|
964
|
+
export interface DeleteApplicationResponse {}
|
|
884
965
|
export interface DeleteDataSourceRequest {
|
|
885
966
|
DomainName: string | undefined;
|
|
886
967
|
Name: string | undefined;
|
|
@@ -1062,6 +1143,10 @@ export interface VersionStatus {
|
|
|
1062
1143
|
Options: string | undefined;
|
|
1063
1144
|
Status: OptionStatus | undefined;
|
|
1064
1145
|
}
|
|
1146
|
+
export interface IdentityCenterOptionsStatus {
|
|
1147
|
+
Options: IdentityCenterOptions | undefined;
|
|
1148
|
+
Status: OptionStatus | undefined;
|
|
1149
|
+
}
|
|
1065
1150
|
export interface IPAddressTypeStatus {
|
|
1066
1151
|
Options: IPAddressType | undefined;
|
|
1067
1152
|
Status: OptionStatus | undefined;
|
|
@@ -1105,6 +1190,7 @@ export interface DomainConfig {
|
|
|
1105
1190
|
LogPublishingOptions?: LogPublishingOptionsStatus;
|
|
1106
1191
|
DomainEndpointOptions?: DomainEndpointOptionsStatus;
|
|
1107
1192
|
AdvancedSecurityOptions?: AdvancedSecurityOptionsStatus;
|
|
1193
|
+
IdentityCenterOptions?: IdentityCenterOptionsStatus;
|
|
1108
1194
|
AutoTuneOptions?: AutoTuneOptionsStatus;
|
|
1109
1195
|
ChangeProgressDetails?: ChangeProgressDetails;
|
|
1110
1196
|
OffPeakWindowOptions?: OffPeakWindowOptionsStatus;
|
|
@@ -1391,6 +1477,30 @@ export interface DissociatePackageRequest {
|
|
|
1391
1477
|
export interface DissociatePackageResponse {
|
|
1392
1478
|
DomainPackageDetails?: DomainPackageDetails;
|
|
1393
1479
|
}
|
|
1480
|
+
export interface GetApplicationRequest {
|
|
1481
|
+
id: string | undefined;
|
|
1482
|
+
}
|
|
1483
|
+
export declare const ApplicationStatus: {
|
|
1484
|
+
readonly ACTIVE: "ACTIVE";
|
|
1485
|
+
readonly CREATING: "CREATING";
|
|
1486
|
+
readonly DELETING: "DELETING";
|
|
1487
|
+
readonly FAILED: "FAILED";
|
|
1488
|
+
readonly UPDATING: "UPDATING";
|
|
1489
|
+
};
|
|
1490
|
+
export type ApplicationStatus =
|
|
1491
|
+
(typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
1492
|
+
export interface GetApplicationResponse {
|
|
1493
|
+
id?: string;
|
|
1494
|
+
arn?: string;
|
|
1495
|
+
name?: string;
|
|
1496
|
+
endpoint?: string;
|
|
1497
|
+
status?: ApplicationStatus;
|
|
1498
|
+
iamIdentityCenterOptions?: IamIdentityCenterOptions;
|
|
1499
|
+
dataSources?: DataSource[];
|
|
1500
|
+
appConfigs?: AppConfig[];
|
|
1501
|
+
createdAt?: Date;
|
|
1502
|
+
lastUpdatedAt?: Date;
|
|
1503
|
+
}
|
|
1394
1504
|
export interface GetCompatibleVersionsRequest {
|
|
1395
1505
|
DomainName?: string;
|
|
1396
1506
|
}
|
|
@@ -1503,6 +1613,24 @@ export interface GetUpgradeStatusResponse {
|
|
|
1503
1613
|
StepStatus?: UpgradeStatus;
|
|
1504
1614
|
UpgradeName?: string;
|
|
1505
1615
|
}
|
|
1616
|
+
export interface ListApplicationsRequest {
|
|
1617
|
+
nextToken?: string;
|
|
1618
|
+
statuses?: ApplicationStatus[];
|
|
1619
|
+
maxResults?: number;
|
|
1620
|
+
}
|
|
1621
|
+
export interface ApplicationSummary {
|
|
1622
|
+
id?: string;
|
|
1623
|
+
arn?: string;
|
|
1624
|
+
name?: string;
|
|
1625
|
+
endpoint?: string;
|
|
1626
|
+
status?: ApplicationStatus;
|
|
1627
|
+
createdAt?: Date;
|
|
1628
|
+
lastUpdatedAt?: Date;
|
|
1629
|
+
}
|
|
1630
|
+
export interface ListApplicationsResponse {
|
|
1631
|
+
ApplicationSummaries?: ApplicationSummary[];
|
|
1632
|
+
nextToken?: string;
|
|
1633
|
+
}
|
|
1506
1634
|
export interface ListDataSourcesRequest {
|
|
1507
1635
|
DomainName: string | undefined;
|
|
1508
1636
|
}
|
|
@@ -1665,116 +1793,6 @@ export interface PurchaseReservedInstanceOfferingResponse {
|
|
|
1665
1793
|
export interface RejectInboundConnectionRequest {
|
|
1666
1794
|
ConnectionId: string | undefined;
|
|
1667
1795
|
}
|
|
1668
|
-
export interface RejectInboundConnectionResponse {
|
|
1669
|
-
Connection?: InboundConnection;
|
|
1670
|
-
}
|
|
1671
|
-
export interface RemoveTagsRequest {
|
|
1672
|
-
ARN: string | undefined;
|
|
1673
|
-
TagKeys: string[] | undefined;
|
|
1674
|
-
}
|
|
1675
|
-
export interface RevokeVpcEndpointAccessRequest {
|
|
1676
|
-
DomainName: string | undefined;
|
|
1677
|
-
Account: string | undefined;
|
|
1678
|
-
}
|
|
1679
|
-
export interface RevokeVpcEndpointAccessResponse {}
|
|
1680
|
-
export interface StartDomainMaintenanceRequest {
|
|
1681
|
-
DomainName: string | undefined;
|
|
1682
|
-
Action: MaintenanceType | undefined;
|
|
1683
|
-
NodeId?: string;
|
|
1684
|
-
}
|
|
1685
|
-
export interface StartDomainMaintenanceResponse {
|
|
1686
|
-
MaintenanceId?: string;
|
|
1687
|
-
}
|
|
1688
|
-
export declare const ScheduleAt: {
|
|
1689
|
-
readonly NOW: "NOW";
|
|
1690
|
-
readonly OFF_PEAK_WINDOW: "OFF_PEAK_WINDOW";
|
|
1691
|
-
readonly TIMESTAMP: "TIMESTAMP";
|
|
1692
|
-
};
|
|
1693
|
-
export type ScheduleAt = (typeof ScheduleAt)[keyof typeof ScheduleAt];
|
|
1694
|
-
export interface StartServiceSoftwareUpdateRequest {
|
|
1695
|
-
DomainName: string | undefined;
|
|
1696
|
-
ScheduleAt?: ScheduleAt;
|
|
1697
|
-
DesiredStartTime?: number;
|
|
1698
|
-
}
|
|
1699
|
-
export interface StartServiceSoftwareUpdateResponse {
|
|
1700
|
-
ServiceSoftwareOptions?: ServiceSoftwareOptions;
|
|
1701
|
-
}
|
|
1702
|
-
export interface UpdateDataSourceRequest {
|
|
1703
|
-
DomainName: string | undefined;
|
|
1704
|
-
Name: string | undefined;
|
|
1705
|
-
DataSourceType: DataSourceType | undefined;
|
|
1706
|
-
Description?: string;
|
|
1707
|
-
Status?: DataSourceStatus;
|
|
1708
|
-
}
|
|
1709
|
-
export interface UpdateDataSourceResponse {
|
|
1710
|
-
Message?: string;
|
|
1711
|
-
}
|
|
1712
|
-
export declare const DryRunMode: {
|
|
1713
|
-
readonly Basic: "Basic";
|
|
1714
|
-
readonly Verbose: "Verbose";
|
|
1715
|
-
};
|
|
1716
|
-
export type DryRunMode = (typeof DryRunMode)[keyof typeof DryRunMode];
|
|
1717
|
-
export interface UpdateDomainConfigRequest {
|
|
1718
|
-
DomainName: string | undefined;
|
|
1719
|
-
ClusterConfig?: ClusterConfig;
|
|
1720
|
-
EBSOptions?: EBSOptions;
|
|
1721
|
-
SnapshotOptions?: SnapshotOptions;
|
|
1722
|
-
VPCOptions?: VPCOptions;
|
|
1723
|
-
CognitoOptions?: CognitoOptions;
|
|
1724
|
-
AdvancedOptions?: Record<string, string>;
|
|
1725
|
-
AccessPolicies?: string;
|
|
1726
|
-
IPAddressType?: IPAddressType;
|
|
1727
|
-
LogPublishingOptions?: Partial<Record<LogType, LogPublishingOption>>;
|
|
1728
|
-
EncryptionAtRestOptions?: EncryptionAtRestOptions;
|
|
1729
|
-
DomainEndpointOptions?: DomainEndpointOptions;
|
|
1730
|
-
NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions;
|
|
1731
|
-
AdvancedSecurityOptions?: AdvancedSecurityOptionsInput;
|
|
1732
|
-
AutoTuneOptions?: AutoTuneOptions;
|
|
1733
|
-
DryRun?: boolean;
|
|
1734
|
-
DryRunMode?: DryRunMode;
|
|
1735
|
-
OffPeakWindowOptions?: OffPeakWindowOptions;
|
|
1736
|
-
SoftwareUpdateOptions?: SoftwareUpdateOptions;
|
|
1737
|
-
AIMLOptions?: AIMLOptionsInput;
|
|
1738
|
-
}
|
|
1739
|
-
export interface UpdateDomainConfigResponse {
|
|
1740
|
-
DomainConfig: DomainConfig | undefined;
|
|
1741
|
-
DryRunResults?: DryRunResults;
|
|
1742
|
-
DryRunProgressStatus?: DryRunProgressStatus;
|
|
1743
|
-
}
|
|
1744
|
-
export interface UpdatePackageRequest {
|
|
1745
|
-
PackageID: string | undefined;
|
|
1746
|
-
PackageSource: PackageSource | undefined;
|
|
1747
|
-
PackageDescription?: string;
|
|
1748
|
-
CommitMessage?: string;
|
|
1749
|
-
}
|
|
1750
|
-
export interface UpdatePackageResponse {
|
|
1751
|
-
PackageDetails?: PackageDetails;
|
|
1752
|
-
}
|
|
1753
|
-
export declare class SlotNotAvailableException extends __BaseException {
|
|
1754
|
-
readonly name: "SlotNotAvailableException";
|
|
1755
|
-
readonly $fault: "client";
|
|
1756
|
-
SlotSuggestions?: number[];
|
|
1757
|
-
constructor(
|
|
1758
|
-
opts: __ExceptionOptionType<SlotNotAvailableException, __BaseException>
|
|
1759
|
-
);
|
|
1760
|
-
}
|
|
1761
|
-
export interface UpdateScheduledActionRequest {
|
|
1762
|
-
DomainName: string | undefined;
|
|
1763
|
-
ActionID: string | undefined;
|
|
1764
|
-
ActionType: ActionType | undefined;
|
|
1765
|
-
ScheduleAt: ScheduleAt | undefined;
|
|
1766
|
-
DesiredStartTime?: number;
|
|
1767
|
-
}
|
|
1768
|
-
export interface UpdateScheduledActionResponse {
|
|
1769
|
-
ScheduledAction?: ScheduledAction;
|
|
1770
|
-
}
|
|
1771
|
-
export interface UpdateVpcEndpointRequest {
|
|
1772
|
-
VpcEndpointId: string | undefined;
|
|
1773
|
-
VpcOptions: VPCOptions | undefined;
|
|
1774
|
-
}
|
|
1775
|
-
export interface UpdateVpcEndpointResponse {
|
|
1776
|
-
VpcEndpoint: VpcEndpoint | undefined;
|
|
1777
|
-
}
|
|
1778
1796
|
export declare const MasterUserOptionsFilterSensitiveLog: (
|
|
1779
1797
|
obj: MasterUserOptions
|
|
1780
1798
|
) => any;
|
|
@@ -1787,6 +1805,3 @@ export declare const AdvancedSecurityOptionsInputFilterSensitiveLog: (
|
|
|
1787
1805
|
export declare const CreateDomainRequestFilterSensitiveLog: (
|
|
1788
1806
|
obj: CreateDomainRequest
|
|
1789
1807
|
) => any;
|
|
1790
|
-
export declare const UpdateDomainConfigRequestFilterSensitiveLog: (
|
|
1791
|
-
obj: UpdateDomainConfigRequest
|
|
1792
|
-
) => any;
|
|
@@ -1,4 +1,169 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
ActionType,
|
|
4
|
+
AdvancedSecurityOptionsInput,
|
|
5
|
+
AIMLOptionsInput,
|
|
6
|
+
AppConfig,
|
|
7
|
+
AutoTuneOptions,
|
|
8
|
+
AWSServicePrincipal,
|
|
9
|
+
ChangeProgressDetails,
|
|
10
|
+
ClusterConfig,
|
|
11
|
+
CognitoOptions,
|
|
12
|
+
DataSource,
|
|
13
|
+
DataSourceStatus,
|
|
14
|
+
DataSourceType,
|
|
15
|
+
DomainConfig,
|
|
16
|
+
DomainEndpointOptions,
|
|
17
|
+
DryRunProgressStatus,
|
|
18
|
+
DryRunResults,
|
|
19
|
+
EBSOptions,
|
|
20
|
+
EncryptionAtRestOptions,
|
|
21
|
+
IamIdentityCenterOptions,
|
|
22
|
+
IdentityCenterOptionsInput,
|
|
23
|
+
InboundConnection,
|
|
24
|
+
IPAddressType,
|
|
25
|
+
LogPublishingOption,
|
|
26
|
+
LogType,
|
|
27
|
+
MaintenanceType,
|
|
28
|
+
NodeToNodeEncryptionOptions,
|
|
29
|
+
OffPeakWindowOptions,
|
|
30
|
+
PackageDetails,
|
|
31
|
+
PackageSource,
|
|
32
|
+
ScheduledAction,
|
|
33
|
+
ServiceSoftwareOptions,
|
|
34
|
+
SnapshotOptions,
|
|
35
|
+
SoftwareUpdateOptions,
|
|
36
|
+
VpcEndpoint,
|
|
37
|
+
VPCOptions,
|
|
38
|
+
} from "./models_0";
|
|
39
|
+
import { OpenSearchServiceException as __BaseException } from "./OpenSearchServiceException";
|
|
40
|
+
export interface RejectInboundConnectionResponse {
|
|
41
|
+
Connection?: InboundConnection;
|
|
42
|
+
}
|
|
43
|
+
export interface RemoveTagsRequest {
|
|
44
|
+
ARN: string | undefined;
|
|
45
|
+
TagKeys: string[] | undefined;
|
|
46
|
+
}
|
|
47
|
+
export interface RevokeVpcEndpointAccessRequest {
|
|
48
|
+
DomainName: string | undefined;
|
|
49
|
+
Account?: string;
|
|
50
|
+
Service?: AWSServicePrincipal;
|
|
51
|
+
}
|
|
52
|
+
export interface RevokeVpcEndpointAccessResponse {}
|
|
53
|
+
export interface StartDomainMaintenanceRequest {
|
|
54
|
+
DomainName: string | undefined;
|
|
55
|
+
Action: MaintenanceType | undefined;
|
|
56
|
+
NodeId?: string;
|
|
57
|
+
}
|
|
58
|
+
export interface StartDomainMaintenanceResponse {
|
|
59
|
+
MaintenanceId?: string;
|
|
60
|
+
}
|
|
61
|
+
export declare const ScheduleAt: {
|
|
62
|
+
readonly NOW: "NOW";
|
|
63
|
+
readonly OFF_PEAK_WINDOW: "OFF_PEAK_WINDOW";
|
|
64
|
+
readonly TIMESTAMP: "TIMESTAMP";
|
|
65
|
+
};
|
|
66
|
+
export type ScheduleAt = (typeof ScheduleAt)[keyof typeof ScheduleAt];
|
|
67
|
+
export interface StartServiceSoftwareUpdateRequest {
|
|
68
|
+
DomainName: string | undefined;
|
|
69
|
+
ScheduleAt?: ScheduleAt;
|
|
70
|
+
DesiredStartTime?: number;
|
|
71
|
+
}
|
|
72
|
+
export interface StartServiceSoftwareUpdateResponse {
|
|
73
|
+
ServiceSoftwareOptions?: ServiceSoftwareOptions;
|
|
74
|
+
}
|
|
75
|
+
export interface UpdateApplicationRequest {
|
|
76
|
+
id: string | undefined;
|
|
77
|
+
dataSources?: DataSource[];
|
|
78
|
+
appConfigs?: AppConfig[];
|
|
79
|
+
}
|
|
80
|
+
export interface UpdateApplicationResponse {
|
|
81
|
+
id?: string;
|
|
82
|
+
name?: string;
|
|
83
|
+
arn?: string;
|
|
84
|
+
dataSources?: DataSource[];
|
|
85
|
+
iamIdentityCenterOptions?: IamIdentityCenterOptions;
|
|
86
|
+
appConfigs?: AppConfig[];
|
|
87
|
+
createdAt?: Date;
|
|
88
|
+
lastUpdatedAt?: Date;
|
|
89
|
+
}
|
|
90
|
+
export interface UpdateDataSourceRequest {
|
|
91
|
+
DomainName: string | undefined;
|
|
92
|
+
Name: string | undefined;
|
|
93
|
+
DataSourceType: DataSourceType | undefined;
|
|
94
|
+
Description?: string;
|
|
95
|
+
Status?: DataSourceStatus;
|
|
96
|
+
}
|
|
97
|
+
export interface UpdateDataSourceResponse {
|
|
98
|
+
Message?: string;
|
|
99
|
+
}
|
|
100
|
+
export declare const DryRunMode: {
|
|
101
|
+
readonly Basic: "Basic";
|
|
102
|
+
readonly Verbose: "Verbose";
|
|
103
|
+
};
|
|
104
|
+
export type DryRunMode = (typeof DryRunMode)[keyof typeof DryRunMode];
|
|
105
|
+
export interface UpdateDomainConfigRequest {
|
|
106
|
+
DomainName: string | undefined;
|
|
107
|
+
ClusterConfig?: ClusterConfig;
|
|
108
|
+
EBSOptions?: EBSOptions;
|
|
109
|
+
SnapshotOptions?: SnapshotOptions;
|
|
110
|
+
VPCOptions?: VPCOptions;
|
|
111
|
+
CognitoOptions?: CognitoOptions;
|
|
112
|
+
AdvancedOptions?: Record<string, string>;
|
|
113
|
+
AccessPolicies?: string;
|
|
114
|
+
IPAddressType?: IPAddressType;
|
|
115
|
+
LogPublishingOptions?: Partial<Record<LogType, LogPublishingOption>>;
|
|
116
|
+
EncryptionAtRestOptions?: EncryptionAtRestOptions;
|
|
117
|
+
DomainEndpointOptions?: DomainEndpointOptions;
|
|
118
|
+
NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions;
|
|
119
|
+
AdvancedSecurityOptions?: AdvancedSecurityOptionsInput;
|
|
120
|
+
IdentityCenterOptions?: IdentityCenterOptionsInput;
|
|
121
|
+
AutoTuneOptions?: AutoTuneOptions;
|
|
122
|
+
DryRun?: boolean;
|
|
123
|
+
DryRunMode?: DryRunMode;
|
|
124
|
+
OffPeakWindowOptions?: OffPeakWindowOptions;
|
|
125
|
+
SoftwareUpdateOptions?: SoftwareUpdateOptions;
|
|
126
|
+
AIMLOptions?: AIMLOptionsInput;
|
|
127
|
+
}
|
|
128
|
+
export interface UpdateDomainConfigResponse {
|
|
129
|
+
DomainConfig: DomainConfig | undefined;
|
|
130
|
+
DryRunResults?: DryRunResults;
|
|
131
|
+
DryRunProgressStatus?: DryRunProgressStatus;
|
|
132
|
+
}
|
|
133
|
+
export interface UpdatePackageRequest {
|
|
134
|
+
PackageID: string | undefined;
|
|
135
|
+
PackageSource: PackageSource | undefined;
|
|
136
|
+
PackageDescription?: string;
|
|
137
|
+
CommitMessage?: string;
|
|
138
|
+
}
|
|
139
|
+
export interface UpdatePackageResponse {
|
|
140
|
+
PackageDetails?: PackageDetails;
|
|
141
|
+
}
|
|
142
|
+
export declare class SlotNotAvailableException extends __BaseException {
|
|
143
|
+
readonly name: "SlotNotAvailableException";
|
|
144
|
+
readonly $fault: "client";
|
|
145
|
+
SlotSuggestions?: number[];
|
|
146
|
+
constructor(
|
|
147
|
+
opts: __ExceptionOptionType<SlotNotAvailableException, __BaseException>
|
|
148
|
+
);
|
|
149
|
+
}
|
|
150
|
+
export interface UpdateScheduledActionRequest {
|
|
151
|
+
DomainName: string | undefined;
|
|
152
|
+
ActionID: string | undefined;
|
|
153
|
+
ActionType: ActionType | undefined;
|
|
154
|
+
ScheduleAt: ScheduleAt | undefined;
|
|
155
|
+
DesiredStartTime?: number;
|
|
156
|
+
}
|
|
157
|
+
export interface UpdateScheduledActionResponse {
|
|
158
|
+
ScheduledAction?: ScheduledAction;
|
|
159
|
+
}
|
|
160
|
+
export interface UpdateVpcEndpointRequest {
|
|
161
|
+
VpcEndpointId: string | undefined;
|
|
162
|
+
VpcOptions: VPCOptions | undefined;
|
|
163
|
+
}
|
|
164
|
+
export interface UpdateVpcEndpointResponse {
|
|
165
|
+
VpcEndpoint: VpcEndpoint | undefined;
|
|
166
|
+
}
|
|
2
167
|
export interface UpgradeDomainRequest {
|
|
3
168
|
DomainName: string | undefined;
|
|
4
169
|
TargetVersion: string | undefined;
|
|
@@ -13,3 +178,6 @@ export interface UpgradeDomainResponse {
|
|
|
13
178
|
AdvancedOptions?: Record<string, string>;
|
|
14
179
|
ChangeProgressDetails?: ChangeProgressDetails;
|
|
15
180
|
}
|
|
181
|
+
export declare const UpdateDomainConfigRequestFilterSensitiveLog: (
|
|
182
|
+
obj: UpdateDomainConfigRequest
|
|
183
|
+
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListApplicationsCommandInput,
|
|
4
|
+
ListApplicationsCommandOutput,
|
|
5
|
+
} from "../commands/ListApplicationsCommand";
|
|
6
|
+
import { OpenSearchPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListApplications: (
|
|
8
|
+
config: OpenSearchPaginationConfiguration,
|
|
9
|
+
input: ListApplicationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListApplicationsCommandOutput>;
|
|
@@ -7,6 +7,7 @@ export * from "./DescribeReservedInstancesPaginator";
|
|
|
7
7
|
export * from "./GetPackageVersionHistoryPaginator";
|
|
8
8
|
export * from "./GetUpgradeHistoryPaginator";
|
|
9
9
|
export * from "./Interfaces";
|
|
10
|
+
export * from "./ListApplicationsPaginator";
|
|
10
11
|
export * from "./ListDomainMaintenancesPaginator";
|
|
11
12
|
export * from "./ListDomainsForPackagePaginator";
|
|
12
13
|
export * from "./ListInstanceTypeDetailsPaginator";
|