@aws-sdk/client-opensearch 3.1034.0 → 3.1036.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 +7 -0
- package/dist-cjs/index.js +14 -0
- package/dist-cjs/schemas/schemas_0.js +55 -22
- package/dist-es/OpenSearch.js +2 -0
- package/dist-es/commands/RollbackServiceSoftwareUpdateCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +51 -18
- package/dist-types/OpenSearch.d.ts +7 -0
- package/dist-types/OpenSearchClient.d.ts +3 -2
- package/dist-types/commands/AuthorizeVpcEndpointAccessCommand.d.ts +10 -0
- package/dist-types/commands/CreateDomainCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDomainCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDomainConfigCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDomainsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDryRunProgressCommand.d.ts +2 -0
- package/dist-types/commands/ListVpcEndpointAccessCommand.d.ts +5 -0
- package/dist-types/commands/RevokeVpcEndpointAccessCommand.d.ts +5 -0
- package/dist-types/commands/RollbackServiceSoftwareUpdateCommand.d.ts +96 -0
- package/dist-types/commands/StartServiceSoftwareUpdateCommand.d.ts +2 -1
- package/dist-types/commands/UpdateApplicationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +1 -2
- package/dist-types/commands/UpdateDomainConfigCommand.d.ts +4 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +95 -110
- package/dist-types/models/models_1.d.ts +112 -2
- package/dist-types/schemas/schemas_0.d.ts +5 -0
- package/dist-types/ts3.4/OpenSearch.d.ts +17 -0
- package/dist-types/ts3.4/OpenSearchClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/RollbackServiceSoftwareUpdateCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartServiceSoftwareUpdateCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +21 -25
- package/dist-types/ts3.4/models/models_1.d.ts +31 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
- package/package.json +14 -14
package/README.md
CHANGED
|
@@ -710,6 +710,13 @@ RevokeVpcEndpointAccess
|
|
|
710
710
|
</details>
|
|
711
711
|
<details>
|
|
712
712
|
<summary>
|
|
713
|
+
RollbackServiceSoftwareUpdate
|
|
714
|
+
</summary>
|
|
715
|
+
|
|
716
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/opensearch/command/RollbackServiceSoftwareUpdateCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-opensearch/Interface/RollbackServiceSoftwareUpdateCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-opensearch/Interface/RollbackServiceSoftwareUpdateCommandOutput/)
|
|
717
|
+
</details>
|
|
718
|
+
<details>
|
|
719
|
+
<summary>
|
|
713
720
|
StartDomainMaintenance
|
|
714
721
|
</summary>
|
|
715
722
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -1013,6 +1013,18 @@ class RevokeVpcEndpointAccessCommand extends smithyClient.Command
|
|
|
1013
1013
|
.build() {
|
|
1014
1014
|
}
|
|
1015
1015
|
|
|
1016
|
+
class RollbackServiceSoftwareUpdateCommand extends smithyClient.Command
|
|
1017
|
+
.classBuilder()
|
|
1018
|
+
.ep(commonParams)
|
|
1019
|
+
.m(function (Command, cs, config, o) {
|
|
1020
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1021
|
+
})
|
|
1022
|
+
.s("AmazonOpenSearchService", "RollbackServiceSoftwareUpdate", {})
|
|
1023
|
+
.n("OpenSearchClient", "RollbackServiceSoftwareUpdateCommand")
|
|
1024
|
+
.sc(schemas_0.RollbackServiceSoftwareUpdate$)
|
|
1025
|
+
.build() {
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1016
1028
|
class StartDomainMaintenanceCommand extends smithyClient.Command
|
|
1017
1029
|
.classBuilder()
|
|
1018
1030
|
.ep(commonParams)
|
|
@@ -1263,6 +1275,7 @@ const commands = {
|
|
|
1263
1275
|
RejectInboundConnectionCommand,
|
|
1264
1276
|
RemoveTagsCommand,
|
|
1265
1277
|
RevokeVpcEndpointAccessCommand,
|
|
1278
|
+
RollbackServiceSoftwareUpdateCommand,
|
|
1266
1279
|
StartDomainMaintenanceCommand,
|
|
1267
1280
|
StartServiceSoftwareUpdateCommand,
|
|
1268
1281
|
UpdateApplicationCommand,
|
|
@@ -1918,6 +1931,7 @@ exports.ReservedInstancePaymentOption = ReservedInstancePaymentOption;
|
|
|
1918
1931
|
exports.RevokeVpcEndpointAccessCommand = RevokeVpcEndpointAccessCommand;
|
|
1919
1932
|
exports.RolesKeyIdCOption = RolesKeyIdCOption;
|
|
1920
1933
|
exports.RollbackOnDisable = RollbackOnDisable;
|
|
1934
|
+
exports.RollbackServiceSoftwareUpdateCommand = RollbackServiceSoftwareUpdateCommand;
|
|
1921
1935
|
exports.ScheduleAt = ScheduleAt;
|
|
1922
1936
|
exports.ScheduledAutoTuneActionType = ScheduledAutoTuneActionType;
|
|
1923
1937
|
exports.ScheduledAutoTuneSeverityType = ScheduledAutoTuneSeverityType;
|
|
@@ -5,10 +5,10 @@ exports.DeletePackageResponse$ = exports.DeletePackageRequest$ = exports.DeleteO
|
|
|
5
5
|
exports.DomainMaintenanceDetails$ = exports.DomainInformationContainer$ = exports.DomainInfo$ = exports.DomainEndpointOptionsStatus$ = exports.DomainEndpointOptions$ = exports.DomainConfig$ = exports.DissociatePackagesResponse$ = exports.DissociatePackagesRequest$ = exports.DissociatePackageResponse$ = exports.DissociatePackageRequest$ = exports.DirectQueryDataSource$ = exports.DescribeVpcEndpointsResponse$ = exports.DescribeVpcEndpointsRequest$ = exports.DescribeReservedInstancesResponse$ = exports.DescribeReservedInstancesRequest$ = exports.DescribeReservedInstanceOfferingsResponse$ = exports.DescribeReservedInstanceOfferingsRequest$ = exports.DescribePackagesResponse$ = exports.DescribePackagesRequest$ = exports.DescribePackagesFilter$ = exports.DescribeOutboundConnectionsResponse$ = exports.DescribeOutboundConnectionsRequest$ = exports.DescribeInstanceTypeLimitsResponse$ = exports.DescribeInstanceTypeLimitsRequest$ = exports.DescribeInsightDetailsResponse$ = exports.DescribeInsightDetailsRequest$ = exports.DescribeInboundConnectionsResponse$ = exports.DescribeInboundConnectionsRequest$ = exports.DescribeDryRunProgressResponse$ = exports.DescribeDryRunProgressRequest$ = exports.DescribeDomainsResponse$ = exports.DescribeDomainsRequest$ = exports.DescribeDomainResponse$ = exports.DescribeDomainRequest$ = exports.DescribeDomainNodesResponse$ = exports.DescribeDomainNodesRequest$ = exports.DescribeDomainHealthResponse$ = exports.DescribeDomainHealthRequest$ = exports.DescribeDomainConfigResponse$ = exports.DescribeDomainConfigRequest$ = exports.DescribeDomainChangeProgressResponse$ = exports.DescribeDomainChangeProgressRequest$ = exports.DescribeDomainAutoTunesResponse$ = exports.DescribeDomainAutoTunesRequest$ = exports.DeregisterCapabilityResponse$ = exports.DeregisterCapabilityRequest$ = exports.DeploymentStrategyOptionsStatus$ = exports.DeploymentStrategyOptions$ = exports.DeleteVpcEndpointResponse$ = exports.DeleteVpcEndpointRequest$ = void 0;
|
|
6
6
|
exports.InstanceLimits$ = exports.InstanceCountLimits$ = exports.InsightTimeRange$ = exports.InsightField$ = exports.InsightEntity$ = exports.Insight$ = exports.InboundConnectionStatus$ = exports.InboundConnection$ = exports.IdentityCenterOptionsStatus$ = exports.IdentityCenterOptionsInput$ = exports.IdentityCenterOptions$ = exports.IamIdentityCenterOptionsInput$ = exports.IamIdentityCenterOptions$ = exports.IAMFederationOptionsOutput$ = exports.IAMFederationOptionsInput$ = exports.GetUpgradeStatusResponse$ = exports.GetUpgradeStatusRequest$ = exports.GetUpgradeHistoryResponse$ = exports.GetUpgradeHistoryRequest$ = exports.GetPackageVersionHistoryResponse$ = exports.GetPackageVersionHistoryRequest$ = exports.GetIndexResponse$ = exports.GetIndexRequest$ = exports.GetDomainMaintenanceStatusResponse$ = exports.GetDomainMaintenanceStatusRequest$ = exports.GetDirectQueryDataSourceResponse$ = exports.GetDirectQueryDataSourceRequest$ = exports.GetDefaultApplicationSettingResponse$ = exports.GetDefaultApplicationSettingRequest$ = exports.GetDataSourceResponse$ = exports.GetDataSourceRequest$ = exports.GetCompatibleVersionsResponse$ = exports.GetCompatibleVersionsRequest$ = exports.GetCapabilityResponse$ = exports.GetCapabilityRequest$ = exports.GetApplicationResponse$ = exports.GetApplicationRequest$ = exports.Filter$ = exports.ErrorDetails$ = exports.EnvironmentInfo$ = exports.EncryptionAtRestOptionsStatus$ = exports.EncryptionAtRestOptions$ = exports.EBSOptionsStatus$ = exports.EBSOptions$ = exports.Duration$ = exports.DryRunResults$ = exports.DryRunProgressStatus$ = exports.DomainStatus$ = exports.DomainPackageDetails$ = exports.DomainNodesStatus$ = void 0;
|
|
7
7
|
exports.OptionStatus$ = exports.OffPeakWindowOptionsStatus$ = exports.OffPeakWindowOptions$ = exports.OffPeakWindow$ = exports.NodeToNodeEncryptionOptionsStatus$ = exports.NodeToNodeEncryptionOptions$ = exports.NodeOption$ = exports.NodeConfig$ = exports.NaturalLanguageQueryGenerationOptionsOutput$ = exports.NaturalLanguageQueryGenerationOptionsInput$ = exports.ModifyingProperties$ = exports.MasterUserOptions$ = exports.LogPublishingOptionsStatus$ = exports.LogPublishingOption$ = exports.ListVpcEndpointsResponse$ = exports.ListVpcEndpointsRequest$ = exports.ListVpcEndpointsForDomainResponse$ = exports.ListVpcEndpointsForDomainRequest$ = exports.ListVpcEndpointAccessResponse$ = exports.ListVpcEndpointAccessRequest$ = exports.ListVersionsResponse$ = exports.ListVersionsRequest$ = exports.ListTagsResponse$ = exports.ListTagsRequest$ = exports.ListScheduledActionsResponse$ = exports.ListScheduledActionsRequest$ = exports.ListPackagesForDomainResponse$ = exports.ListPackagesForDomainRequest$ = exports.ListInstanceTypeDetailsResponse$ = exports.ListInstanceTypeDetailsRequest$ = exports.ListInsightsResponse$ = exports.ListInsightsRequest$ = exports.ListDomainsForPackageResponse$ = exports.ListDomainsForPackageRequest$ = exports.ListDomainNamesResponse$ = exports.ListDomainNamesRequest$ = exports.ListDomainMaintenancesResponse$ = exports.ListDomainMaintenancesRequest$ = exports.ListDirectQueryDataSourcesResponse$ = exports.ListDirectQueryDataSourcesRequest$ = exports.ListDataSourcesResponse$ = exports.ListDataSourcesRequest$ = exports.ListApplicationsResponse$ = exports.ListApplicationsRequest$ = exports.Limits$ = exports.KeyStoreAccessOption$ = exports.JWTOptionsOutput$ = exports.JWTOptionsInput$ = exports.IPAddressTypeStatus$ = exports.InstanceTypeDetails$ = void 0;
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.UpgradeDomain$ = exports.UpdateVpcEndpoint$ = exports.UpdateScheduledAction$ = exports.UpdatePackageScope$ = exports.UpdatePackage$ = exports.UpdateIndex$ = exports.UpdateDomainConfig$ = exports.UpdateDirectQueryDataSource$ = exports.UpdateDataSource$ = exports.UpdateApplication$ = exports.StartServiceSoftwareUpdate$ = exports.StartDomainMaintenance$ = exports.RevokeVpcEndpointAccess$ = exports.RemoveTags$ = exports.RejectInboundConnection$ = exports.RegisterCapability$ = exports.PutDefaultApplicationSetting$ = exports.PurchaseReservedInstanceOffering$ = exports.ListVpcEndpointsForDomain$ = exports.ListVpcEndpoints$ = exports.ListVpcEndpointAccess$ = void 0;
|
|
8
|
+
exports.StorageTypeLimit$ = exports.StorageType$ = exports.StartServiceSoftwareUpdateResponse$ = exports.StartServiceSoftwareUpdateRequest$ = exports.StartDomainMaintenanceResponse$ = exports.StartDomainMaintenanceRequest$ = exports.SoftwareUpdateOptionsStatus$ = exports.SoftwareUpdateOptions$ = exports.SnapshotOptionsStatus$ = exports.SnapshotOptions$ = exports.ServiceSoftwareOptions$ = exports.ServiceOptions$ = exports.ServerlessVectorAcceleration$ = exports.SecurityLakeDirectQueryDataSource$ = exports.ScheduledAutoTuneDetails$ = exports.ScheduledAction$ = exports.SAMLOptionsOutput$ = exports.SAMLOptionsInput$ = exports.SAMLIdp$ = exports.S3VectorsEngine$ = exports.S3GlueDataCatalog$ = exports.RollbackServiceSoftwareUpdateResponse$ = exports.RollbackServiceSoftwareUpdateRequest$ = exports.RollbackServiceSoftwareOptions$ = exports.RevokeVpcEndpointAccessResponse$ = exports.RevokeVpcEndpointAccessRequest$ = exports.ReservedInstanceOffering$ = exports.ReservedInstance$ = exports.RemoveTagsRequest$ = exports.RejectInboundConnectionResponse$ = exports.RejectInboundConnectionRequest$ = exports.RegisterCapabilityResponse$ = exports.RegisterCapabilityRequest$ = exports.RecurringCharge$ = exports.PutDefaultApplicationSettingResponse$ = exports.PutDefaultApplicationSettingRequest$ = exports.PurchaseReservedInstanceOfferingResponse$ = exports.PurchaseReservedInstanceOfferingRequest$ = exports.PrometheusDirectQueryDataSource$ = exports.PluginProperties$ = exports.PackageVersionHistory$ = exports.PackageVendingOptions$ = exports.PackageSource$ = exports.PackageEncryptionOptions$ = exports.PackageDetailsForAssociation$ = exports.PackageDetails$ = exports.PackageConfiguration$ = exports.PackageAssociationConfiguration$ = exports.OutboundConnectionStatus$ = exports.OutboundConnection$ = void 0;
|
|
9
|
+
exports.CreateIndex$ = exports.CreateDomain$ = exports.CreateApplication$ = exports.CancelServiceSoftwareUpdate$ = exports.CancelDomainConfigChange$ = exports.AuthorizeVpcEndpointAccess$ = exports.AssociatePackages$ = exports.AssociatePackage$ = exports.AddTags$ = exports.AddDirectQueryDataSource$ = exports.AddDataSource$ = exports.AcceptInboundConnection$ = exports.DirectQueryDataSourceType$ = exports.DataSourceType$ = exports.CapabilityExtendedResponseConfig$ = exports.CapabilityBaseResponseConfig$ = exports.CapabilityBaseRequestConfig$ = exports.ZoneAwarenessConfig$ = exports.WindowStartTime$ = exports.VPCOptions$ = exports.VpcEndpointSummary$ = exports.VpcEndpointError$ = exports.VpcEndpoint$ = exports.VPCDerivedInfoStatus$ = exports.VPCDerivedInfo$ = exports.VersionStatus$ = exports.ValidationFailure$ = exports.UpgradeStepItem$ = exports.UpgradeHistory$ = exports.UpgradeDomainResponse$ = exports.UpgradeDomainRequest$ = exports.UpdateVpcEndpointResponse$ = exports.UpdateVpcEndpointRequest$ = exports.UpdateScheduledActionResponse$ = exports.UpdateScheduledActionRequest$ = exports.UpdatePackageScopeResponse$ = exports.UpdatePackageScopeRequest$ = exports.UpdatePackageResponse$ = exports.UpdatePackageRequest$ = exports.UpdateIndexResponse$ = exports.UpdateIndexRequest$ = exports.UpdateDomainConfigResponse$ = exports.UpdateDomainConfigRequest$ = exports.UpdateDirectQueryDataSourceResponse$ = exports.UpdateDirectQueryDataSourceRequest$ = exports.UpdateDataSourceResponse$ = exports.UpdateDataSourceRequest$ = exports.UpdateApplicationResponse$ = exports.UpdateApplicationRequest$ = exports.Tag$ = void 0;
|
|
10
|
+
exports.ListInstanceTypeDetails$ = exports.ListInsights$ = exports.ListDomainsForPackage$ = exports.ListDomainNames$ = exports.ListDomainMaintenances$ = exports.ListDirectQueryDataSources$ = exports.ListDataSources$ = exports.ListApplications$ = exports.GetUpgradeStatus$ = exports.GetUpgradeHistory$ = exports.GetPackageVersionHistory$ = exports.GetIndex$ = exports.GetDomainMaintenanceStatus$ = exports.GetDirectQueryDataSource$ = exports.GetDefaultApplicationSetting$ = exports.GetDataSource$ = exports.GetCompatibleVersions$ = exports.GetCapability$ = exports.GetApplication$ = exports.DissociatePackages$ = exports.DissociatePackage$ = exports.DescribeVpcEndpoints$ = exports.DescribeReservedInstances$ = exports.DescribeReservedInstanceOfferings$ = exports.DescribePackages$ = exports.DescribeOutboundConnections$ = exports.DescribeInstanceTypeLimits$ = exports.DescribeInsightDetails$ = exports.DescribeInboundConnections$ = exports.DescribeDryRunProgress$ = exports.DescribeDomains$ = exports.DescribeDomainNodes$ = exports.DescribeDomainHealth$ = exports.DescribeDomainConfig$ = exports.DescribeDomainChangeProgress$ = exports.DescribeDomainAutoTunes$ = exports.DescribeDomain$ = exports.DeregisterCapability$ = exports.DeleteVpcEndpoint$ = exports.DeletePackage$ = exports.DeleteOutboundConnection$ = exports.DeleteIndex$ = exports.DeleteInboundConnection$ = exports.DeleteDomain$ = exports.DeleteDirectQueryDataSource$ = exports.DeleteDataSource$ = exports.DeleteApplication$ = exports.CreateVpcEndpoint$ = exports.CreatePackage$ = exports.CreateOutboundConnection$ = void 0;
|
|
11
|
+
exports.UpgradeDomain$ = exports.UpdateVpcEndpoint$ = exports.UpdateScheduledAction$ = exports.UpdatePackageScope$ = exports.UpdatePackage$ = exports.UpdateIndex$ = exports.UpdateDomainConfig$ = exports.UpdateDirectQueryDataSource$ = exports.UpdateDataSource$ = exports.UpdateApplication$ = exports.StartServiceSoftwareUpdate$ = exports.StartDomainMaintenance$ = exports.RollbackServiceSoftwareUpdate$ = exports.RevokeVpcEndpointAccess$ = exports.RemoveTags$ = exports.RejectInboundConnection$ = exports.RegisterCapability$ = exports.PutDefaultApplicationSetting$ = exports.PurchaseReservedInstanceOffering$ = exports.ListVpcEndpointsForDomain$ = exports.ListVpcEndpoints$ = exports.ListVpcEndpointAccess$ = exports.ListVersions$ = exports.ListTags$ = exports.ListScheduledActions$ = exports.ListPackagesForDomain$ = void 0;
|
|
12
12
|
const _A = "Account";
|
|
13
13
|
const _AADD = "AnonymousAuthDisableDate";
|
|
14
14
|
const _AAE = "AnonymousAuthEnabled";
|
|
@@ -394,6 +394,7 @@ const _IB = "InitiatedBy";
|
|
|
394
394
|
const _IC = "InstanceCount";
|
|
395
395
|
const _ICAARN = "IdentityCenterApplicationARN";
|
|
396
396
|
const _ICIARN = "IdentityCenterInstanceARN";
|
|
397
|
+
const _ICIR = "IdentityCenterInstanceRegion";
|
|
397
398
|
const _ICL = "InstanceCountLimits";
|
|
398
399
|
const _ICO = "IdentityCenterOptions";
|
|
399
400
|
const _ICOI = "IdentityCenterOptionsInput";
|
|
@@ -592,6 +593,7 @@ const _R = "Region";
|
|
|
592
593
|
const _RA = "RoleArn";
|
|
593
594
|
const _RAEE = "ResourceAlreadyExistsException";
|
|
594
595
|
const _RAZ = "RetrieveAZs";
|
|
596
|
+
const _RAo = "RollbackAvailable";
|
|
595
597
|
const _RC = "RecurringCharge";
|
|
596
598
|
const _RCA = "RecurringChargeAmount";
|
|
597
599
|
const _RCF = "RecurringChargeFrequency";
|
|
@@ -618,6 +620,10 @@ const _RNFE = "ResourceNotFoundException";
|
|
|
618
620
|
const _ROD = "RollbackOnDisable";
|
|
619
621
|
const _RP = "ReferencePath";
|
|
620
622
|
const _RRFCU = "RequiresRestartForConfigurationUpdate";
|
|
623
|
+
const _RSSO = "RollbackServiceSoftwareOptions";
|
|
624
|
+
const _RSSU = "RollbackServiceSoftwareUpdate";
|
|
625
|
+
const _RSSUR = "RollbackServiceSoftwareUpdateRequest";
|
|
626
|
+
const _RSSURo = "RollbackServiceSoftwareUpdateResponse";
|
|
621
627
|
const _RT = "RemoveTags";
|
|
622
628
|
const _RTR = "RemoveTagsRequest";
|
|
623
629
|
const _RVEA = "RevokeVpcEndpointAccess";
|
|
@@ -652,10 +658,12 @@ const _SLDQDS = "SecurityLakeDirectQueryDataSource";
|
|
|
652
658
|
const _SLe = "SecurityLake";
|
|
653
659
|
const _SM = "StatusMessage";
|
|
654
660
|
const _SNAE = "SlotNotAvailableException";
|
|
655
|
-
const _SO = "
|
|
661
|
+
const _SO = "ServiceOptions";
|
|
656
662
|
const _SOS = "SnapshotOptionsStatus";
|
|
663
|
+
const _SOn = "SnapshotOptions";
|
|
657
664
|
const _SOo = "SortOrder";
|
|
658
665
|
const _SQEE = "ServiceQuotaExceededException";
|
|
666
|
+
const _SR = "SupportedRegions";
|
|
659
667
|
const _SS = "SlotSuggestions";
|
|
660
668
|
const _SSO = "ServiceSoftwareOptions";
|
|
661
669
|
const _SSSU = "StartServiceSoftwareUpdate";
|
|
@@ -725,6 +733,7 @@ const _UI = "UpgradeId";
|
|
|
725
733
|
const _UIR = "UpdateIndexRequest";
|
|
726
734
|
const _UIRp = "UpdateIndexResponse";
|
|
727
735
|
const _UIp = "UpdateIndex";
|
|
736
|
+
const _ULSSFBG = "UseLatestServiceSoftwareForBlueGreen";
|
|
728
737
|
const _UN = "UpgradeName";
|
|
729
738
|
const _UOPW = "UseOffPeakWindow";
|
|
730
739
|
const _UP = "UpgradeProcessing";
|
|
@@ -1064,13 +1073,13 @@ exports.AssociatePackagesResponse$ = [3, n0, _APRsso,
|
|
|
1064
1073
|
];
|
|
1065
1074
|
exports.AuthorizedPrincipal$ = [3, n0, _AP,
|
|
1066
1075
|
0,
|
|
1067
|
-
[_PT, _Pr],
|
|
1068
|
-
[0, 0]
|
|
1076
|
+
[_PT, _Pr, _SO],
|
|
1077
|
+
[0, 0, () => exports.ServiceOptions$]
|
|
1069
1078
|
];
|
|
1070
1079
|
exports.AuthorizeVpcEndpointAccessRequest$ = [3, n0, _AVEAR,
|
|
1071
1080
|
0,
|
|
1072
|
-
[_DN, _A, _Se],
|
|
1073
|
-
[[0, 1], 0, 0], 1
|
|
1081
|
+
[_DN, _A, _Se, _SO],
|
|
1082
|
+
[[0, 1], 0, 0, () => exports.ServiceOptions$], 1
|
|
1074
1083
|
];
|
|
1075
1084
|
exports.AuthorizeVpcEndpointAccessResponse$ = [3, n0, _AVEARu,
|
|
1076
1085
|
0,
|
|
@@ -1224,7 +1233,7 @@ exports.CreateApplicationResponse$ = [3, n0, _CARr,
|
|
|
1224
1233
|
];
|
|
1225
1234
|
exports.CreateDomainRequest$ = [3, n0, _CDR,
|
|
1226
1235
|
0,
|
|
1227
|
-
[_DN, _EV, _CC, _EBSO, _APc, _IPAT,
|
|
1236
|
+
[_DN, _EV, _CC, _EBSO, _APc, _IPAT, _SOn, _VPCO, _CO, _EARO, _NTNEO, _AO, _LPO, _DEO, _ASO, _ICO, _TL, _ATO, _OPWO, _SUO, _AIMLO, _DSO],
|
|
1228
1237
|
[0, 0, () => exports.ClusterConfig$, () => exports.EBSOptions$, 0, 0, () => exports.SnapshotOptions$, () => exports.VPCOptions$, () => exports.CognitoOptions$, () => exports.EncryptionAtRestOptions$, () => exports.NodeToNodeEncryptionOptions$, 128 | 0, () => LogPublishingOptions, () => exports.DomainEndpointOptions$, [() => exports.AdvancedSecurityOptionsInput$, 0], () => exports.IdentityCenterOptionsInput$, () => TagList, () => exports.AutoTuneOptionsInput$, () => exports.OffPeakWindowOptions$, () => exports.SoftwareUpdateOptions$, () => exports.AIMLOptionsInput$, () => exports.DeploymentStrategyOptions$], 1
|
|
1229
1238
|
];
|
|
1230
1239
|
exports.CreateDomainResponse$ = [3, n0, _CDRr,
|
|
@@ -1584,7 +1593,7 @@ exports.DissociatePackagesResponse$ = [3, n0, _DPRisso,
|
|
|
1584
1593
|
];
|
|
1585
1594
|
exports.DomainConfig$ = [3, n0, _DC,
|
|
1586
1595
|
0,
|
|
1587
|
-
[_EV, _CC, _EBSO, _APc, _IPAT,
|
|
1596
|
+
[_EV, _CC, _EBSO, _APc, _IPAT, _SOn, _VPCO, _CO, _EARO, _NTNEO, _AO, _LPO, _DEO, _ASO, _ICO, _ATO, _CPD, _OPWO, _SUO, _MP, _AIMLO, _DSO],
|
|
1588
1597
|
[() => exports.VersionStatus$, () => exports.ClusterConfigStatus$, () => exports.EBSOptionsStatus$, () => exports.AccessPoliciesStatus$, () => exports.IPAddressTypeStatus$, () => exports.SnapshotOptionsStatus$, () => exports.VPCDerivedInfoStatus$, () => exports.CognitoOptionsStatus$, () => exports.EncryptionAtRestOptionsStatus$, () => exports.NodeToNodeEncryptionOptionsStatus$, () => exports.AdvancedOptionsStatus$, () => exports.LogPublishingOptionsStatus$, () => exports.DomainEndpointOptionsStatus$, () => exports.AdvancedSecurityOptionsStatus$, () => exports.IdentityCenterOptionsStatus$, () => exports.AutoTuneOptionsStatus$, () => exports.ChangeProgressDetails$, () => exports.OffPeakWindowOptionsStatus$, () => exports.SoftwareUpdateOptionsStatus$, () => ModifyingPropertiesList, () => exports.AIMLOptionsStatus$, () => exports.DeploymentStrategyOptionsStatus$]
|
|
1589
1598
|
];
|
|
1590
1599
|
exports.DomainEndpointOptions$ = [3, n0, _DEO,
|
|
@@ -1624,7 +1633,7 @@ exports.DomainPackageDetails$ = [3, n0, _DPD,
|
|
|
1624
1633
|
];
|
|
1625
1634
|
exports.DomainStatus$ = [3, n0, _DSo,
|
|
1626
1635
|
0,
|
|
1627
|
-
[_DIo, _DN, _ARN, _CC, _Cr, _De, _En, _EVn, _End, _DEVHZI, _Pro, _UP, _EV, _EBSO, _APc, _IPAT,
|
|
1636
|
+
[_DIo, _DN, _ARN, _CC, _Cr, _De, _En, _EVn, _End, _DEVHZI, _Pro, _UP, _EV, _EBSO, _APc, _IPAT, _SOn, _VPCO, _CO, _EARO, _NTNEO, _AO, _LPO, _SSO, _DEO, _ASO, _ICO, _ATO, _CPD, _OPWO, _SUO, _DPSo, _MP, _AIMLO, _DSO],
|
|
1628
1637
|
[0, 0, 0, () => exports.ClusterConfig$, 2, 2, 0, 0, 128 | 0, 0, 2, 2, 0, () => exports.EBSOptions$, 0, 0, () => exports.SnapshotOptions$, () => exports.VPCDerivedInfo$, () => exports.CognitoOptions$, () => exports.EncryptionAtRestOptions$, () => exports.NodeToNodeEncryptionOptions$, 128 | 0, () => LogPublishingOptions, () => exports.ServiceSoftwareOptions$, () => exports.DomainEndpointOptions$, () => exports.AdvancedSecurityOptions$, () => exports.IdentityCenterOptions$, () => exports.AutoTuneOptionsOutput$, () => exports.ChangeProgressDetails$, () => exports.OffPeakWindowOptions$, () => exports.SoftwareUpdateOptions$, 0, () => ModifyingPropertiesList, () => exports.AIMLOptionsOutput$, () => exports.DeploymentStrategyOptions$], 4
|
|
1629
1638
|
];
|
|
1630
1639
|
exports.DryRunProgressStatus$ = [3, n0, _DRPS,
|
|
@@ -1809,13 +1818,13 @@ exports.IamIdentityCenterOptionsInput$ = [3, n0, _IICOI,
|
|
|
1809
1818
|
];
|
|
1810
1819
|
exports.IdentityCenterOptions$ = [3, n0, _ICO,
|
|
1811
1820
|
0,
|
|
1812
|
-
[_EAPIA, _ICIARN, _SK, _RK, _ICAARN, _ISI],
|
|
1813
|
-
[2, 0, 0, 0, 0, 0]
|
|
1821
|
+
[_EAPIA, _ICIARN, _ICIR, _SK, _RK, _ICAARN, _ISI],
|
|
1822
|
+
[2, 0, 0, 0, 0, 0, 0]
|
|
1814
1823
|
];
|
|
1815
1824
|
exports.IdentityCenterOptionsInput$ = [3, n0, _ICOI,
|
|
1816
1825
|
0,
|
|
1817
|
-
[_EAPIA, _ICIARN, _SK, _RK],
|
|
1818
|
-
[2, 0, 0, 0]
|
|
1826
|
+
[_EAPIA, _ICIARN, _ICIR, _SK, _RK],
|
|
1827
|
+
[2, 0, 0, 0, 0]
|
|
1819
1828
|
];
|
|
1820
1829
|
exports.IdentityCenterOptionsStatus$ = [3, n0, _ICOS,
|
|
1821
1830
|
0,
|
|
@@ -2234,14 +2243,29 @@ exports.ReservedInstanceOffering$ = [3, n0, _RIOe,
|
|
|
2234
2243
|
];
|
|
2235
2244
|
exports.RevokeVpcEndpointAccessRequest$ = [3, n0, _RVEAR,
|
|
2236
2245
|
0,
|
|
2237
|
-
[_DN, _A, _Se],
|
|
2238
|
-
[[0, 1], 0, 0], 1
|
|
2246
|
+
[_DN, _A, _Se, _SO],
|
|
2247
|
+
[[0, 1], 0, 0, () => exports.ServiceOptions$], 1
|
|
2239
2248
|
];
|
|
2240
2249
|
exports.RevokeVpcEndpointAccessResponse$ = [3, n0, _RVEARe,
|
|
2241
2250
|
0,
|
|
2242
2251
|
[],
|
|
2243
2252
|
[]
|
|
2244
2253
|
];
|
|
2254
|
+
exports.RollbackServiceSoftwareOptions$ = [3, n0, _RSSO,
|
|
2255
|
+
0,
|
|
2256
|
+
[_CVu, _NV, _RAo, _D],
|
|
2257
|
+
[0, 0, 2, 0]
|
|
2258
|
+
];
|
|
2259
|
+
exports.RollbackServiceSoftwareUpdateRequest$ = [3, n0, _RSSUR,
|
|
2260
|
+
0,
|
|
2261
|
+
[_DN],
|
|
2262
|
+
[0], 1
|
|
2263
|
+
];
|
|
2264
|
+
exports.RollbackServiceSoftwareUpdateResponse$ = [3, n0, _RSSURo,
|
|
2265
|
+
0,
|
|
2266
|
+
[_RSSO],
|
|
2267
|
+
[() => exports.RollbackServiceSoftwareOptions$]
|
|
2268
|
+
];
|
|
2245
2269
|
exports.S3GlueDataCatalog$ = [3, n0, _SGDC,
|
|
2246
2270
|
0,
|
|
2247
2271
|
[_RA],
|
|
@@ -2287,12 +2311,17 @@ exports.ServerlessVectorAcceleration$ = [3, n0, _SVA,
|
|
|
2287
2311
|
[_E],
|
|
2288
2312
|
[2]
|
|
2289
2313
|
];
|
|
2314
|
+
exports.ServiceOptions$ = [3, n0, _SO,
|
|
2315
|
+
0,
|
|
2316
|
+
[_SR],
|
|
2317
|
+
[64 | 0]
|
|
2318
|
+
];
|
|
2290
2319
|
exports.ServiceSoftwareOptions$ = [3, n0, _SSO,
|
|
2291
2320
|
0,
|
|
2292
2321
|
[_CVu, _NV, _UAp, _Ca, _USp, _D, _AUD, _OD],
|
|
2293
2322
|
[0, 0, 2, 2, 0, 0, 4, 2]
|
|
2294
2323
|
];
|
|
2295
|
-
exports.SnapshotOptions$ = [3, n0,
|
|
2324
|
+
exports.SnapshotOptions$ = [3, n0, _SOn,
|
|
2296
2325
|
0,
|
|
2297
2326
|
[_ASSH],
|
|
2298
2327
|
[1]
|
|
@@ -2304,8 +2333,8 @@ exports.SnapshotOptionsStatus$ = [3, n0, _SOS,
|
|
|
2304
2333
|
];
|
|
2305
2334
|
exports.SoftwareUpdateOptions$ = [3, n0, _SUO,
|
|
2306
2335
|
0,
|
|
2307
|
-
[_ASUE],
|
|
2308
|
-
[2]
|
|
2336
|
+
[_ASUE, _ULSSFBG],
|
|
2337
|
+
[2, 2]
|
|
2309
2338
|
];
|
|
2310
2339
|
exports.SoftwareUpdateOptionsStatus$ = [3, n0, _SUOS,
|
|
2311
2340
|
0,
|
|
@@ -2379,7 +2408,7 @@ exports.UpdateDirectQueryDataSourceResponse$ = [3, n0, _UDQDSRp,
|
|
|
2379
2408
|
];
|
|
2380
2409
|
exports.UpdateDomainConfigRequest$ = [3, n0, _UDCR,
|
|
2381
2410
|
0,
|
|
2382
|
-
[_DN, _CC, _EBSO,
|
|
2411
|
+
[_DN, _CC, _EBSO, _SOn, _VPCO, _CO, _AO, _APc, _IPAT, _LPO, _EARO, _DEO, _NTNEO, _ASO, _ICO, _ATO, _DR, _DRM, _OPWO, _SUO, _AIMLO, _DSO],
|
|
2383
2412
|
[[0, 1], () => exports.ClusterConfig$, () => exports.EBSOptions$, () => exports.SnapshotOptions$, () => exports.VPCOptions$, () => exports.CognitoOptions$, 128 | 0, 0, 0, () => LogPublishingOptions, () => exports.EncryptionAtRestOptions$, () => exports.DomainEndpointOptions$, () => exports.NodeToNodeEncryptionOptions$, [() => exports.AdvancedSecurityOptionsInput$, 0], () => exports.IdentityCenterOptionsInput$, () => exports.AutoTuneOptions$, 2, 0, () => exports.OffPeakWindowOptions$, () => exports.SoftwareUpdateOptions$, () => exports.AIMLOptionsInput$, () => exports.DeploymentStrategyOptions$], 1
|
|
2384
2413
|
];
|
|
2385
2414
|
exports.UpdateDomainConfigResponse$ = [3, n0, _UDCRp,
|
|
@@ -2619,6 +2648,7 @@ var RecurringChargeList = [1, n0, _RCL,
|
|
|
2619
2648
|
0, [() => exports.RecurringCharge$,
|
|
2620
2649
|
{ [_xN]: _RC }]
|
|
2621
2650
|
];
|
|
2651
|
+
var RegionsList = 64 | 0;
|
|
2622
2652
|
var ReservedInstanceList = [1, n0, _RIL,
|
|
2623
2653
|
0, [() => exports.ReservedInstance$,
|
|
2624
2654
|
0]
|
|
@@ -2920,6 +2950,9 @@ exports.RemoveTags$ = [9, n0, _RT,
|
|
|
2920
2950
|
exports.RevokeVpcEndpointAccess$ = [9, n0, _RVEA,
|
|
2921
2951
|
{ [_h]: ["POST", "/2021-01-01/opensearch/domain/{DomainName}/revokeVpcEndpointAccess", 200] }, () => exports.RevokeVpcEndpointAccessRequest$, () => exports.RevokeVpcEndpointAccessResponse$
|
|
2922
2952
|
];
|
|
2953
|
+
exports.RollbackServiceSoftwareUpdate$ = [9, n0, _RSSU,
|
|
2954
|
+
{ [_h]: ["POST", "/2021-01-01/opensearch/serviceSoftwareUpdate/rollback", 200] }, () => exports.RollbackServiceSoftwareUpdateRequest$, () => exports.RollbackServiceSoftwareUpdateResponse$
|
|
2955
|
+
];
|
|
2923
2956
|
exports.StartDomainMaintenance$ = [9, n0, _SDM,
|
|
2924
2957
|
{ [_h]: ["POST", "/2021-01-01/opensearch/domain/{DomainName}/domainMaintenance", 200] }, () => exports.StartDomainMaintenanceRequest$, () => exports.StartDomainMaintenanceResponse$
|
|
2925
2958
|
];
|
package/dist-es/OpenSearch.js
CHANGED
|
@@ -74,6 +74,7 @@ import { RegisterCapabilityCommand, } from "./commands/RegisterCapabilityCommand
|
|
|
74
74
|
import { RejectInboundConnectionCommand, } from "./commands/RejectInboundConnectionCommand";
|
|
75
75
|
import { RemoveTagsCommand, } from "./commands/RemoveTagsCommand";
|
|
76
76
|
import { RevokeVpcEndpointAccessCommand, } from "./commands/RevokeVpcEndpointAccessCommand";
|
|
77
|
+
import { RollbackServiceSoftwareUpdateCommand, } from "./commands/RollbackServiceSoftwareUpdateCommand";
|
|
77
78
|
import { StartDomainMaintenanceCommand, } from "./commands/StartDomainMaintenanceCommand";
|
|
78
79
|
import { StartServiceSoftwareUpdateCommand, } from "./commands/StartServiceSoftwareUpdateCommand";
|
|
79
80
|
import { UpdateApplicationCommand, } from "./commands/UpdateApplicationCommand";
|
|
@@ -178,6 +179,7 @@ const commands = {
|
|
|
178
179
|
RejectInboundConnectionCommand,
|
|
179
180
|
RemoveTagsCommand,
|
|
180
181
|
RevokeVpcEndpointAccessCommand,
|
|
182
|
+
RollbackServiceSoftwareUpdateCommand,
|
|
181
183
|
StartDomainMaintenanceCommand,
|
|
182
184
|
StartServiceSoftwareUpdateCommand,
|
|
183
185
|
UpdateApplicationCommand,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { RollbackServiceSoftwareUpdate$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class RollbackServiceSoftwareUpdateCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonOpenSearchService", "RollbackServiceSoftwareUpdate", {})
|
|
13
|
+
.n("OpenSearchClient", "RollbackServiceSoftwareUpdateCommand")
|
|
14
|
+
.sc(RollbackServiceSoftwareUpdate$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -73,6 +73,7 @@ export * from "./RegisterCapabilityCommand";
|
|
|
73
73
|
export * from "./RejectInboundConnectionCommand";
|
|
74
74
|
export * from "./RemoveTagsCommand";
|
|
75
75
|
export * from "./RevokeVpcEndpointAccessCommand";
|
|
76
|
+
export * from "./RollbackServiceSoftwareUpdateCommand";
|
|
76
77
|
export * from "./StartDomainMaintenanceCommand";
|
|
77
78
|
export * from "./StartServiceSoftwareUpdateCommand";
|
|
78
79
|
export * from "./UpdateApplicationCommand";
|
|
@@ -383,6 +383,7 @@ const _IB = "InitiatedBy";
|
|
|
383
383
|
const _IC = "InstanceCount";
|
|
384
384
|
const _ICAARN = "IdentityCenterApplicationARN";
|
|
385
385
|
const _ICIARN = "IdentityCenterInstanceARN";
|
|
386
|
+
const _ICIR = "IdentityCenterInstanceRegion";
|
|
386
387
|
const _ICL = "InstanceCountLimits";
|
|
387
388
|
const _ICO = "IdentityCenterOptions";
|
|
388
389
|
const _ICOI = "IdentityCenterOptionsInput";
|
|
@@ -581,6 +582,7 @@ const _R = "Region";
|
|
|
581
582
|
const _RA = "RoleArn";
|
|
582
583
|
const _RAEE = "ResourceAlreadyExistsException";
|
|
583
584
|
const _RAZ = "RetrieveAZs";
|
|
585
|
+
const _RAo = "RollbackAvailable";
|
|
584
586
|
const _RC = "RecurringCharge";
|
|
585
587
|
const _RCA = "RecurringChargeAmount";
|
|
586
588
|
const _RCF = "RecurringChargeFrequency";
|
|
@@ -607,6 +609,10 @@ const _RNFE = "ResourceNotFoundException";
|
|
|
607
609
|
const _ROD = "RollbackOnDisable";
|
|
608
610
|
const _RP = "ReferencePath";
|
|
609
611
|
const _RRFCU = "RequiresRestartForConfigurationUpdate";
|
|
612
|
+
const _RSSO = "RollbackServiceSoftwareOptions";
|
|
613
|
+
const _RSSU = "RollbackServiceSoftwareUpdate";
|
|
614
|
+
const _RSSUR = "RollbackServiceSoftwareUpdateRequest";
|
|
615
|
+
const _RSSURo = "RollbackServiceSoftwareUpdateResponse";
|
|
610
616
|
const _RT = "RemoveTags";
|
|
611
617
|
const _RTR = "RemoveTagsRequest";
|
|
612
618
|
const _RVEA = "RevokeVpcEndpointAccess";
|
|
@@ -641,10 +647,12 @@ const _SLDQDS = "SecurityLakeDirectQueryDataSource";
|
|
|
641
647
|
const _SLe = "SecurityLake";
|
|
642
648
|
const _SM = "StatusMessage";
|
|
643
649
|
const _SNAE = "SlotNotAvailableException";
|
|
644
|
-
const _SO = "
|
|
650
|
+
const _SO = "ServiceOptions";
|
|
645
651
|
const _SOS = "SnapshotOptionsStatus";
|
|
652
|
+
const _SOn = "SnapshotOptions";
|
|
646
653
|
const _SOo = "SortOrder";
|
|
647
654
|
const _SQEE = "ServiceQuotaExceededException";
|
|
655
|
+
const _SR = "SupportedRegions";
|
|
648
656
|
const _SS = "SlotSuggestions";
|
|
649
657
|
const _SSO = "ServiceSoftwareOptions";
|
|
650
658
|
const _SSSU = "StartServiceSoftwareUpdate";
|
|
@@ -714,6 +722,7 @@ const _UI = "UpgradeId";
|
|
|
714
722
|
const _UIR = "UpdateIndexRequest";
|
|
715
723
|
const _UIRp = "UpdateIndexResponse";
|
|
716
724
|
const _UIp = "UpdateIndex";
|
|
725
|
+
const _ULSSFBG = "UseLatestServiceSoftwareForBlueGreen";
|
|
717
726
|
const _UN = "UpgradeName";
|
|
718
727
|
const _UOPW = "UseOffPeakWindow";
|
|
719
728
|
const _UP = "UpgradeProcessing";
|
|
@@ -1053,13 +1062,13 @@ export var AssociatePackagesResponse$ = [3, n0, _APRsso,
|
|
|
1053
1062
|
];
|
|
1054
1063
|
export var AuthorizedPrincipal$ = [3, n0, _AP,
|
|
1055
1064
|
0,
|
|
1056
|
-
[_PT, _Pr],
|
|
1057
|
-
[0, 0]
|
|
1065
|
+
[_PT, _Pr, _SO],
|
|
1066
|
+
[0, 0, () => ServiceOptions$]
|
|
1058
1067
|
];
|
|
1059
1068
|
export var AuthorizeVpcEndpointAccessRequest$ = [3, n0, _AVEAR,
|
|
1060
1069
|
0,
|
|
1061
|
-
[_DN, _A, _Se],
|
|
1062
|
-
[[0, 1], 0, 0], 1
|
|
1070
|
+
[_DN, _A, _Se, _SO],
|
|
1071
|
+
[[0, 1], 0, 0, () => ServiceOptions$], 1
|
|
1063
1072
|
];
|
|
1064
1073
|
export var AuthorizeVpcEndpointAccessResponse$ = [3, n0, _AVEARu,
|
|
1065
1074
|
0,
|
|
@@ -1213,7 +1222,7 @@ export var CreateApplicationResponse$ = [3, n0, _CARr,
|
|
|
1213
1222
|
];
|
|
1214
1223
|
export var CreateDomainRequest$ = [3, n0, _CDR,
|
|
1215
1224
|
0,
|
|
1216
|
-
[_DN, _EV, _CC, _EBSO, _APc, _IPAT,
|
|
1225
|
+
[_DN, _EV, _CC, _EBSO, _APc, _IPAT, _SOn, _VPCO, _CO, _EARO, _NTNEO, _AO, _LPO, _DEO, _ASO, _ICO, _TL, _ATO, _OPWO, _SUO, _AIMLO, _DSO],
|
|
1217
1226
|
[0, 0, () => ClusterConfig$, () => EBSOptions$, 0, 0, () => SnapshotOptions$, () => VPCOptions$, () => CognitoOptions$, () => EncryptionAtRestOptions$, () => NodeToNodeEncryptionOptions$, 128 | 0, () => LogPublishingOptions, () => DomainEndpointOptions$, [() => AdvancedSecurityOptionsInput$, 0], () => IdentityCenterOptionsInput$, () => TagList, () => AutoTuneOptionsInput$, () => OffPeakWindowOptions$, () => SoftwareUpdateOptions$, () => AIMLOptionsInput$, () => DeploymentStrategyOptions$], 1
|
|
1218
1227
|
];
|
|
1219
1228
|
export var CreateDomainResponse$ = [3, n0, _CDRr,
|
|
@@ -1573,7 +1582,7 @@ export var DissociatePackagesResponse$ = [3, n0, _DPRisso,
|
|
|
1573
1582
|
];
|
|
1574
1583
|
export var DomainConfig$ = [3, n0, _DC,
|
|
1575
1584
|
0,
|
|
1576
|
-
[_EV, _CC, _EBSO, _APc, _IPAT,
|
|
1585
|
+
[_EV, _CC, _EBSO, _APc, _IPAT, _SOn, _VPCO, _CO, _EARO, _NTNEO, _AO, _LPO, _DEO, _ASO, _ICO, _ATO, _CPD, _OPWO, _SUO, _MP, _AIMLO, _DSO],
|
|
1577
1586
|
[() => VersionStatus$, () => ClusterConfigStatus$, () => EBSOptionsStatus$, () => AccessPoliciesStatus$, () => IPAddressTypeStatus$, () => SnapshotOptionsStatus$, () => VPCDerivedInfoStatus$, () => CognitoOptionsStatus$, () => EncryptionAtRestOptionsStatus$, () => NodeToNodeEncryptionOptionsStatus$, () => AdvancedOptionsStatus$, () => LogPublishingOptionsStatus$, () => DomainEndpointOptionsStatus$, () => AdvancedSecurityOptionsStatus$, () => IdentityCenterOptionsStatus$, () => AutoTuneOptionsStatus$, () => ChangeProgressDetails$, () => OffPeakWindowOptionsStatus$, () => SoftwareUpdateOptionsStatus$, () => ModifyingPropertiesList, () => AIMLOptionsStatus$, () => DeploymentStrategyOptionsStatus$]
|
|
1578
1587
|
];
|
|
1579
1588
|
export var DomainEndpointOptions$ = [3, n0, _DEO,
|
|
@@ -1613,7 +1622,7 @@ export var DomainPackageDetails$ = [3, n0, _DPD,
|
|
|
1613
1622
|
];
|
|
1614
1623
|
export var DomainStatus$ = [3, n0, _DSo,
|
|
1615
1624
|
0,
|
|
1616
|
-
[_DIo, _DN, _ARN, _CC, _Cr, _De, _En, _EVn, _End, _DEVHZI, _Pro, _UP, _EV, _EBSO, _APc, _IPAT,
|
|
1625
|
+
[_DIo, _DN, _ARN, _CC, _Cr, _De, _En, _EVn, _End, _DEVHZI, _Pro, _UP, _EV, _EBSO, _APc, _IPAT, _SOn, _VPCO, _CO, _EARO, _NTNEO, _AO, _LPO, _SSO, _DEO, _ASO, _ICO, _ATO, _CPD, _OPWO, _SUO, _DPSo, _MP, _AIMLO, _DSO],
|
|
1617
1626
|
[0, 0, 0, () => ClusterConfig$, 2, 2, 0, 0, 128 | 0, 0, 2, 2, 0, () => EBSOptions$, 0, 0, () => SnapshotOptions$, () => VPCDerivedInfo$, () => CognitoOptions$, () => EncryptionAtRestOptions$, () => NodeToNodeEncryptionOptions$, 128 | 0, () => LogPublishingOptions, () => ServiceSoftwareOptions$, () => DomainEndpointOptions$, () => AdvancedSecurityOptions$, () => IdentityCenterOptions$, () => AutoTuneOptionsOutput$, () => ChangeProgressDetails$, () => OffPeakWindowOptions$, () => SoftwareUpdateOptions$, 0, () => ModifyingPropertiesList, () => AIMLOptionsOutput$, () => DeploymentStrategyOptions$], 4
|
|
1618
1627
|
];
|
|
1619
1628
|
export var DryRunProgressStatus$ = [3, n0, _DRPS,
|
|
@@ -1798,13 +1807,13 @@ export var IamIdentityCenterOptionsInput$ = [3, n0, _IICOI,
|
|
|
1798
1807
|
];
|
|
1799
1808
|
export var IdentityCenterOptions$ = [3, n0, _ICO,
|
|
1800
1809
|
0,
|
|
1801
|
-
[_EAPIA, _ICIARN, _SK, _RK, _ICAARN, _ISI],
|
|
1802
|
-
[2, 0, 0, 0, 0, 0]
|
|
1810
|
+
[_EAPIA, _ICIARN, _ICIR, _SK, _RK, _ICAARN, _ISI],
|
|
1811
|
+
[2, 0, 0, 0, 0, 0, 0]
|
|
1803
1812
|
];
|
|
1804
1813
|
export var IdentityCenterOptionsInput$ = [3, n0, _ICOI,
|
|
1805
1814
|
0,
|
|
1806
|
-
[_EAPIA, _ICIARN, _SK, _RK],
|
|
1807
|
-
[2, 0, 0, 0]
|
|
1815
|
+
[_EAPIA, _ICIARN, _ICIR, _SK, _RK],
|
|
1816
|
+
[2, 0, 0, 0, 0]
|
|
1808
1817
|
];
|
|
1809
1818
|
export var IdentityCenterOptionsStatus$ = [3, n0, _ICOS,
|
|
1810
1819
|
0,
|
|
@@ -2223,14 +2232,29 @@ export var ReservedInstanceOffering$ = [3, n0, _RIOe,
|
|
|
2223
2232
|
];
|
|
2224
2233
|
export var RevokeVpcEndpointAccessRequest$ = [3, n0, _RVEAR,
|
|
2225
2234
|
0,
|
|
2226
|
-
[_DN, _A, _Se],
|
|
2227
|
-
[[0, 1], 0, 0], 1
|
|
2235
|
+
[_DN, _A, _Se, _SO],
|
|
2236
|
+
[[0, 1], 0, 0, () => ServiceOptions$], 1
|
|
2228
2237
|
];
|
|
2229
2238
|
export var RevokeVpcEndpointAccessResponse$ = [3, n0, _RVEARe,
|
|
2230
2239
|
0,
|
|
2231
2240
|
[],
|
|
2232
2241
|
[]
|
|
2233
2242
|
];
|
|
2243
|
+
export var RollbackServiceSoftwareOptions$ = [3, n0, _RSSO,
|
|
2244
|
+
0,
|
|
2245
|
+
[_CVu, _NV, _RAo, _D],
|
|
2246
|
+
[0, 0, 2, 0]
|
|
2247
|
+
];
|
|
2248
|
+
export var RollbackServiceSoftwareUpdateRequest$ = [3, n0, _RSSUR,
|
|
2249
|
+
0,
|
|
2250
|
+
[_DN],
|
|
2251
|
+
[0], 1
|
|
2252
|
+
];
|
|
2253
|
+
export var RollbackServiceSoftwareUpdateResponse$ = [3, n0, _RSSURo,
|
|
2254
|
+
0,
|
|
2255
|
+
[_RSSO],
|
|
2256
|
+
[() => RollbackServiceSoftwareOptions$]
|
|
2257
|
+
];
|
|
2234
2258
|
export var S3GlueDataCatalog$ = [3, n0, _SGDC,
|
|
2235
2259
|
0,
|
|
2236
2260
|
[_RA],
|
|
@@ -2276,12 +2300,17 @@ export var ServerlessVectorAcceleration$ = [3, n0, _SVA,
|
|
|
2276
2300
|
[_E],
|
|
2277
2301
|
[2]
|
|
2278
2302
|
];
|
|
2303
|
+
export var ServiceOptions$ = [3, n0, _SO,
|
|
2304
|
+
0,
|
|
2305
|
+
[_SR],
|
|
2306
|
+
[64 | 0]
|
|
2307
|
+
];
|
|
2279
2308
|
export var ServiceSoftwareOptions$ = [3, n0, _SSO,
|
|
2280
2309
|
0,
|
|
2281
2310
|
[_CVu, _NV, _UAp, _Ca, _USp, _D, _AUD, _OD],
|
|
2282
2311
|
[0, 0, 2, 2, 0, 0, 4, 2]
|
|
2283
2312
|
];
|
|
2284
|
-
export var SnapshotOptions$ = [3, n0,
|
|
2313
|
+
export var SnapshotOptions$ = [3, n0, _SOn,
|
|
2285
2314
|
0,
|
|
2286
2315
|
[_ASSH],
|
|
2287
2316
|
[1]
|
|
@@ -2293,8 +2322,8 @@ export var SnapshotOptionsStatus$ = [3, n0, _SOS,
|
|
|
2293
2322
|
];
|
|
2294
2323
|
export var SoftwareUpdateOptions$ = [3, n0, _SUO,
|
|
2295
2324
|
0,
|
|
2296
|
-
[_ASUE],
|
|
2297
|
-
[2]
|
|
2325
|
+
[_ASUE, _ULSSFBG],
|
|
2326
|
+
[2, 2]
|
|
2298
2327
|
];
|
|
2299
2328
|
export var SoftwareUpdateOptionsStatus$ = [3, n0, _SUOS,
|
|
2300
2329
|
0,
|
|
@@ -2368,7 +2397,7 @@ export var UpdateDirectQueryDataSourceResponse$ = [3, n0, _UDQDSRp,
|
|
|
2368
2397
|
];
|
|
2369
2398
|
export var UpdateDomainConfigRequest$ = [3, n0, _UDCR,
|
|
2370
2399
|
0,
|
|
2371
|
-
[_DN, _CC, _EBSO,
|
|
2400
|
+
[_DN, _CC, _EBSO, _SOn, _VPCO, _CO, _AO, _APc, _IPAT, _LPO, _EARO, _DEO, _NTNEO, _ASO, _ICO, _ATO, _DR, _DRM, _OPWO, _SUO, _AIMLO, _DSO],
|
|
2372
2401
|
[[0, 1], () => ClusterConfig$, () => EBSOptions$, () => SnapshotOptions$, () => VPCOptions$, () => CognitoOptions$, 128 | 0, 0, 0, () => LogPublishingOptions, () => EncryptionAtRestOptions$, () => DomainEndpointOptions$, () => NodeToNodeEncryptionOptions$, [() => AdvancedSecurityOptionsInput$, 0], () => IdentityCenterOptionsInput$, () => AutoTuneOptions$, 2, 0, () => OffPeakWindowOptions$, () => SoftwareUpdateOptions$, () => AIMLOptionsInput$, () => DeploymentStrategyOptions$], 1
|
|
2373
2402
|
];
|
|
2374
2403
|
export var UpdateDomainConfigResponse$ = [3, n0, _UDCRp,
|
|
@@ -2608,6 +2637,7 @@ var RecurringChargeList = [1, n0, _RCL,
|
|
|
2608
2637
|
0, [() => RecurringCharge$,
|
|
2609
2638
|
{ [_xN]: _RC }]
|
|
2610
2639
|
];
|
|
2640
|
+
var RegionsList = 64 | 0;
|
|
2611
2641
|
var ReservedInstanceList = [1, n0, _RIL,
|
|
2612
2642
|
0, [() => ReservedInstance$,
|
|
2613
2643
|
0]
|
|
@@ -2909,6 +2939,9 @@ export var RemoveTags$ = [9, n0, _RT,
|
|
|
2909
2939
|
export var RevokeVpcEndpointAccess$ = [9, n0, _RVEA,
|
|
2910
2940
|
{ [_h]: ["POST", "/2021-01-01/opensearch/domain/{DomainName}/revokeVpcEndpointAccess", 200] }, () => RevokeVpcEndpointAccessRequest$, () => RevokeVpcEndpointAccessResponse$
|
|
2911
2941
|
];
|
|
2942
|
+
export var RollbackServiceSoftwareUpdate$ = [9, n0, _RSSU,
|
|
2943
|
+
{ [_h]: ["POST", "/2021-01-01/opensearch/serviceSoftwareUpdate/rollback", 200] }, () => RollbackServiceSoftwareUpdateRequest$, () => RollbackServiceSoftwareUpdateResponse$
|
|
2944
|
+
];
|
|
2912
2945
|
export var StartDomainMaintenance$ = [9, n0, _SDM,
|
|
2913
2946
|
{ [_h]: ["POST", "/2021-01-01/opensearch/domain/{DomainName}/domainMaintenance", 200] }, () => StartDomainMaintenanceRequest$, () => StartDomainMaintenanceResponse$
|
|
2914
2947
|
];
|
|
@@ -74,6 +74,7 @@ import { type RegisterCapabilityCommandInput, type RegisterCapabilityCommandOutp
|
|
|
74
74
|
import { type RejectInboundConnectionCommandInput, type RejectInboundConnectionCommandOutput } from "./commands/RejectInboundConnectionCommand";
|
|
75
75
|
import { type RemoveTagsCommandInput, type RemoveTagsCommandOutput } from "./commands/RemoveTagsCommand";
|
|
76
76
|
import { type RevokeVpcEndpointAccessCommandInput, type RevokeVpcEndpointAccessCommandOutput } from "./commands/RevokeVpcEndpointAccessCommand";
|
|
77
|
+
import { type RollbackServiceSoftwareUpdateCommandInput, type RollbackServiceSoftwareUpdateCommandOutput } from "./commands/RollbackServiceSoftwareUpdateCommand";
|
|
77
78
|
import { type StartDomainMaintenanceCommandInput, type StartDomainMaintenanceCommandOutput } from "./commands/StartDomainMaintenanceCommand";
|
|
78
79
|
import { type StartServiceSoftwareUpdateCommandInput, type StartServiceSoftwareUpdateCommandOutput } from "./commands/StartServiceSoftwareUpdateCommand";
|
|
79
80
|
import { type UpdateApplicationCommandInput, type UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
@@ -550,6 +551,12 @@ export interface OpenSearch {
|
|
|
550
551
|
revokeVpcEndpointAccess(args: RevokeVpcEndpointAccessCommandInput, options?: __HttpHandlerOptions): Promise<RevokeVpcEndpointAccessCommandOutput>;
|
|
551
552
|
revokeVpcEndpointAccess(args: RevokeVpcEndpointAccessCommandInput, cb: (err: any, data?: RevokeVpcEndpointAccessCommandOutput) => void): void;
|
|
552
553
|
revokeVpcEndpointAccess(args: RevokeVpcEndpointAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeVpcEndpointAccessCommandOutput) => void): void;
|
|
554
|
+
/**
|
|
555
|
+
* @see {@link RollbackServiceSoftwareUpdateCommand}
|
|
556
|
+
*/
|
|
557
|
+
rollbackServiceSoftwareUpdate(args: RollbackServiceSoftwareUpdateCommandInput, options?: __HttpHandlerOptions): Promise<RollbackServiceSoftwareUpdateCommandOutput>;
|
|
558
|
+
rollbackServiceSoftwareUpdate(args: RollbackServiceSoftwareUpdateCommandInput, cb: (err: any, data?: RollbackServiceSoftwareUpdateCommandOutput) => void): void;
|
|
559
|
+
rollbackServiceSoftwareUpdate(args: RollbackServiceSoftwareUpdateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RollbackServiceSoftwareUpdateCommandOutput) => void): void;
|
|
553
560
|
/**
|
|
554
561
|
* @see {@link StartDomainMaintenanceCommand}
|
|
555
562
|
*/
|
|
@@ -82,6 +82,7 @@ import type { RegisterCapabilityCommandInput, RegisterCapabilityCommandOutput }
|
|
|
82
82
|
import type { RejectInboundConnectionCommandInput, RejectInboundConnectionCommandOutput } from "./commands/RejectInboundConnectionCommand";
|
|
83
83
|
import type { RemoveTagsCommandInput, RemoveTagsCommandOutput } from "./commands/RemoveTagsCommand";
|
|
84
84
|
import type { RevokeVpcEndpointAccessCommandInput, RevokeVpcEndpointAccessCommandOutput } from "./commands/RevokeVpcEndpointAccessCommand";
|
|
85
|
+
import type { RollbackServiceSoftwareUpdateCommandInput, RollbackServiceSoftwareUpdateCommandOutput } from "./commands/RollbackServiceSoftwareUpdateCommand";
|
|
85
86
|
import type { StartDomainMaintenanceCommandInput, StartDomainMaintenanceCommandOutput } from "./commands/StartDomainMaintenanceCommand";
|
|
86
87
|
import type { StartServiceSoftwareUpdateCommandInput, StartServiceSoftwareUpdateCommandOutput } from "./commands/StartServiceSoftwareUpdateCommand";
|
|
87
88
|
import type { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
@@ -100,11 +101,11 @@ export { __Client };
|
|
|
100
101
|
/**
|
|
101
102
|
* @public
|
|
102
103
|
*/
|
|
103
|
-
export type ServiceInputTypes = AcceptInboundConnectionCommandInput | AddDataSourceCommandInput | AddDirectQueryDataSourceCommandInput | AddTagsCommandInput | AssociatePackageCommandInput | AssociatePackagesCommandInput | AuthorizeVpcEndpointAccessCommandInput | CancelDomainConfigChangeCommandInput | CancelServiceSoftwareUpdateCommandInput | CreateApplicationCommandInput | CreateDomainCommandInput | CreateIndexCommandInput | CreateOutboundConnectionCommandInput | CreatePackageCommandInput | CreateVpcEndpointCommandInput | DeleteApplicationCommandInput | DeleteDataSourceCommandInput | DeleteDirectQueryDataSourceCommandInput | DeleteDomainCommandInput | DeleteInboundConnectionCommandInput | DeleteIndexCommandInput | DeleteOutboundConnectionCommandInput | DeletePackageCommandInput | DeleteVpcEndpointCommandInput | DeregisterCapabilityCommandInput | DescribeDomainAutoTunesCommandInput | DescribeDomainChangeProgressCommandInput | DescribeDomainCommandInput | DescribeDomainConfigCommandInput | DescribeDomainHealthCommandInput | DescribeDomainNodesCommandInput | DescribeDomainsCommandInput | DescribeDryRunProgressCommandInput | DescribeInboundConnectionsCommandInput | DescribeInsightDetailsCommandInput | DescribeInstanceTypeLimitsCommandInput | DescribeOutboundConnectionsCommandInput | DescribePackagesCommandInput | DescribeReservedInstanceOfferingsCommandInput | DescribeReservedInstancesCommandInput | DescribeVpcEndpointsCommandInput | DissociatePackageCommandInput | DissociatePackagesCommandInput | GetApplicationCommandInput | GetCapabilityCommandInput | GetCompatibleVersionsCommandInput | GetDataSourceCommandInput | GetDefaultApplicationSettingCommandInput | GetDirectQueryDataSourceCommandInput | GetDomainMaintenanceStatusCommandInput | GetIndexCommandInput | GetPackageVersionHistoryCommandInput | GetUpgradeHistoryCommandInput | GetUpgradeStatusCommandInput | ListApplicationsCommandInput | ListDataSourcesCommandInput | ListDirectQueryDataSourcesCommandInput | ListDomainMaintenancesCommandInput | ListDomainNamesCommandInput | ListDomainsForPackageCommandInput | ListInsightsCommandInput | ListInstanceTypeDetailsCommandInput | ListPackagesForDomainCommandInput | ListScheduledActionsCommandInput | ListTagsCommandInput | ListVersionsCommandInput | ListVpcEndpointAccessCommandInput | ListVpcEndpointsCommandInput | ListVpcEndpointsForDomainCommandInput | PurchaseReservedInstanceOfferingCommandInput | PutDefaultApplicationSettingCommandInput | RegisterCapabilityCommandInput | RejectInboundConnectionCommandInput | RemoveTagsCommandInput | RevokeVpcEndpointAccessCommandInput | StartDomainMaintenanceCommandInput | StartServiceSoftwareUpdateCommandInput | UpdateApplicationCommandInput | UpdateDataSourceCommandInput | UpdateDirectQueryDataSourceCommandInput | UpdateDomainConfigCommandInput | UpdateIndexCommandInput | UpdatePackageCommandInput | UpdatePackageScopeCommandInput | UpdateScheduledActionCommandInput | UpdateVpcEndpointCommandInput | UpgradeDomainCommandInput;
|
|
104
|
+
export type ServiceInputTypes = AcceptInboundConnectionCommandInput | AddDataSourceCommandInput | AddDirectQueryDataSourceCommandInput | AddTagsCommandInput | AssociatePackageCommandInput | AssociatePackagesCommandInput | AuthorizeVpcEndpointAccessCommandInput | CancelDomainConfigChangeCommandInput | CancelServiceSoftwareUpdateCommandInput | CreateApplicationCommandInput | CreateDomainCommandInput | CreateIndexCommandInput | CreateOutboundConnectionCommandInput | CreatePackageCommandInput | CreateVpcEndpointCommandInput | DeleteApplicationCommandInput | DeleteDataSourceCommandInput | DeleteDirectQueryDataSourceCommandInput | DeleteDomainCommandInput | DeleteInboundConnectionCommandInput | DeleteIndexCommandInput | DeleteOutboundConnectionCommandInput | DeletePackageCommandInput | DeleteVpcEndpointCommandInput | DeregisterCapabilityCommandInput | DescribeDomainAutoTunesCommandInput | DescribeDomainChangeProgressCommandInput | DescribeDomainCommandInput | DescribeDomainConfigCommandInput | DescribeDomainHealthCommandInput | DescribeDomainNodesCommandInput | DescribeDomainsCommandInput | DescribeDryRunProgressCommandInput | DescribeInboundConnectionsCommandInput | DescribeInsightDetailsCommandInput | DescribeInstanceTypeLimitsCommandInput | DescribeOutboundConnectionsCommandInput | DescribePackagesCommandInput | DescribeReservedInstanceOfferingsCommandInput | DescribeReservedInstancesCommandInput | DescribeVpcEndpointsCommandInput | DissociatePackageCommandInput | DissociatePackagesCommandInput | GetApplicationCommandInput | GetCapabilityCommandInput | GetCompatibleVersionsCommandInput | GetDataSourceCommandInput | GetDefaultApplicationSettingCommandInput | GetDirectQueryDataSourceCommandInput | GetDomainMaintenanceStatusCommandInput | GetIndexCommandInput | GetPackageVersionHistoryCommandInput | GetUpgradeHistoryCommandInput | GetUpgradeStatusCommandInput | ListApplicationsCommandInput | ListDataSourcesCommandInput | ListDirectQueryDataSourcesCommandInput | ListDomainMaintenancesCommandInput | ListDomainNamesCommandInput | ListDomainsForPackageCommandInput | ListInsightsCommandInput | ListInstanceTypeDetailsCommandInput | ListPackagesForDomainCommandInput | ListScheduledActionsCommandInput | ListTagsCommandInput | ListVersionsCommandInput | ListVpcEndpointAccessCommandInput | ListVpcEndpointsCommandInput | ListVpcEndpointsForDomainCommandInput | PurchaseReservedInstanceOfferingCommandInput | PutDefaultApplicationSettingCommandInput | RegisterCapabilityCommandInput | RejectInboundConnectionCommandInput | RemoveTagsCommandInput | RevokeVpcEndpointAccessCommandInput | RollbackServiceSoftwareUpdateCommandInput | StartDomainMaintenanceCommandInput | StartServiceSoftwareUpdateCommandInput | UpdateApplicationCommandInput | UpdateDataSourceCommandInput | UpdateDirectQueryDataSourceCommandInput | UpdateDomainConfigCommandInput | UpdateIndexCommandInput | UpdatePackageCommandInput | UpdatePackageScopeCommandInput | UpdateScheduledActionCommandInput | UpdateVpcEndpointCommandInput | UpgradeDomainCommandInput;
|
|
104
105
|
/**
|
|
105
106
|
* @public
|
|
106
107
|
*/
|
|
107
|
-
export type ServiceOutputTypes = AcceptInboundConnectionCommandOutput | AddDataSourceCommandOutput | AddDirectQueryDataSourceCommandOutput | AddTagsCommandOutput | AssociatePackageCommandOutput | AssociatePackagesCommandOutput | AuthorizeVpcEndpointAccessCommandOutput | CancelDomainConfigChangeCommandOutput | CancelServiceSoftwareUpdateCommandOutput | CreateApplicationCommandOutput | CreateDomainCommandOutput | CreateIndexCommandOutput | CreateOutboundConnectionCommandOutput | CreatePackageCommandOutput | CreateVpcEndpointCommandOutput | DeleteApplicationCommandOutput | DeleteDataSourceCommandOutput | DeleteDirectQueryDataSourceCommandOutput | DeleteDomainCommandOutput | DeleteInboundConnectionCommandOutput | DeleteIndexCommandOutput | DeleteOutboundConnectionCommandOutput | DeletePackageCommandOutput | DeleteVpcEndpointCommandOutput | DeregisterCapabilityCommandOutput | DescribeDomainAutoTunesCommandOutput | DescribeDomainChangeProgressCommandOutput | DescribeDomainCommandOutput | DescribeDomainConfigCommandOutput | DescribeDomainHealthCommandOutput | DescribeDomainNodesCommandOutput | DescribeDomainsCommandOutput | DescribeDryRunProgressCommandOutput | DescribeInboundConnectionsCommandOutput | DescribeInsightDetailsCommandOutput | DescribeInstanceTypeLimitsCommandOutput | DescribeOutboundConnectionsCommandOutput | DescribePackagesCommandOutput | DescribeReservedInstanceOfferingsCommandOutput | DescribeReservedInstancesCommandOutput | DescribeVpcEndpointsCommandOutput | DissociatePackageCommandOutput | DissociatePackagesCommandOutput | GetApplicationCommandOutput | GetCapabilityCommandOutput | GetCompatibleVersionsCommandOutput | GetDataSourceCommandOutput | GetDefaultApplicationSettingCommandOutput | GetDirectQueryDataSourceCommandOutput | GetDomainMaintenanceStatusCommandOutput | GetIndexCommandOutput | GetPackageVersionHistoryCommandOutput | GetUpgradeHistoryCommandOutput | GetUpgradeStatusCommandOutput | ListApplicationsCommandOutput | ListDataSourcesCommandOutput | ListDirectQueryDataSourcesCommandOutput | ListDomainMaintenancesCommandOutput | ListDomainNamesCommandOutput | ListDomainsForPackageCommandOutput | ListInsightsCommandOutput | ListInstanceTypeDetailsCommandOutput | ListPackagesForDomainCommandOutput | ListScheduledActionsCommandOutput | ListTagsCommandOutput | ListVersionsCommandOutput | ListVpcEndpointAccessCommandOutput | ListVpcEndpointsCommandOutput | ListVpcEndpointsForDomainCommandOutput | PurchaseReservedInstanceOfferingCommandOutput | PutDefaultApplicationSettingCommandOutput | RegisterCapabilityCommandOutput | RejectInboundConnectionCommandOutput | RemoveTagsCommandOutput | RevokeVpcEndpointAccessCommandOutput | StartDomainMaintenanceCommandOutput | StartServiceSoftwareUpdateCommandOutput | UpdateApplicationCommandOutput | UpdateDataSourceCommandOutput | UpdateDirectQueryDataSourceCommandOutput | UpdateDomainConfigCommandOutput | UpdateIndexCommandOutput | UpdatePackageCommandOutput | UpdatePackageScopeCommandOutput | UpdateScheduledActionCommandOutput | UpdateVpcEndpointCommandOutput | UpgradeDomainCommandOutput;
|
|
108
|
+
export type ServiceOutputTypes = AcceptInboundConnectionCommandOutput | AddDataSourceCommandOutput | AddDirectQueryDataSourceCommandOutput | AddTagsCommandOutput | AssociatePackageCommandOutput | AssociatePackagesCommandOutput | AuthorizeVpcEndpointAccessCommandOutput | CancelDomainConfigChangeCommandOutput | CancelServiceSoftwareUpdateCommandOutput | CreateApplicationCommandOutput | CreateDomainCommandOutput | CreateIndexCommandOutput | CreateOutboundConnectionCommandOutput | CreatePackageCommandOutput | CreateVpcEndpointCommandOutput | DeleteApplicationCommandOutput | DeleteDataSourceCommandOutput | DeleteDirectQueryDataSourceCommandOutput | DeleteDomainCommandOutput | DeleteInboundConnectionCommandOutput | DeleteIndexCommandOutput | DeleteOutboundConnectionCommandOutput | DeletePackageCommandOutput | DeleteVpcEndpointCommandOutput | DeregisterCapabilityCommandOutput | DescribeDomainAutoTunesCommandOutput | DescribeDomainChangeProgressCommandOutput | DescribeDomainCommandOutput | DescribeDomainConfigCommandOutput | DescribeDomainHealthCommandOutput | DescribeDomainNodesCommandOutput | DescribeDomainsCommandOutput | DescribeDryRunProgressCommandOutput | DescribeInboundConnectionsCommandOutput | DescribeInsightDetailsCommandOutput | DescribeInstanceTypeLimitsCommandOutput | DescribeOutboundConnectionsCommandOutput | DescribePackagesCommandOutput | DescribeReservedInstanceOfferingsCommandOutput | DescribeReservedInstancesCommandOutput | DescribeVpcEndpointsCommandOutput | DissociatePackageCommandOutput | DissociatePackagesCommandOutput | GetApplicationCommandOutput | GetCapabilityCommandOutput | GetCompatibleVersionsCommandOutput | GetDataSourceCommandOutput | GetDefaultApplicationSettingCommandOutput | GetDirectQueryDataSourceCommandOutput | GetDomainMaintenanceStatusCommandOutput | GetIndexCommandOutput | GetPackageVersionHistoryCommandOutput | GetUpgradeHistoryCommandOutput | GetUpgradeStatusCommandOutput | ListApplicationsCommandOutput | ListDataSourcesCommandOutput | ListDirectQueryDataSourcesCommandOutput | ListDomainMaintenancesCommandOutput | ListDomainNamesCommandOutput | ListDomainsForPackageCommandOutput | ListInsightsCommandOutput | ListInstanceTypeDetailsCommandOutput | ListPackagesForDomainCommandOutput | ListScheduledActionsCommandOutput | ListTagsCommandOutput | ListVersionsCommandOutput | ListVpcEndpointAccessCommandOutput | ListVpcEndpointsCommandOutput | ListVpcEndpointsForDomainCommandOutput | PurchaseReservedInstanceOfferingCommandOutput | PutDefaultApplicationSettingCommandOutput | RegisterCapabilityCommandOutput | RejectInboundConnectionCommandOutput | RemoveTagsCommandOutput | RevokeVpcEndpointAccessCommandOutput | RollbackServiceSoftwareUpdateCommandOutput | StartDomainMaintenanceCommandOutput | StartServiceSoftwareUpdateCommandOutput | UpdateApplicationCommandOutput | UpdateDataSourceCommandOutput | UpdateDirectQueryDataSourceCommandOutput | UpdateDomainConfigCommandOutput | UpdateIndexCommandOutput | UpdatePackageCommandOutput | UpdatePackageScopeCommandOutput | UpdateScheduledActionCommandOutput | UpdateVpcEndpointCommandOutput | UpgradeDomainCommandOutput;
|
|
108
109
|
/**
|
|
109
110
|
* @public
|
|
110
111
|
*/
|
|
@@ -41,6 +41,11 @@ declare const AuthorizeVpcEndpointAccessCommand_base: {
|
|
|
41
41
|
* DomainName: "STRING_VALUE", // required
|
|
42
42
|
* Account: "STRING_VALUE",
|
|
43
43
|
* Service: "application.opensearchservice.amazonaws.com",
|
|
44
|
+
* ServiceOptions: { // ServiceOptions
|
|
45
|
+
* SupportedRegions: [ // RegionsList
|
|
46
|
+
* "STRING_VALUE",
|
|
47
|
+
* ],
|
|
48
|
+
* },
|
|
44
49
|
* };
|
|
45
50
|
* const command = new AuthorizeVpcEndpointAccessCommand(input);
|
|
46
51
|
* const response = await client.send(command);
|
|
@@ -48,6 +53,11 @@ declare const AuthorizeVpcEndpointAccessCommand_base: {
|
|
|
48
53
|
* // AuthorizedPrincipal: { // AuthorizedPrincipal
|
|
49
54
|
* // PrincipalType: "AWS_ACCOUNT" || "AWS_SERVICE",
|
|
50
55
|
* // Principal: "STRING_VALUE",
|
|
56
|
+
* // ServiceOptions: { // ServiceOptions
|
|
57
|
+
* // SupportedRegions: [ // RegionsList
|
|
58
|
+
* // "STRING_VALUE",
|
|
59
|
+
* // ],
|
|
60
|
+
* // },
|
|
51
61
|
* // },
|
|
52
62
|
* // };
|
|
53
63
|
*
|