@aws-sdk/client-opensearch 3.565.0 → 3.566.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 CHANGED
@@ -3255,6 +3255,7 @@ var de_DomainStatus = /* @__PURE__ */ __name((output, context) => {
3255
3255
  Created: import_smithy_client.expectBoolean,
3256
3256
  Deleted: import_smithy_client.expectBoolean,
3257
3257
  DomainEndpointOptions: import_smithy_client._json,
3258
+ DomainEndpointV2HostedZoneId: import_smithy_client.expectString,
3258
3259
  DomainId: import_smithy_client.expectString,
3259
3260
  DomainName: import_smithy_client.expectString,
3260
3261
  DomainProcessingStatus: import_smithy_client.expectString,
@@ -2234,6 +2234,7 @@ const de_DomainStatus = (output, context) => {
2234
2234
  Created: __expectBoolean,
2235
2235
  Deleted: __expectBoolean,
2236
2236
  DomainEndpointOptions: _json,
2237
+ DomainEndpointV2HostedZoneId: __expectString,
2237
2238
  DomainId: __expectString,
2238
2239
  DomainName: __expectString,
2239
2240
  DomainProcessingStatus: __expectString,
@@ -28,7 +28,8 @@ declare const AddTagsCommand_base: {
28
28
  /**
29
29
  * <p>Attaches tags to an existing Amazon OpenSearch Service domain. Tags are a set of
30
30
  * case-sensitive key-value pairs. A domain can have up to 10 tags. For more information, see
31
- * <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/managedomains-awsresourcetagging.html">Tagging Amazon OpenSearch Service domains</a>.</p>
31
+ * <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/managedomains-awsresourcetagging.html">Tagging Amazon OpenSearch Service domains</a>.
32
+ * </p>
32
33
  * @example
33
34
  * Use a bare-bones client and the command you need to make an API call.
34
35
  * ```javascript
@@ -172,6 +172,7 @@ declare const CreateDomainCommand_base: {
172
172
  * // Endpoints: { // EndpointsMap
173
173
  * // "<keys>": "STRING_VALUE",
174
174
  * // },
175
+ * // DomainEndpointV2HostedZoneId: "STRING_VALUE",
175
176
  * // Processing: true || false,
176
177
  * // UpgradeProcessing: true || false,
177
178
  * // EngineVersion: "STRING_VALUE",
@@ -51,6 +51,7 @@ declare const DeleteDomainCommand_base: {
51
51
  * // Endpoints: { // EndpointsMap
52
52
  * // "<keys>": "STRING_VALUE",
53
53
  * // },
54
+ * // DomainEndpointV2HostedZoneId: "STRING_VALUE",
54
55
  * // Processing: true || false,
55
56
  * // UpgradeProcessing: true || false,
56
57
  * // EngineVersion: "STRING_VALUE",
@@ -51,6 +51,7 @@ declare const DescribeDomainCommand_base: {
51
51
  * // Endpoints: { // EndpointsMap
52
52
  * // "<keys>": "STRING_VALUE",
53
53
  * // },
54
+ * // DomainEndpointV2HostedZoneId: "STRING_VALUE",
54
55
  * // Processing: true || false,
55
56
  * // UpgradeProcessing: true || false,
56
57
  * // EngineVersion: "STRING_VALUE",
@@ -54,6 +54,7 @@ declare const DescribeDomainsCommand_base: {
54
54
  * // Endpoints: { // EndpointsMap
55
55
  * // "<keys>": "STRING_VALUE",
56
56
  * // },
57
+ * // DomainEndpointV2HostedZoneId: "STRING_VALUE",
57
58
  * // Processing: true || false,
58
59
  * // UpgradeProcessing: true || false,
59
60
  * // EngineVersion: "STRING_VALUE",
@@ -65,6 +65,7 @@ declare const DescribeDryRunProgressCommand_base: {
65
65
  * // Endpoints: { // EndpointsMap
66
66
  * // "<keys>": "STRING_VALUE",
67
67
  * // },
68
+ * // DomainEndpointV2HostedZoneId: "STRING_VALUE",
68
69
  * // Processing: true || false,
69
70
  * // UpgradeProcessing: true || false,
70
71
  * // EngineVersion: "STRING_VALUE",
@@ -2142,12 +2142,29 @@ export interface DomainStatus {
2142
2142
  */
2143
2143
  EndpointV2?: string;
2144
2144
  /**
2145
- * <p>The key-value pair that exists if the OpenSearch Service domain uses VPC endpoints. Example
2146
- * <code>key, value</code>:
2147
- * <code>'vpc','vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.us-east-1.es.amazonaws.com'</code>.</p>
2145
+ * <p>The key-value pair that exists if the OpenSearch Service domain uses VPC endpoints. For example:</p>
2146
+ * <ul>
2147
+ * <li>
2148
+ * <p>
2149
+ * <b>IPv4 IP addresses</b> -
2150
+ * <code>'vpc','vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.us-east-1.es.amazonaws.com'</code>
2151
+ * </p>
2152
+ * </li>
2153
+ * <li>
2154
+ * <p>
2155
+ * <b>Dual stack IP addresses</b> -
2156
+ * <code>'vpcv2':'vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.aos.us-east-1.on.aws'</code>
2157
+ * </p>
2158
+ * </li>
2159
+ * </ul>
2148
2160
  * @public
2149
2161
  */
2150
2162
  Endpoints?: Record<string, string>;
2163
+ /**
2164
+ * <p>The DualStack Hosted Zone Id for the domain. </p>
2165
+ * @public
2166
+ */
2167
+ DomainEndpointV2HostedZoneId?: string;
2151
2168
  /**
2152
2169
  * <p>The status of the domain configuration. True if OpenSearch Service is processing
2153
2170
  * configuration changes. False if the configuration is active.</p>
@@ -656,6 +656,7 @@ export interface DomainStatus {
656
656
  Endpoint?: string;
657
657
  EndpointV2?: string;
658
658
  Endpoints?: Record<string, string>;
659
+ DomainEndpointV2HostedZoneId?: string;
659
660
  Processing?: boolean;
660
661
  UpgradeProcessing?: boolean;
661
662
  EngineVersion?: string;
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.565.0",
4
+ "version": "3.566.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",