@aws-sdk/client-opensearch 3.856.0 → 3.858.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/dist-cjs/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +1 -0
- package/dist-types/commands/AddDataSourceCommand.d.ts +1 -2
- package/dist-types/commands/AddDirectQueryDataSourceCommand.d.ts +4 -2
- package/dist-types/commands/AssociatePackageCommand.d.ts +2 -1
- package/dist-types/commands/AssociatePackagesCommand.d.ts +1 -2
- package/dist-types/commands/CreateApplicationCommand.d.ts +1 -2
- package/dist-types/commands/CreateDomainCommand.d.ts +10 -0
- package/dist-types/commands/DeleteDataSourceCommand.d.ts +1 -2
- package/dist-types/commands/DeleteDirectQueryDataSourceCommand.d.ts +3 -1
- package/dist-types/commands/DeleteDomainCommand.d.ts +5 -0
- package/dist-types/commands/DescribeDomainChangeProgressCommand.d.ts +1 -2
- package/dist-types/commands/DescribeDomainCommand.d.ts +5 -0
- package/dist-types/commands/DescribeDomainConfigCommand.d.ts +5 -0
- package/dist-types/commands/DescribeDomainHealthCommand.d.ts +1 -2
- package/dist-types/commands/DescribeDomainsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeDryRunProgressCommand.d.ts +7 -2
- package/dist-types/commands/DescribeReservedInstanceOfferingsCommand.d.ts +1 -2
- package/dist-types/commands/GetDirectQueryDataSourceCommand.d.ts +4 -2
- package/dist-types/commands/GetPackageVersionHistoryCommand.d.ts +2 -3
- package/dist-types/commands/ListDataSourcesCommand.d.ts +3 -3
- package/dist-types/commands/ListDirectQueryDataSourcesCommand.d.ts +4 -2
- package/dist-types/commands/ListDomainNamesCommand.d.ts +2 -1
- package/dist-types/commands/ListDomainsForPackageCommand.d.ts +1 -2
- package/dist-types/commands/ListScheduledActionsCommand.d.ts +1 -1
- package/dist-types/commands/StartDomainMaintenanceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateDirectQueryDataSourceCommand.d.ts +4 -2
- package/dist-types/commands/UpdateDomainConfigCommand.d.ts +12 -1
- package/dist-types/commands/UpdatePackageScopeCommand.d.ts +1 -2
- package/dist-types/commands/UpdateScheduledActionCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +363 -380
- package/dist-types/models/models_1.d.ts +101 -57
- package/dist-types/ts3.4/commands/ListDomainNamesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListDomainsForPackageCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +12 -8
- package/dist-types/ts3.4/models/models_1.d.ts +9 -0
- package/package.json +11 -11
|
@@ -1,9 +1,45 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { ActionSeverity, ActionStatus, ActionType, AdvancedSecurityOptionsInput, AIMLOptionsInput, AppConfig, AuthorizedPrincipal, AutoTuneOptions, AWSServicePrincipal, ChangeProgressDetails, ClusterConfig, CognitoOptions, DataSource, DataSourceStatus, DataSourceType, DirectQueryDataSourceType, DomainConfig, DomainEndpointOptions, DomainPackageDetails, DryRunProgressStatus, DryRunResults, EBSOptions, EncryptionAtRestOptions, IamIdentityCenterOptions, IdentityCenterOptionsInput, InboundConnection, IPAddressType, LogPublishingOption, LogType, MaintenanceType, NodeToNodeEncryptionOptions, OffPeakWindowOptions, OpenSearchPartitionInstanceType, PackageConfiguration, PackageDetails, PackageEncryptionOptions, PackageSource, ServiceSoftwareOptions, SnapshotOptions, SoftwareUpdateOptions, Tag, VpcEndpoint, VpcEndpointSummary, VPCOptions } from "./models_0";
|
|
2
|
+
import { ActionSeverity, ActionStatus, ActionType, AdvancedSecurityOptionsInput, AIMLOptionsInput, AppConfig, AuthorizedPrincipal, AutoTuneOptions, AWSServicePrincipal, ChangeProgressDetails, ClusterConfig, CognitoOptions, DataSource, DataSourceStatus, DataSourceType, DirectQueryDataSourceType, DomainConfig, DomainEndpointOptions, DomainInfo, DomainPackageDetails, DryRunProgressStatus, DryRunResults, EBSOptions, EncryptionAtRestOptions, IamIdentityCenterOptions, IdentityCenterOptionsInput, InboundConnection, IPAddressType, LogPublishingOption, LogType, MaintenanceType, NodeToNodeEncryptionOptions, OffPeakWindowOptions, OpenSearchPartitionInstanceType, PackageConfiguration, PackageDetails, PackageEncryptionOptions, PackageSource, ServiceSoftwareOptions, SnapshotOptions, SoftwareUpdateOptions, Tag, VpcEndpoint, VpcEndpointSummary, VPCOptions } from "./models_0";
|
|
3
3
|
import { OpenSearchServiceException as __BaseException } from "./OpenSearchServiceException";
|
|
4
4
|
/**
|
|
5
|
-
* <p>
|
|
6
|
-
*
|
|
5
|
+
* <p>The results of a <code>ListDomainNames</code> operation. Contains the names of all domains
|
|
6
|
+
* owned by this account and their respective engine types.</p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface ListDomainNamesResponse {
|
|
10
|
+
/**
|
|
11
|
+
* <p>The names of all OpenSearch Service domains owned by the current user and their respective
|
|
12
|
+
* engine types.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
DomainNames?: DomainInfo[] | undefined;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* <p>Container for the request parameters to the <code>ListDomainsForPackage</code> operation.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export interface ListDomainsForPackageRequest {
|
|
22
|
+
/**
|
|
23
|
+
* <p>The unique identifier of the package for which to list associated domains.</p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
PackageID: string | undefined;
|
|
27
|
+
/**
|
|
28
|
+
* <p>An optional parameter that specifies the maximum number of results to return. You can use
|
|
29
|
+
* <code>nextToken</code> to get the next page of results.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
MaxResults?: number | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* <p>If your initial <code>ListDomainsForPackage</code> operation returns a
|
|
35
|
+
* <code>nextToken</code>, you can include the returned <code>nextToken</code> in subsequent
|
|
36
|
+
* <code>ListDomainsForPackage</code> operations, which returns results in the next page.</p>
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
NextToken?: string | undefined;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* <p>Container for the response parameters to the <code>ListDomainsForPackage</code> operation.</p>
|
|
7
43
|
* @public
|
|
8
44
|
*/
|
|
9
45
|
export interface ListDomainsForPackageResponse {
|
|
@@ -14,8 +50,8 @@ export interface ListDomainsForPackageResponse {
|
|
|
14
50
|
DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
|
|
15
51
|
/**
|
|
16
52
|
* <p>When <code>nextToken</code> is returned, there are more results available. The value of
|
|
17
|
-
* <code>nextToken</code> is a unique pagination token for each page. Send the request again using
|
|
18
|
-
*
|
|
53
|
+
* <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
|
|
54
|
+
* returned token to retrieve the next page.</p>
|
|
19
55
|
* @public
|
|
20
56
|
*/
|
|
21
57
|
NextToken?: string | undefined;
|
|
@@ -25,8 +61,8 @@ export interface ListDomainsForPackageResponse {
|
|
|
25
61
|
*/
|
|
26
62
|
export interface ListInstanceTypeDetailsRequest {
|
|
27
63
|
/**
|
|
28
|
-
* <p>The version of OpenSearch or Elasticsearch, in the format Elasticsearch_X.Y or
|
|
29
|
-
*
|
|
64
|
+
* <p>The version of OpenSearch or Elasticsearch, in the format Elasticsearch_X.Y or OpenSearch_X.Y.
|
|
65
|
+
* Defaults to the latest version of OpenSearch.</p>
|
|
30
66
|
* @public
|
|
31
67
|
*/
|
|
32
68
|
EngineVersion: string | undefined;
|
|
@@ -120,15 +156,14 @@ export interface ListInstanceTypeDetailsResponse {
|
|
|
120
156
|
InstanceTypeDetails?: InstanceTypeDetails[] | undefined;
|
|
121
157
|
/**
|
|
122
158
|
* <p>When <code>nextToken</code> is returned, there are more results available. The value of
|
|
123
|
-
* <code>nextToken</code> is a unique pagination token for each page. Send the request again using
|
|
124
|
-
*
|
|
159
|
+
* <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
|
|
160
|
+
* returned token to retrieve the next page.</p>
|
|
125
161
|
* @public
|
|
126
162
|
*/
|
|
127
163
|
NextToken?: string | undefined;
|
|
128
164
|
}
|
|
129
165
|
/**
|
|
130
|
-
* <p>Container for the request parameters to the <code>ListPackagesForDomain</code>
|
|
131
|
-
* operation.</p>
|
|
166
|
+
* <p>Container for the request parameters to the <code>ListPackagesForDomain</code> operation.</p>
|
|
132
167
|
* @public
|
|
133
168
|
*/
|
|
134
169
|
export interface ListPackagesForDomainRequest {
|
|
@@ -152,8 +187,7 @@ export interface ListPackagesForDomainRequest {
|
|
|
152
187
|
NextToken?: string | undefined;
|
|
153
188
|
}
|
|
154
189
|
/**
|
|
155
|
-
* <p>Container for the response parameters to the <code>ListPackagesForDomain</code>
|
|
156
|
-
* operation.</p>
|
|
190
|
+
* <p>Container for the response parameters to the <code>ListPackagesForDomain</code> operation.</p>
|
|
157
191
|
* @public
|
|
158
192
|
*/
|
|
159
193
|
export interface ListPackagesForDomainResponse {
|
|
@@ -164,8 +198,8 @@ export interface ListPackagesForDomainResponse {
|
|
|
164
198
|
DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
|
|
165
199
|
/**
|
|
166
200
|
* <p>When <code>nextToken</code> is returned, there are more results available. The value of
|
|
167
|
-
* <code>nextToken</code> is a unique pagination token for each page. Send the request again using
|
|
168
|
-
*
|
|
201
|
+
* <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
|
|
202
|
+
* returned token to retrieve the next page.</p>
|
|
169
203
|
* @public
|
|
170
204
|
*/
|
|
171
205
|
NextToken?: string | undefined;
|
|
@@ -181,14 +215,14 @@ export interface ListScheduledActionsRequest {
|
|
|
181
215
|
DomainName: string | undefined;
|
|
182
216
|
/**
|
|
183
217
|
* <p>An optional parameter that specifies the maximum number of results to return. You can use
|
|
184
|
-
*
|
|
218
|
+
* <code>nextToken</code> to get the next page of results.</p>
|
|
185
219
|
* @public
|
|
186
220
|
*/
|
|
187
221
|
MaxResults?: number | undefined;
|
|
188
222
|
/**
|
|
189
|
-
* <p>If your initial <code>ListScheduledActions</code> operation returns a
|
|
190
|
-
*
|
|
191
|
-
*
|
|
223
|
+
* <p>If your initial <code>ListScheduledActions</code> operation returns a <code>nextToken</code>, you
|
|
224
|
+
* can include the returned <code>nextToken</code> in subsequent <code>ListScheduledActions</code>
|
|
225
|
+
* operations, which returns results in the next page.</p>
|
|
192
226
|
* @public
|
|
193
227
|
*/
|
|
194
228
|
NextToken?: string | undefined;
|
|
@@ -239,8 +273,7 @@ export interface ScheduledAction {
|
|
|
239
273
|
*/
|
|
240
274
|
Description?: string | undefined;
|
|
241
275
|
/**
|
|
242
|
-
* <p>Whether the action was scheduled manually (<code>CUSTOMER</code>, or by OpenSearch Service
|
|
243
|
-
* automatically (<code>SYSTEM</code>).</p>
|
|
276
|
+
* <p>Whether the action was scheduled manually (<code>CUSTOMER</code>, or by OpenSearch Service automatically (<code>SYSTEM</code>).</p>
|
|
244
277
|
* @public
|
|
245
278
|
*/
|
|
246
279
|
ScheduledBy?: ScheduledBy | undefined;
|
|
@@ -271,8 +304,8 @@ export interface ListScheduledActionsResponse {
|
|
|
271
304
|
ScheduledActions?: ScheduledAction[] | undefined;
|
|
272
305
|
/**
|
|
273
306
|
* <p>When <code>nextToken</code> is returned, there are more results available. The value of
|
|
274
|
-
*
|
|
275
|
-
*
|
|
307
|
+
* <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
|
|
308
|
+
* returned token to retrieve the next page.</p>
|
|
276
309
|
* @public
|
|
277
310
|
*/
|
|
278
311
|
NextToken?: string | undefined;
|
|
@@ -334,8 +367,8 @@ export interface ListVersionsResponse {
|
|
|
334
367
|
Versions?: string[] | undefined;
|
|
335
368
|
/**
|
|
336
369
|
* <p>When <code>nextToken</code> is returned, there are more results available. The value of
|
|
337
|
-
* <code>nextToken</code> is a unique pagination token for each page. Send the request again using
|
|
338
|
-
*
|
|
370
|
+
* <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
|
|
371
|
+
* returned token to retrieve the next page.</p>
|
|
339
372
|
* @public
|
|
340
373
|
*/
|
|
341
374
|
NextToken?: string | undefined;
|
|
@@ -369,8 +402,8 @@ export interface ListVpcEndpointAccessResponse {
|
|
|
369
402
|
AuthorizedPrincipalList: AuthorizedPrincipal[] | undefined;
|
|
370
403
|
/**
|
|
371
404
|
* <p>When <code>nextToken</code> is returned, there are more results available. The value of
|
|
372
|
-
* <code>nextToken</code> is a unique pagination token for each page. Send the request again using
|
|
373
|
-
*
|
|
405
|
+
* <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
|
|
406
|
+
* returned token to retrieve the next page.</p>
|
|
374
407
|
* @public
|
|
375
408
|
*/
|
|
376
409
|
NextToken: string | undefined;
|
|
@@ -398,8 +431,8 @@ export interface ListVpcEndpointsResponse {
|
|
|
398
431
|
VpcEndpointSummaryList: VpcEndpointSummary[] | undefined;
|
|
399
432
|
/**
|
|
400
433
|
* <p>When <code>nextToken</code> is returned, there are more results available. The value of
|
|
401
|
-
* <code>nextToken</code> is a unique pagination token for each page. Send the request again using
|
|
402
|
-
*
|
|
434
|
+
* <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
|
|
435
|
+
* returned token to retrieve the next page.</p>
|
|
403
436
|
* @public
|
|
404
437
|
*/
|
|
405
438
|
NextToken: string | undefined;
|
|
@@ -432,8 +465,8 @@ export interface ListVpcEndpointsForDomainResponse {
|
|
|
432
465
|
VpcEndpointSummaryList: VpcEndpointSummary[] | undefined;
|
|
433
466
|
/**
|
|
434
467
|
* <p>When <code>nextToken</code> is returned, there are more results available. The value of
|
|
435
|
-
* <code>nextToken</code> is a unique pagination token for each page. Send the request again using
|
|
436
|
-
*
|
|
468
|
+
* <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
|
|
469
|
+
* returned token to retrieve the next page.</p>
|
|
437
470
|
* @public
|
|
438
471
|
*/
|
|
439
472
|
NextToken: string | undefined;
|
|
@@ -477,8 +510,7 @@ export interface PurchaseReservedInstanceOfferingResponse {
|
|
|
477
510
|
ReservationName?: string | undefined;
|
|
478
511
|
}
|
|
479
512
|
/**
|
|
480
|
-
* <p>Container for the request parameters to the <code>RejectInboundConnection</code>
|
|
481
|
-
* operation.</p>
|
|
513
|
+
* <p>Container for the request parameters to the <code>RejectInboundConnection</code> operation.</p>
|
|
482
514
|
* @public
|
|
483
515
|
*/
|
|
484
516
|
export interface RejectInboundConnectionRequest {
|
|
@@ -542,7 +574,8 @@ export interface RevokeVpcEndpointAccessRequest {
|
|
|
542
574
|
export interface RevokeVpcEndpointAccessResponse {
|
|
543
575
|
}
|
|
544
576
|
/**
|
|
545
|
-
* <p>Container for the parameters to the <code>StartDomainMaintenance</code>
|
|
577
|
+
* <p>Container for the parameters to the <code>StartDomainMaintenance</code>
|
|
578
|
+
* operation.</p>
|
|
546
579
|
* @public
|
|
547
580
|
*/
|
|
548
581
|
export interface StartDomainMaintenanceRequest {
|
|
@@ -563,8 +596,7 @@ export interface StartDomainMaintenanceRequest {
|
|
|
563
596
|
NodeId?: string | undefined;
|
|
564
597
|
}
|
|
565
598
|
/**
|
|
566
|
-
* <p>The result of a <code>StartDomainMaintenance</code> request that information about the
|
|
567
|
-
* requested action. </p>
|
|
599
|
+
* <p>The result of a <code>StartDomainMaintenance</code> request that information about the requested action. </p>
|
|
568
600
|
* @public
|
|
569
601
|
*/
|
|
570
602
|
export interface StartDomainMaintenanceResponse {
|
|
@@ -677,8 +709,9 @@ export interface UpdateApplicationResponse {
|
|
|
677
709
|
*/
|
|
678
710
|
name?: string | undefined;
|
|
679
711
|
/**
|
|
680
|
-
* <p>The Amazon Resource Name (ARN) of the domain. See <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/index.html">Identifiers for IAM Entities
|
|
681
|
-
*
|
|
712
|
+
* <p>The Amazon Resource Name (ARN) of the domain. See <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/index.html">Identifiers for IAM Entities
|
|
713
|
+
* </a> in <i>Using Amazon Web Services Identity and Access Management</i> for more information.
|
|
714
|
+
* </p>
|
|
682
715
|
* @public
|
|
683
716
|
*/
|
|
684
717
|
arn?: string | undefined;
|
|
@@ -709,7 +742,8 @@ export interface UpdateApplicationResponse {
|
|
|
709
742
|
lastUpdatedAt?: Date | undefined;
|
|
710
743
|
}
|
|
711
744
|
/**
|
|
712
|
-
* <p>Container for the parameters to the <code>UpdateDataSource</code>
|
|
745
|
+
* <p>Container for the parameters to the <code>UpdateDataSource</code>
|
|
746
|
+
* operation.</p>
|
|
713
747
|
* @public
|
|
714
748
|
*/
|
|
715
749
|
export interface UpdateDataSourceRequest {
|
|
@@ -755,26 +789,34 @@ export interface UpdateDataSourceResponse {
|
|
|
755
789
|
*/
|
|
756
790
|
export interface UpdateDirectQueryDataSourceRequest {
|
|
757
791
|
/**
|
|
758
|
-
* <p>
|
|
759
|
-
*
|
|
792
|
+
* <p>
|
|
793
|
+
* A unique, user-defined label to identify the data
|
|
794
|
+
* source within your OpenSearch Service environment.
|
|
795
|
+
* </p>
|
|
760
796
|
* @public
|
|
761
797
|
*/
|
|
762
798
|
DataSourceName: string | undefined;
|
|
763
799
|
/**
|
|
764
|
-
* <p>
|
|
765
|
-
*
|
|
800
|
+
* <p>
|
|
801
|
+
* The supported Amazon Web Services service that you want to use as the source for
|
|
802
|
+
* direct queries in OpenSearch Service.
|
|
803
|
+
* </p>
|
|
766
804
|
* @public
|
|
767
805
|
*/
|
|
768
806
|
DataSourceType: DirectQueryDataSourceType | undefined;
|
|
769
807
|
/**
|
|
770
|
-
* <p>
|
|
808
|
+
* <p>
|
|
809
|
+
* An optional text field for providing additional context and
|
|
810
|
+
* details about the data source.
|
|
771
811
|
* </p>
|
|
772
812
|
* @public
|
|
773
813
|
*/
|
|
774
814
|
Description?: string | undefined;
|
|
775
815
|
/**
|
|
776
|
-
* <p>
|
|
777
|
-
*
|
|
816
|
+
* <p>
|
|
817
|
+
* A list of Amazon Resource Names (ARNs) for the OpenSearch
|
|
818
|
+
* collections that are associated with the direct query data source.
|
|
819
|
+
* </p>
|
|
778
820
|
* @public
|
|
779
821
|
*/
|
|
780
822
|
OpenSearchArns: string[] | undefined;
|
|
@@ -784,7 +826,9 @@ export interface UpdateDirectQueryDataSourceRequest {
|
|
|
784
826
|
*/
|
|
785
827
|
export interface UpdateDirectQueryDataSourceResponse {
|
|
786
828
|
/**
|
|
787
|
-
* <p>
|
|
829
|
+
* <p>
|
|
830
|
+
* The unique, system-generated identifier that represents the data source.
|
|
831
|
+
* </p>
|
|
788
832
|
* @public
|
|
789
833
|
*/
|
|
790
834
|
DataSourceArn?: string | undefined;
|
|
@@ -823,8 +867,8 @@ export interface UpdateDomainConfigRequest {
|
|
|
823
867
|
*/
|
|
824
868
|
EBSOptions?: EBSOptions | undefined;
|
|
825
869
|
/**
|
|
826
|
-
* <p>Option to set the time, in UTC format, for the daily automated snapshot. Default value is
|
|
827
|
-
*
|
|
870
|
+
* <p>Option to set the time, in UTC format, for the daily automated snapshot. Default value is <code>0</code> hours.
|
|
871
|
+
* </p>
|
|
828
872
|
* @public
|
|
829
873
|
*/
|
|
830
874
|
SnapshotOptions?: SnapshotOptions | undefined;
|
|
@@ -863,7 +907,7 @@ export interface UpdateDomainConfigRequest {
|
|
|
863
907
|
* <code>"indices.query.bool.max_clause_count": "1024"</code> - Note the use of a string
|
|
864
908
|
* rather than a boolean. Specifies the maximum number of clauses allowed in a Lucene boolean
|
|
865
909
|
* query. Default is 1,024. Queries with more than the permitted number of clauses result in a
|
|
866
|
-
*
|
|
910
|
+
* <code>TooManyClauses</code> error.</p>
|
|
867
911
|
* </li>
|
|
868
912
|
* </ul>
|
|
869
913
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomain-configure-advanced-options">Advanced cluster parameters</a>.</p>
|
|
@@ -876,9 +920,10 @@ export interface UpdateDomainConfigRequest {
|
|
|
876
920
|
*/
|
|
877
921
|
AccessPolicies?: string | undefined;
|
|
878
922
|
/**
|
|
879
|
-
* <p>Specify either dual stack or IPv4 as your IP address type. Dual stack allows you to share
|
|
880
|
-
*
|
|
881
|
-
* address type is currently set to dual stack, you can't change it.
|
|
923
|
+
* <p>Specify either dual stack or IPv4 as your IP address type. Dual stack allows you to share domain resources across
|
|
924
|
+
* IPv4 and IPv6 address types, and is the recommended option.
|
|
925
|
+
* If your IP address type is currently set to dual stack, you can't change it.
|
|
926
|
+
* </p>
|
|
882
927
|
* @public
|
|
883
928
|
*/
|
|
884
929
|
IPAddressType?: IPAddressType | undefined;
|
|
@@ -930,8 +975,8 @@ export interface UpdateDomainConfigRequest {
|
|
|
930
975
|
* <ul>
|
|
931
976
|
* <li>
|
|
932
977
|
* <p>
|
|
933
|
-
* <code>Basic</code> only returns the type of deployment (blue/green or dynamic) that the
|
|
934
|
-
*
|
|
978
|
+
* <code>Basic</code> only returns the type of deployment (blue/green or dynamic) that the update
|
|
979
|
+
* will cause.</p>
|
|
935
980
|
* </li>
|
|
936
981
|
* <li>
|
|
937
982
|
* <p>
|
|
@@ -1114,8 +1159,7 @@ export interface UpdateScheduledActionRequest {
|
|
|
1114
1159
|
ActionID: string | undefined;
|
|
1115
1160
|
/**
|
|
1116
1161
|
* <p>The type of action to reschedule. Can be one of <code>SERVICE_SOFTWARE_UPDATE</code>,
|
|
1117
|
-
*
|
|
1118
|
-
* send a <a href="https://docs.aws.amazon.com/opensearch-service/latest/APIReference/API_ListScheduledActions.html">ListScheduledActions</a> request.</p>
|
|
1162
|
+
* <code>JVM_HEAP_SIZE_TUNING</code>, or <code>JVM_YOUNG_GEN_TUNING</code>. To retrieve this value, send a <a href="https://docs.aws.amazon.com/opensearch-service/latest/APIReference/API_ListScheduledActions.html">ListScheduledActions</a> request.</p>
|
|
1119
1163
|
* @public
|
|
1120
1164
|
*/
|
|
1121
1165
|
ActionType: ActionType | undefined;
|
|
@@ -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
|
-
ListDomainNamesResponse,
|
|
6
|
-
} from "../models/models_0";
|
|
3
|
+
import { ListDomainNamesRequest } from "../models/models_0";
|
|
4
|
+
import { ListDomainNamesResponse } from "../models/models_1";
|
|
7
5
|
import {
|
|
8
6
|
OpenSearchClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -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
|
+
ListDomainsForPackageRequest,
|
|
5
|
+
ListDomainsForPackageResponse,
|
|
6
|
+
} from "../models/models_1";
|
|
5
7
|
import {
|
|
6
8
|
OpenSearchClientResolvedConfig,
|
|
7
9
|
ServiceInputTypes,
|
|
@@ -223,6 +223,11 @@ export interface AdvancedOptionsStatus {
|
|
|
223
223
|
Options: Record<string, string> | undefined;
|
|
224
224
|
Status: OptionStatus | undefined;
|
|
225
225
|
}
|
|
226
|
+
export interface IAMFederationOptionsOutput {
|
|
227
|
+
Enabled?: boolean | undefined;
|
|
228
|
+
SubjectKey?: string | undefined;
|
|
229
|
+
RolesKey?: string | undefined;
|
|
230
|
+
}
|
|
226
231
|
export interface JWTOptionsOutput {
|
|
227
232
|
Enabled?: boolean | undefined;
|
|
228
233
|
SubjectKey?: string | undefined;
|
|
@@ -245,9 +250,15 @@ export interface AdvancedSecurityOptions {
|
|
|
245
250
|
InternalUserDatabaseEnabled?: boolean | undefined;
|
|
246
251
|
SAMLOptions?: SAMLOptionsOutput | undefined;
|
|
247
252
|
JWTOptions?: JWTOptionsOutput | undefined;
|
|
253
|
+
IAMFederationOptions?: IAMFederationOptionsOutput | undefined;
|
|
248
254
|
AnonymousAuthDisableDate?: Date | undefined;
|
|
249
255
|
AnonymousAuthEnabled?: boolean | undefined;
|
|
250
256
|
}
|
|
257
|
+
export interface IAMFederationOptionsInput {
|
|
258
|
+
Enabled?: boolean | undefined;
|
|
259
|
+
SubjectKey?: string | undefined;
|
|
260
|
+
RolesKey?: string | undefined;
|
|
261
|
+
}
|
|
251
262
|
export interface JWTOptionsInput {
|
|
252
263
|
Enabled?: boolean | undefined;
|
|
253
264
|
SubjectKey?: string | undefined;
|
|
@@ -274,6 +285,7 @@ export interface AdvancedSecurityOptionsInput {
|
|
|
274
285
|
MasterUserOptions?: MasterUserOptions | undefined;
|
|
275
286
|
SAMLOptions?: SAMLOptionsInput | undefined;
|
|
276
287
|
JWTOptions?: JWTOptionsInput | undefined;
|
|
288
|
+
IAMFederationOptions?: IAMFederationOptionsInput | undefined;
|
|
277
289
|
AnonymousAuthEnabled?: boolean | undefined;
|
|
278
290
|
}
|
|
279
291
|
export interface AdvancedSecurityOptionsStatus {
|
|
@@ -1823,14 +1835,6 @@ export interface DomainInfo {
|
|
|
1823
1835
|
DomainName?: string | undefined;
|
|
1824
1836
|
EngineType?: EngineType | undefined;
|
|
1825
1837
|
}
|
|
1826
|
-
export interface ListDomainNamesResponse {
|
|
1827
|
-
DomainNames?: DomainInfo[] | undefined;
|
|
1828
|
-
}
|
|
1829
|
-
export interface ListDomainsForPackageRequest {
|
|
1830
|
-
PackageID: string | undefined;
|
|
1831
|
-
MaxResults?: number | undefined;
|
|
1832
|
-
NextToken?: string | undefined;
|
|
1833
|
-
}
|
|
1834
1838
|
export declare const MasterUserOptionsFilterSensitiveLog: (
|
|
1835
1839
|
obj: MasterUserOptions
|
|
1836
1840
|
) => any;
|
|
@@ -18,6 +18,7 @@ import {
|
|
|
18
18
|
DirectQueryDataSourceType,
|
|
19
19
|
DomainConfig,
|
|
20
20
|
DomainEndpointOptions,
|
|
21
|
+
DomainInfo,
|
|
21
22
|
DomainPackageDetails,
|
|
22
23
|
DryRunProgressStatus,
|
|
23
24
|
DryRunResults,
|
|
@@ -46,6 +47,14 @@ import {
|
|
|
46
47
|
VPCOptions,
|
|
47
48
|
} from "./models_0";
|
|
48
49
|
import { OpenSearchServiceException as __BaseException } from "./OpenSearchServiceException";
|
|
50
|
+
export interface ListDomainNamesResponse {
|
|
51
|
+
DomainNames?: DomainInfo[] | undefined;
|
|
52
|
+
}
|
|
53
|
+
export interface ListDomainsForPackageRequest {
|
|
54
|
+
PackageID: string | undefined;
|
|
55
|
+
MaxResults?: number | undefined;
|
|
56
|
+
NextToken?: string | undefined;
|
|
57
|
+
}
|
|
49
58
|
export interface ListDomainsForPackageResponse {
|
|
50
59
|
DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
|
|
51
60
|
NextToken?: string | undefined;
|
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.858.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,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.858.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.858.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.840.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.840.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.840.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.858.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.840.0",
|
|
30
30
|
"@aws-sdk/types": "3.840.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.848.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.840.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.858.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.4",
|
|
35
|
-
"@smithy/core": "^3.7.
|
|
35
|
+
"@smithy/core": "^3.7.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.1.0",
|
|
37
37
|
"@smithy/hash-node": "^4.0.4",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.4",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.4",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
41
|
-
"@smithy/middleware-retry": "^4.1.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.17",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.18",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.8",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.4",
|
|
44
44
|
"@smithy/node-config-provider": "^4.1.3",
|
|
45
45
|
"@smithy/node-http-handler": "^4.1.0",
|
|
46
46
|
"@smithy/protocol-http": "^5.1.2",
|
|
47
|
-
"@smithy/smithy-client": "^4.4.
|
|
47
|
+
"@smithy/smithy-client": "^4.4.9",
|
|
48
48
|
"@smithy/types": "^4.3.1",
|
|
49
49
|
"@smithy/url-parser": "^4.0.4",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.25",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.25",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.6",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.4",
|
|
57
57
|
"@smithy/util-retry": "^4.0.6",
|