@aws-sdk/client-opensearch 3.686.0 → 3.689.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 +24 -0
- package/dist-cjs/index.js +186 -3
- package/dist-es/OpenSearch.js +6 -0
- package/dist-es/commands/AssociatePackagesCommand.js +22 -0
- package/dist-es/commands/DissociatePackagesCommand.js +22 -0
- package/dist-es/commands/UpdatePackageScopeCommand.js +22 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +8 -0
- package/dist-es/models/models_1.js +5 -0
- package/dist-es/protocols/Aws_restJson1.js +108 -1
- package/dist-types/OpenSearch.d.ts +21 -0
- package/dist-types/OpenSearchClient.d.ts +5 -2
- package/dist-types/commands/AssociatePackageCommand.d.ts +19 -1
- package/dist-types/commands/AssociatePackagesCommand.d.ts +127 -0
- package/dist-types/commands/CreatePackageCommand.d.ts +33 -2
- package/dist-types/commands/DeletePackageCommand.d.ts +18 -1
- package/dist-types/commands/DescribePackagesCommand.d.ts +19 -2
- package/dist-types/commands/DissociatePackageCommand.d.ts +10 -1
- package/dist-types/commands/DissociatePackagesCommand.d.ts +116 -0
- package/dist-types/commands/GetPackageVersionHistoryCommand.d.ts +6 -0
- package/dist-types/commands/ListDomainsForPackageCommand.d.ts +10 -1
- package/dist-types/commands/ListPackagesForDomainCommand.d.ts +10 -1
- package/dist-types/commands/ListVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListVpcEndpointAccessCommand.d.ts +1 -1
- package/dist-types/commands/ListVpcEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/ListVpcEndpointsForDomainCommand.d.ts +1 -1
- package/dist-types/commands/PurchaseReservedInstanceOfferingCommand.d.ts +1 -1
- package/dist-types/commands/RejectInboundConnectionCommand.d.ts +1 -2
- package/dist-types/commands/UpdatePackageCommand.d.ts +28 -1
- package/dist-types/commands/UpdatePackageScopeCommand.d.ts +94 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +242 -186
- package/dist-types/models/models_1.d.ts +250 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -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/AssociatePackagesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DissociatePackagesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListVersionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListVpcEndpointAccessCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListVpcEndpointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListVpcEndpointsForDomainCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PurchaseReservedInstanceOfferingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RejectInboundConnectionCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdatePackageScopeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +63 -43
- package/dist-types/ts3.4/models/models_1.d.ts +66 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +6 -6
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
RejectInboundConnectionRequest,
|
|
5
|
+
RejectInboundConnectionResponse,
|
|
6
|
+
} from "../models/models_1";
|
|
5
7
|
import {
|
|
6
8
|
OpenSearchClientResolvedConfig,
|
|
7
9
|
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
|
+
UpdatePackageScopeRequest,
|
|
5
|
+
UpdatePackageScopeResponse,
|
|
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 UpdatePackageScopeCommandInput
|
|
15
|
+
extends UpdatePackageScopeRequest {}
|
|
16
|
+
export interface UpdatePackageScopeCommandOutput
|
|
17
|
+
extends UpdatePackageScopeResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdatePackageScopeCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdatePackageScopeCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdatePackageScopeCommandInput,
|
|
24
|
+
UpdatePackageScopeCommandOutput,
|
|
25
|
+
OpenSearchClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdatePackageScopeCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdatePackageScopeCommandInput,
|
|
33
|
+
UpdatePackageScopeCommandOutput,
|
|
34
|
+
OpenSearchClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdatePackageScopeCommand extends UpdatePackageScopeCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdatePackageScopeRequest;
|
|
44
|
+
output: UpdatePackageScopeResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdatePackageScopeCommandInput;
|
|
48
|
+
output: UpdatePackageScopeCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -2,6 +2,7 @@ export * from "./AcceptInboundConnectionCommand";
|
|
|
2
2
|
export * from "./AddDataSourceCommand";
|
|
3
3
|
export * from "./AddTagsCommand";
|
|
4
4
|
export * from "./AssociatePackageCommand";
|
|
5
|
+
export * from "./AssociatePackagesCommand";
|
|
5
6
|
export * from "./AuthorizeVpcEndpointAccessCommand";
|
|
6
7
|
export * from "./CancelDomainConfigChangeCommand";
|
|
7
8
|
export * from "./CancelServiceSoftwareUpdateCommand";
|
|
@@ -33,6 +34,7 @@ export * from "./DescribeReservedInstanceOfferingsCommand";
|
|
|
33
34
|
export * from "./DescribeReservedInstancesCommand";
|
|
34
35
|
export * from "./DescribeVpcEndpointsCommand";
|
|
35
36
|
export * from "./DissociatePackageCommand";
|
|
37
|
+
export * from "./DissociatePackagesCommand";
|
|
36
38
|
export * from "./GetApplicationCommand";
|
|
37
39
|
export * from "./GetCompatibleVersionsCommand";
|
|
38
40
|
export * from "./GetDataSourceCommand";
|
|
@@ -63,6 +65,7 @@ export * from "./UpdateApplicationCommand";
|
|
|
63
65
|
export * from "./UpdateDataSourceCommand";
|
|
64
66
|
export * from "./UpdateDomainConfigCommand";
|
|
65
67
|
export * from "./UpdatePackageCommand";
|
|
68
|
+
export * from "./UpdatePackageScopeCommand";
|
|
66
69
|
export * from "./UpdateScheduledActionCommand";
|
|
67
70
|
export * from "./UpdateVpcEndpointCommand";
|
|
68
71
|
export * from "./UpgradeDomainCommand";
|
|
@@ -271,9 +271,18 @@ export interface AIMLOptionsStatus {
|
|
|
271
271
|
Options?: AIMLOptionsOutput;
|
|
272
272
|
Status?: OptionStatus;
|
|
273
273
|
}
|
|
274
|
+
export interface KeyStoreAccessOption {
|
|
275
|
+
KeyAccessRoleArn?: string;
|
|
276
|
+
KeyStoreAccessEnabled: boolean | undefined;
|
|
277
|
+
}
|
|
278
|
+
export interface PackageAssociationConfiguration {
|
|
279
|
+
KeyStoreAccessOption?: KeyStoreAccessOption;
|
|
280
|
+
}
|
|
274
281
|
export interface AssociatePackageRequest {
|
|
275
282
|
PackageID: string | undefined;
|
|
276
283
|
DomainName: string | undefined;
|
|
284
|
+
PrerequisitePackageIDList?: string[];
|
|
285
|
+
AssociationConfiguration?: PackageAssociationConfiguration;
|
|
277
286
|
}
|
|
278
287
|
export declare const DomainPackageStatus: {
|
|
279
288
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -289,6 +298,8 @@ export interface ErrorDetails {
|
|
|
289
298
|
ErrorMessage?: string;
|
|
290
299
|
}
|
|
291
300
|
export declare const PackageType: {
|
|
301
|
+
readonly PACKAGE_CONFIG: "PACKAGE-CONFIG";
|
|
302
|
+
readonly PACKAGE_LICENSE: "PACKAGE-LICENSE";
|
|
292
303
|
readonly TXT_DICTIONARY: "TXT-DICTIONARY";
|
|
293
304
|
readonly ZIP_PLUGIN: "ZIP-PLUGIN";
|
|
294
305
|
};
|
|
@@ -301,8 +312,10 @@ export interface DomainPackageDetails {
|
|
|
301
312
|
DomainName?: string;
|
|
302
313
|
DomainPackageStatus?: DomainPackageStatus;
|
|
303
314
|
PackageVersion?: string;
|
|
315
|
+
PrerequisitePackageIDList?: string[];
|
|
304
316
|
ReferencePath?: string;
|
|
305
317
|
ErrorDetails?: ErrorDetails;
|
|
318
|
+
AssociationConfiguration?: PackageAssociationConfiguration;
|
|
306
319
|
}
|
|
307
320
|
export interface AssociatePackageResponse {
|
|
308
321
|
DomainPackageDetails?: DomainPackageDetails;
|
|
@@ -312,6 +325,18 @@ export declare class ConflictException extends __BaseException {
|
|
|
312
325
|
readonly $fault: "client";
|
|
313
326
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
314
327
|
}
|
|
328
|
+
export interface PackageDetailsForAssociation {
|
|
329
|
+
PackageID: string | undefined;
|
|
330
|
+
PrerequisitePackageIDList?: string[];
|
|
331
|
+
AssociationConfiguration?: PackageAssociationConfiguration;
|
|
332
|
+
}
|
|
333
|
+
export interface AssociatePackagesRequest {
|
|
334
|
+
PackageList: PackageDetailsForAssociation[] | undefined;
|
|
335
|
+
DomainName: string | undefined;
|
|
336
|
+
}
|
|
337
|
+
export interface AssociatePackagesResponse {
|
|
338
|
+
DomainPackageDetailsList?: DomainPackageDetails[];
|
|
339
|
+
}
|
|
315
340
|
export declare const AWSServicePrincipal: {
|
|
316
341
|
readonly application_opensearchservice_amazonaws_com: "application.opensearchservice.amazonaws.com";
|
|
317
342
|
};
|
|
@@ -887,15 +912,39 @@ export interface CreateOutboundConnectionResponse {
|
|
|
887
912
|
ConnectionMode?: ConnectionMode;
|
|
888
913
|
ConnectionProperties?: ConnectionProperties;
|
|
889
914
|
}
|
|
915
|
+
export declare const RequirementLevel: {
|
|
916
|
+
readonly NONE: "NONE";
|
|
917
|
+
readonly OPTIONAL: "OPTIONAL";
|
|
918
|
+
readonly REQUIRED: "REQUIRED";
|
|
919
|
+
};
|
|
920
|
+
export type RequirementLevel =
|
|
921
|
+
(typeof RequirementLevel)[keyof typeof RequirementLevel];
|
|
922
|
+
export interface PackageConfiguration {
|
|
923
|
+
LicenseRequirement: RequirementLevel | undefined;
|
|
924
|
+
LicenseFilepath?: string;
|
|
925
|
+
ConfigurationRequirement: RequirementLevel | undefined;
|
|
926
|
+
RequiresRestartForConfigurationUpdate?: boolean;
|
|
927
|
+
}
|
|
928
|
+
export interface PackageEncryptionOptions {
|
|
929
|
+
KmsKeyIdentifier?: string;
|
|
930
|
+
EncryptionEnabled: boolean | undefined;
|
|
931
|
+
}
|
|
890
932
|
export interface PackageSource {
|
|
891
933
|
S3BucketName?: string;
|
|
892
934
|
S3Key?: string;
|
|
893
935
|
}
|
|
936
|
+
export interface PackageVendingOptions {
|
|
937
|
+
VendingEnabled: boolean | undefined;
|
|
938
|
+
}
|
|
894
939
|
export interface CreatePackageRequest {
|
|
895
940
|
PackageName: string | undefined;
|
|
896
941
|
PackageType: PackageType | undefined;
|
|
897
942
|
PackageDescription?: string;
|
|
898
943
|
PackageSource: PackageSource | undefined;
|
|
944
|
+
PackageConfiguration?: PackageConfiguration;
|
|
945
|
+
EngineVersion?: string;
|
|
946
|
+
PackageVendingOptions?: PackageVendingOptions;
|
|
947
|
+
PackageEncryptionOptions?: PackageEncryptionOptions;
|
|
899
948
|
}
|
|
900
949
|
export interface PluginProperties {
|
|
901
950
|
Name?: string;
|
|
@@ -927,6 +976,11 @@ export interface PackageDetails {
|
|
|
927
976
|
ErrorDetails?: ErrorDetails;
|
|
928
977
|
EngineVersion?: string;
|
|
929
978
|
AvailablePluginProperties?: PluginProperties;
|
|
979
|
+
AvailablePackageConfiguration?: PackageConfiguration;
|
|
980
|
+
AllowListedUserList?: string[];
|
|
981
|
+
PackageOwner?: string;
|
|
982
|
+
PackageVendingOptions?: PackageVendingOptions;
|
|
983
|
+
PackageEncryptionOptions?: PackageEncryptionOptions;
|
|
930
984
|
}
|
|
931
985
|
export interface CreatePackageResponse {
|
|
932
986
|
PackageDetails?: PackageDetails;
|
|
@@ -1379,6 +1433,7 @@ export declare const DescribePackagesFilterName: {
|
|
|
1379
1433
|
readonly EngineVersion: "EngineVersion";
|
|
1380
1434
|
readonly PackageID: "PackageID";
|
|
1381
1435
|
readonly PackageName: "PackageName";
|
|
1436
|
+
readonly PackageOwner: "PackageOwner";
|
|
1382
1437
|
readonly PackageStatus: "PackageStatus";
|
|
1383
1438
|
readonly PackageType: "PackageType";
|
|
1384
1439
|
};
|
|
@@ -1477,6 +1532,13 @@ export interface DissociatePackageRequest {
|
|
|
1477
1532
|
export interface DissociatePackageResponse {
|
|
1478
1533
|
DomainPackageDetails?: DomainPackageDetails;
|
|
1479
1534
|
}
|
|
1535
|
+
export interface DissociatePackagesRequest {
|
|
1536
|
+
PackageList: string[] | undefined;
|
|
1537
|
+
DomainName: string | undefined;
|
|
1538
|
+
}
|
|
1539
|
+
export interface DissociatePackagesResponse {
|
|
1540
|
+
DomainPackageDetailsList?: DomainPackageDetails[];
|
|
1541
|
+
}
|
|
1480
1542
|
export interface GetApplicationRequest {
|
|
1481
1543
|
id: string | undefined;
|
|
1482
1544
|
}
|
|
@@ -1565,6 +1627,7 @@ export interface PackageVersionHistory {
|
|
|
1565
1627
|
CommitMessage?: string;
|
|
1566
1628
|
CreatedAt?: Date;
|
|
1567
1629
|
PluginProperties?: PluginProperties;
|
|
1630
|
+
PackageConfiguration?: PackageConfiguration;
|
|
1568
1631
|
}
|
|
1569
1632
|
export interface GetPackageVersionHistoryResponse {
|
|
1570
1633
|
PackageID?: string;
|
|
@@ -1750,49 +1813,6 @@ export interface ListTagsRequest {
|
|
|
1750
1813
|
export interface ListTagsResponse {
|
|
1751
1814
|
TagList?: Tag[];
|
|
1752
1815
|
}
|
|
1753
|
-
export interface ListVersionsRequest {
|
|
1754
|
-
MaxResults?: number;
|
|
1755
|
-
NextToken?: string;
|
|
1756
|
-
}
|
|
1757
|
-
export interface ListVersionsResponse {
|
|
1758
|
-
Versions?: string[];
|
|
1759
|
-
NextToken?: string;
|
|
1760
|
-
}
|
|
1761
|
-
export interface ListVpcEndpointAccessRequest {
|
|
1762
|
-
DomainName: string | undefined;
|
|
1763
|
-
NextToken?: string;
|
|
1764
|
-
}
|
|
1765
|
-
export interface ListVpcEndpointAccessResponse {
|
|
1766
|
-
AuthorizedPrincipalList: AuthorizedPrincipal[] | undefined;
|
|
1767
|
-
NextToken: string | undefined;
|
|
1768
|
-
}
|
|
1769
|
-
export interface ListVpcEndpointsRequest {
|
|
1770
|
-
NextToken?: string;
|
|
1771
|
-
}
|
|
1772
|
-
export interface ListVpcEndpointsResponse {
|
|
1773
|
-
VpcEndpointSummaryList: VpcEndpointSummary[] | undefined;
|
|
1774
|
-
NextToken: string | undefined;
|
|
1775
|
-
}
|
|
1776
|
-
export interface ListVpcEndpointsForDomainRequest {
|
|
1777
|
-
DomainName: string | undefined;
|
|
1778
|
-
NextToken?: string;
|
|
1779
|
-
}
|
|
1780
|
-
export interface ListVpcEndpointsForDomainResponse {
|
|
1781
|
-
VpcEndpointSummaryList: VpcEndpointSummary[] | undefined;
|
|
1782
|
-
NextToken: string | undefined;
|
|
1783
|
-
}
|
|
1784
|
-
export interface PurchaseReservedInstanceOfferingRequest {
|
|
1785
|
-
ReservedInstanceOfferingId: string | undefined;
|
|
1786
|
-
ReservationName: string | undefined;
|
|
1787
|
-
InstanceCount?: number;
|
|
1788
|
-
}
|
|
1789
|
-
export interface PurchaseReservedInstanceOfferingResponse {
|
|
1790
|
-
ReservedInstanceId?: string;
|
|
1791
|
-
ReservationName?: string;
|
|
1792
|
-
}
|
|
1793
|
-
export interface RejectInboundConnectionRequest {
|
|
1794
|
-
ConnectionId: string | undefined;
|
|
1795
|
-
}
|
|
1796
1816
|
export declare const MasterUserOptionsFilterSensitiveLog: (
|
|
1797
1817
|
obj: MasterUserOptions
|
|
1798
1818
|
) => any;
|
|
@@ -4,6 +4,7 @@ import {
|
|
|
4
4
|
AdvancedSecurityOptionsInput,
|
|
5
5
|
AIMLOptionsInput,
|
|
6
6
|
AppConfig,
|
|
7
|
+
AuthorizedPrincipal,
|
|
7
8
|
AutoTuneOptions,
|
|
8
9
|
AWSServicePrincipal,
|
|
9
10
|
ChangeProgressDetails,
|
|
@@ -27,16 +28,62 @@ import {
|
|
|
27
28
|
MaintenanceType,
|
|
28
29
|
NodeToNodeEncryptionOptions,
|
|
29
30
|
OffPeakWindowOptions,
|
|
31
|
+
PackageConfiguration,
|
|
30
32
|
PackageDetails,
|
|
33
|
+
PackageEncryptionOptions,
|
|
31
34
|
PackageSource,
|
|
32
35
|
ScheduledAction,
|
|
33
36
|
ServiceSoftwareOptions,
|
|
34
37
|
SnapshotOptions,
|
|
35
38
|
SoftwareUpdateOptions,
|
|
36
39
|
VpcEndpoint,
|
|
40
|
+
VpcEndpointSummary,
|
|
37
41
|
VPCOptions,
|
|
38
42
|
} from "./models_0";
|
|
39
43
|
import { OpenSearchServiceException as __BaseException } from "./OpenSearchServiceException";
|
|
44
|
+
export interface ListVersionsRequest {
|
|
45
|
+
MaxResults?: number;
|
|
46
|
+
NextToken?: string;
|
|
47
|
+
}
|
|
48
|
+
export interface ListVersionsResponse {
|
|
49
|
+
Versions?: string[];
|
|
50
|
+
NextToken?: string;
|
|
51
|
+
}
|
|
52
|
+
export interface ListVpcEndpointAccessRequest {
|
|
53
|
+
DomainName: string | undefined;
|
|
54
|
+
NextToken?: string;
|
|
55
|
+
}
|
|
56
|
+
export interface ListVpcEndpointAccessResponse {
|
|
57
|
+
AuthorizedPrincipalList: AuthorizedPrincipal[] | undefined;
|
|
58
|
+
NextToken: string | undefined;
|
|
59
|
+
}
|
|
60
|
+
export interface ListVpcEndpointsRequest {
|
|
61
|
+
NextToken?: string;
|
|
62
|
+
}
|
|
63
|
+
export interface ListVpcEndpointsResponse {
|
|
64
|
+
VpcEndpointSummaryList: VpcEndpointSummary[] | undefined;
|
|
65
|
+
NextToken: string | undefined;
|
|
66
|
+
}
|
|
67
|
+
export interface ListVpcEndpointsForDomainRequest {
|
|
68
|
+
DomainName: string | undefined;
|
|
69
|
+
NextToken?: string;
|
|
70
|
+
}
|
|
71
|
+
export interface ListVpcEndpointsForDomainResponse {
|
|
72
|
+
VpcEndpointSummaryList: VpcEndpointSummary[] | undefined;
|
|
73
|
+
NextToken: string | undefined;
|
|
74
|
+
}
|
|
75
|
+
export interface PurchaseReservedInstanceOfferingRequest {
|
|
76
|
+
ReservedInstanceOfferingId: string | undefined;
|
|
77
|
+
ReservationName: string | undefined;
|
|
78
|
+
InstanceCount?: number;
|
|
79
|
+
}
|
|
80
|
+
export interface PurchaseReservedInstanceOfferingResponse {
|
|
81
|
+
ReservedInstanceId?: string;
|
|
82
|
+
ReservationName?: string;
|
|
83
|
+
}
|
|
84
|
+
export interface RejectInboundConnectionRequest {
|
|
85
|
+
ConnectionId: string | undefined;
|
|
86
|
+
}
|
|
40
87
|
export interface RejectInboundConnectionResponse {
|
|
41
88
|
Connection?: InboundConnection;
|
|
42
89
|
}
|
|
@@ -135,10 +182,29 @@ export interface UpdatePackageRequest {
|
|
|
135
182
|
PackageSource: PackageSource | undefined;
|
|
136
183
|
PackageDescription?: string;
|
|
137
184
|
CommitMessage?: string;
|
|
185
|
+
PackageConfiguration?: PackageConfiguration;
|
|
186
|
+
PackageEncryptionOptions?: PackageEncryptionOptions;
|
|
138
187
|
}
|
|
139
188
|
export interface UpdatePackageResponse {
|
|
140
189
|
PackageDetails?: PackageDetails;
|
|
141
190
|
}
|
|
191
|
+
export declare const PackageScopeOperationEnum: {
|
|
192
|
+
readonly ADD: "ADD";
|
|
193
|
+
readonly OVERRIDE: "OVERRIDE";
|
|
194
|
+
readonly REMOVE: "REMOVE";
|
|
195
|
+
};
|
|
196
|
+
export type PackageScopeOperationEnum =
|
|
197
|
+
(typeof PackageScopeOperationEnum)[keyof typeof PackageScopeOperationEnum];
|
|
198
|
+
export interface UpdatePackageScopeRequest {
|
|
199
|
+
PackageID: string | undefined;
|
|
200
|
+
Operation: PackageScopeOperationEnum | undefined;
|
|
201
|
+
PackageUserList: string[] | undefined;
|
|
202
|
+
}
|
|
203
|
+
export interface UpdatePackageScopeResponse {
|
|
204
|
+
PackageID?: string;
|
|
205
|
+
Operation?: PackageScopeOperationEnum;
|
|
206
|
+
PackageUserList?: string[];
|
|
207
|
+
}
|
|
142
208
|
export declare class SlotNotAvailableException extends __BaseException {
|
|
143
209
|
readonly name: "SlotNotAvailableException";
|
|
144
210
|
readonly $fault: "client";
|
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
AssociatePackageCommandInput,
|
|
20
20
|
AssociatePackageCommandOutput,
|
|
21
21
|
} from "../commands/AssociatePackageCommand";
|
|
22
|
+
import {
|
|
23
|
+
AssociatePackagesCommandInput,
|
|
24
|
+
AssociatePackagesCommandOutput,
|
|
25
|
+
} from "../commands/AssociatePackagesCommand";
|
|
22
26
|
import {
|
|
23
27
|
AuthorizeVpcEndpointAccessCommandInput,
|
|
24
28
|
AuthorizeVpcEndpointAccessCommandOutput,
|
|
@@ -143,6 +147,10 @@ import {
|
|
|
143
147
|
DissociatePackageCommandInput,
|
|
144
148
|
DissociatePackageCommandOutput,
|
|
145
149
|
} from "../commands/DissociatePackageCommand";
|
|
150
|
+
import {
|
|
151
|
+
DissociatePackagesCommandInput,
|
|
152
|
+
DissociatePackagesCommandOutput,
|
|
153
|
+
} from "../commands/DissociatePackagesCommand";
|
|
146
154
|
import {
|
|
147
155
|
GetApplicationCommandInput,
|
|
148
156
|
GetApplicationCommandOutput,
|
|
@@ -263,6 +271,10 @@ import {
|
|
|
263
271
|
UpdatePackageCommandInput,
|
|
264
272
|
UpdatePackageCommandOutput,
|
|
265
273
|
} from "../commands/UpdatePackageCommand";
|
|
274
|
+
import {
|
|
275
|
+
UpdatePackageScopeCommandInput,
|
|
276
|
+
UpdatePackageScopeCommandOutput,
|
|
277
|
+
} from "../commands/UpdatePackageScopeCommand";
|
|
266
278
|
import {
|
|
267
279
|
UpdateScheduledActionCommandInput,
|
|
268
280
|
UpdateScheduledActionCommandOutput,
|
|
@@ -291,6 +303,10 @@ export declare const se_AssociatePackageCommand: (
|
|
|
291
303
|
input: AssociatePackageCommandInput,
|
|
292
304
|
context: __SerdeContext
|
|
293
305
|
) => Promise<__HttpRequest>;
|
|
306
|
+
export declare const se_AssociatePackagesCommand: (
|
|
307
|
+
input: AssociatePackagesCommandInput,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<__HttpRequest>;
|
|
294
310
|
export declare const se_AuthorizeVpcEndpointAccessCommand: (
|
|
295
311
|
input: AuthorizeVpcEndpointAccessCommandInput,
|
|
296
312
|
context: __SerdeContext
|
|
@@ -415,6 +431,10 @@ export declare const se_DissociatePackageCommand: (
|
|
|
415
431
|
input: DissociatePackageCommandInput,
|
|
416
432
|
context: __SerdeContext
|
|
417
433
|
) => Promise<__HttpRequest>;
|
|
434
|
+
export declare const se_DissociatePackagesCommand: (
|
|
435
|
+
input: DissociatePackagesCommandInput,
|
|
436
|
+
context: __SerdeContext
|
|
437
|
+
) => Promise<__HttpRequest>;
|
|
418
438
|
export declare const se_GetApplicationCommand: (
|
|
419
439
|
input: GetApplicationCommandInput,
|
|
420
440
|
context: __SerdeContext
|
|
@@ -535,6 +555,10 @@ export declare const se_UpdatePackageCommand: (
|
|
|
535
555
|
input: UpdatePackageCommandInput,
|
|
536
556
|
context: __SerdeContext
|
|
537
557
|
) => Promise<__HttpRequest>;
|
|
558
|
+
export declare const se_UpdatePackageScopeCommand: (
|
|
559
|
+
input: UpdatePackageScopeCommandInput,
|
|
560
|
+
context: __SerdeContext
|
|
561
|
+
) => Promise<__HttpRequest>;
|
|
538
562
|
export declare const se_UpdateScheduledActionCommand: (
|
|
539
563
|
input: UpdateScheduledActionCommandInput,
|
|
540
564
|
context: __SerdeContext
|
|
@@ -563,6 +587,10 @@ export declare const de_AssociatePackageCommand: (
|
|
|
563
587
|
output: __HttpResponse,
|
|
564
588
|
context: __SerdeContext
|
|
565
589
|
) => Promise<AssociatePackageCommandOutput>;
|
|
590
|
+
export declare const de_AssociatePackagesCommand: (
|
|
591
|
+
output: __HttpResponse,
|
|
592
|
+
context: __SerdeContext
|
|
593
|
+
) => Promise<AssociatePackagesCommandOutput>;
|
|
566
594
|
export declare const de_AuthorizeVpcEndpointAccessCommand: (
|
|
567
595
|
output: __HttpResponse,
|
|
568
596
|
context: __SerdeContext
|
|
@@ -687,6 +715,10 @@ export declare const de_DissociatePackageCommand: (
|
|
|
687
715
|
output: __HttpResponse,
|
|
688
716
|
context: __SerdeContext
|
|
689
717
|
) => Promise<DissociatePackageCommandOutput>;
|
|
718
|
+
export declare const de_DissociatePackagesCommand: (
|
|
719
|
+
output: __HttpResponse,
|
|
720
|
+
context: __SerdeContext
|
|
721
|
+
) => Promise<DissociatePackagesCommandOutput>;
|
|
690
722
|
export declare const de_GetApplicationCommand: (
|
|
691
723
|
output: __HttpResponse,
|
|
692
724
|
context: __SerdeContext
|
|
@@ -807,6 +839,10 @@ export declare const de_UpdatePackageCommand: (
|
|
|
807
839
|
output: __HttpResponse,
|
|
808
840
|
context: __SerdeContext
|
|
809
841
|
) => Promise<UpdatePackageCommandOutput>;
|
|
842
|
+
export declare const de_UpdatePackageScopeCommand: (
|
|
843
|
+
output: __HttpResponse,
|
|
844
|
+
context: __SerdeContext
|
|
845
|
+
) => Promise<UpdatePackageScopeCommandOutput>;
|
|
810
846
|
export declare const de_UpdateScheduledActionCommand: (
|
|
811
847
|
output: __HttpResponse,
|
|
812
848
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-opensearch",
|
|
3
3
|
"description": "AWS SDK for JavaScript Opensearch Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.689.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-opensearch",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.687.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.687.0",
|
|
25
25
|
"@aws-sdk/core": "3.686.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.687.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.687.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.687.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|