@aws-sdk/client-elasticsearch-service 3.952.0 → 3.954.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 +816 -566
- package/dist-cjs/runtimeConfig.shared.js +7 -1
- package/dist-es/commands/AcceptInboundCrossClusterSearchConnectionCommand.js +2 -2
- package/dist-es/commands/AddTagsCommand.js +2 -2
- package/dist-es/commands/AssociatePackageCommand.js +2 -2
- package/dist-es/commands/AuthorizeVpcEndpointAccessCommand.js +2 -2
- package/dist-es/commands/CancelDomainConfigChangeCommand.js +2 -2
- package/dist-es/commands/CancelElasticsearchServiceSoftwareUpdateCommand.js +2 -2
- package/dist-es/commands/CreateElasticsearchDomainCommand.js +2 -2
- package/dist-es/commands/CreateOutboundCrossClusterSearchConnectionCommand.js +2 -2
- package/dist-es/commands/CreatePackageCommand.js +2 -2
- package/dist-es/commands/CreateVpcEndpointCommand.js +2 -2
- package/dist-es/commands/DeleteElasticsearchDomainCommand.js +2 -2
- package/dist-es/commands/DeleteElasticsearchServiceRoleCommand.js +2 -2
- package/dist-es/commands/DeleteInboundCrossClusterSearchConnectionCommand.js +2 -2
- package/dist-es/commands/DeleteOutboundCrossClusterSearchConnectionCommand.js +2 -2
- package/dist-es/commands/DeletePackageCommand.js +2 -2
- package/dist-es/commands/DeleteVpcEndpointCommand.js +2 -2
- package/dist-es/commands/DescribeDomainAutoTunesCommand.js +2 -2
- package/dist-es/commands/DescribeDomainChangeProgressCommand.js +2 -2
- package/dist-es/commands/DescribeElasticsearchDomainCommand.js +2 -2
- package/dist-es/commands/DescribeElasticsearchDomainConfigCommand.js +2 -2
- package/dist-es/commands/DescribeElasticsearchDomainsCommand.js +2 -2
- package/dist-es/commands/DescribeElasticsearchInstanceTypeLimitsCommand.js +2 -2
- package/dist-es/commands/DescribeInboundCrossClusterSearchConnectionsCommand.js +2 -2
- package/dist-es/commands/DescribeOutboundCrossClusterSearchConnectionsCommand.js +2 -2
- package/dist-es/commands/DescribePackagesCommand.js +2 -2
- package/dist-es/commands/DescribeReservedElasticsearchInstanceOfferingsCommand.js +2 -2
- package/dist-es/commands/DescribeReservedElasticsearchInstancesCommand.js +2 -2
- package/dist-es/commands/DescribeVpcEndpointsCommand.js +2 -2
- package/dist-es/commands/DissociatePackageCommand.js +2 -2
- package/dist-es/commands/GetCompatibleElasticsearchVersionsCommand.js +2 -2
- package/dist-es/commands/GetPackageVersionHistoryCommand.js +2 -2
- package/dist-es/commands/GetUpgradeHistoryCommand.js +2 -2
- package/dist-es/commands/GetUpgradeStatusCommand.js +2 -2
- package/dist-es/commands/ListDomainNamesCommand.js +2 -2
- package/dist-es/commands/ListDomainsForPackageCommand.js +2 -2
- package/dist-es/commands/ListElasticsearchInstanceTypesCommand.js +2 -2
- package/dist-es/commands/ListElasticsearchVersionsCommand.js +2 -2
- package/dist-es/commands/ListPackagesForDomainCommand.js +2 -2
- package/dist-es/commands/ListTagsCommand.js +2 -2
- package/dist-es/commands/ListVpcEndpointAccessCommand.js +2 -2
- package/dist-es/commands/ListVpcEndpointsCommand.js +2 -2
- package/dist-es/commands/ListVpcEndpointsForDomainCommand.js +2 -2
- package/dist-es/commands/PurchaseReservedElasticsearchInstanceOfferingCommand.js +2 -2
- package/dist-es/commands/RejectInboundCrossClusterSearchConnectionCommand.js +2 -2
- package/dist-es/commands/RemoveTagsCommand.js +2 -2
- package/dist-es/commands/RevokeVpcEndpointAccessCommand.js +2 -2
- package/dist-es/commands/StartElasticsearchServiceSoftwareUpdateCommand.js +2 -2
- package/dist-es/commands/UpdateElasticsearchDomainConfigCommand.js +2 -2
- package/dist-es/commands/UpdatePackageCommand.js +2 -2
- package/dist-es/commands/UpdateVpcEndpointCommand.js +2 -2
- package/dist-es/commands/UpgradeElasticsearchDomainCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -1
- package/dist-es/schemas/schemas_0.js +508 -500
- package/dist-types/ElasticsearchServiceClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +243 -288
- package/dist-types/ts3.4/ElasticsearchServiceClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +242 -290
- package/package.json +34 -34
|
@@ -26,7 +26,13 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.elasticsearchservice",
|
|
32
|
+
xmlNamespace: "http://es.amazonaws.com/doc/2015-01-01/",
|
|
33
|
+
version: "2015-01-01",
|
|
34
|
+
serviceTarget: "AmazonElasticsearchService2015",
|
|
35
|
+
},
|
|
30
36
|
serviceId: config?.serviceId ?? "Elasticsearch Service",
|
|
31
37
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
38
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AcceptInboundCrossClusterSearchConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { AcceptInboundCrossClusterSearchConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AcceptInboundCrossClusterSearchConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AcceptInboundCrossClusterSearchConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "AcceptInboundCrossClusterSearchConnection", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "AcceptInboundCrossClusterSearchConnectionCommand")
|
|
14
|
-
.sc(AcceptInboundCrossClusterSearchConnection)
|
|
14
|
+
.sc(AcceptInboundCrossClusterSearchConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AddTags } from "../schemas/schemas_0";
|
|
4
|
+
import { AddTags$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AddTagsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AddTagsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "AddTags", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "AddTagsCommand")
|
|
14
|
-
.sc(AddTags)
|
|
14
|
+
.sc(AddTags$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociatePackage } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociatePackage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociatePackageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociatePackageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "AssociatePackage", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "AssociatePackageCommand")
|
|
14
|
-
.sc(AssociatePackage)
|
|
14
|
+
.sc(AssociatePackage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AuthorizeVpcEndpointAccess } from "../schemas/schemas_0";
|
|
4
|
+
import { AuthorizeVpcEndpointAccess$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AuthorizeVpcEndpointAccessCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AuthorizeVpcEndpointAccessCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "AuthorizeVpcEndpointAccess", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "AuthorizeVpcEndpointAccessCommand")
|
|
14
|
-
.sc(AuthorizeVpcEndpointAccess)
|
|
14
|
+
.sc(AuthorizeVpcEndpointAccess$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CancelDomainConfigChange } from "../schemas/schemas_0";
|
|
4
|
+
import { CancelDomainConfigChange$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CancelDomainConfigChangeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CancelDomainConfigChangeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "CancelDomainConfigChange", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "CancelDomainConfigChangeCommand")
|
|
14
|
-
.sc(CancelDomainConfigChange)
|
|
14
|
+
.sc(CancelDomainConfigChange$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CancelElasticsearchServiceSoftwareUpdate } from "../schemas/schemas_0";
|
|
4
|
+
import { CancelElasticsearchServiceSoftwareUpdate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CancelElasticsearchServiceSoftwareUpdateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CancelElasticsearchServiceSoftwareUpdateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "CancelElasticsearchServiceSoftwareUpdate", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "CancelElasticsearchServiceSoftwareUpdateCommand")
|
|
14
|
-
.sc(CancelElasticsearchServiceSoftwareUpdate)
|
|
14
|
+
.sc(CancelElasticsearchServiceSoftwareUpdate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateElasticsearchDomain } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateElasticsearchDomain$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateElasticsearchDomainCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateElasticsearchDomainCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "CreateElasticsearchDomain", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "CreateElasticsearchDomainCommand")
|
|
14
|
-
.sc(CreateElasticsearchDomain)
|
|
14
|
+
.sc(CreateElasticsearchDomain$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateOutboundCrossClusterSearchConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateOutboundCrossClusterSearchConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateOutboundCrossClusterSearchConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateOutboundCrossClusterSearchConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "CreateOutboundCrossClusterSearchConnection", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "CreateOutboundCrossClusterSearchConnectionCommand")
|
|
14
|
-
.sc(CreateOutboundCrossClusterSearchConnection)
|
|
14
|
+
.sc(CreateOutboundCrossClusterSearchConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreatePackage } from "../schemas/schemas_0";
|
|
4
|
+
import { CreatePackage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreatePackageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreatePackageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "CreatePackage", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "CreatePackageCommand")
|
|
14
|
-
.sc(CreatePackage)
|
|
14
|
+
.sc(CreatePackage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateVpcEndpoint } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateVpcEndpoint$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateVpcEndpointCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateVpcEndpointCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "CreateVpcEndpoint", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "CreateVpcEndpointCommand")
|
|
14
|
-
.sc(CreateVpcEndpoint)
|
|
14
|
+
.sc(CreateVpcEndpoint$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteElasticsearchDomain } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteElasticsearchDomain$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteElasticsearchDomainCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteElasticsearchDomainCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DeleteElasticsearchDomain", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DeleteElasticsearchDomainCommand")
|
|
14
|
-
.sc(DeleteElasticsearchDomain)
|
|
14
|
+
.sc(DeleteElasticsearchDomain$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteElasticsearchServiceRole } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteElasticsearchServiceRole$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteElasticsearchServiceRoleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteElasticsearchServiceRoleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DeleteElasticsearchServiceRole", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DeleteElasticsearchServiceRoleCommand")
|
|
14
|
-
.sc(DeleteElasticsearchServiceRole)
|
|
14
|
+
.sc(DeleteElasticsearchServiceRole$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteInboundCrossClusterSearchConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteInboundCrossClusterSearchConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteInboundCrossClusterSearchConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteInboundCrossClusterSearchConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DeleteInboundCrossClusterSearchConnection", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DeleteInboundCrossClusterSearchConnectionCommand")
|
|
14
|
-
.sc(DeleteInboundCrossClusterSearchConnection)
|
|
14
|
+
.sc(DeleteInboundCrossClusterSearchConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteOutboundCrossClusterSearchConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteOutboundCrossClusterSearchConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteOutboundCrossClusterSearchConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteOutboundCrossClusterSearchConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DeleteOutboundCrossClusterSearchConnection", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DeleteOutboundCrossClusterSearchConnectionCommand")
|
|
14
|
-
.sc(DeleteOutboundCrossClusterSearchConnection)
|
|
14
|
+
.sc(DeleteOutboundCrossClusterSearchConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeletePackage } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePackage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePackageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePackageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DeletePackage", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DeletePackageCommand")
|
|
14
|
-
.sc(DeletePackage)
|
|
14
|
+
.sc(DeletePackage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteVpcEndpoint } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteVpcEndpoint$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteVpcEndpointCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteVpcEndpointCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DeleteVpcEndpoint", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DeleteVpcEndpointCommand")
|
|
14
|
-
.sc(DeleteVpcEndpoint)
|
|
14
|
+
.sc(DeleteVpcEndpoint$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeDomainAutoTunes } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeDomainAutoTunes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeDomainAutoTunesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeDomainAutoTunesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DescribeDomainAutoTunes", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DescribeDomainAutoTunesCommand")
|
|
14
|
-
.sc(DescribeDomainAutoTunes)
|
|
14
|
+
.sc(DescribeDomainAutoTunes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeDomainChangeProgress } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeDomainChangeProgress$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeDomainChangeProgressCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeDomainChangeProgressCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DescribeDomainChangeProgress", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DescribeDomainChangeProgressCommand")
|
|
14
|
-
.sc(DescribeDomainChangeProgress)
|
|
14
|
+
.sc(DescribeDomainChangeProgress$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeElasticsearchDomain } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeElasticsearchDomain$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeElasticsearchDomainCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeElasticsearchDomainCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DescribeElasticsearchDomain", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DescribeElasticsearchDomainCommand")
|
|
14
|
-
.sc(DescribeElasticsearchDomain)
|
|
14
|
+
.sc(DescribeElasticsearchDomain$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeElasticsearchDomainConfig } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeElasticsearchDomainConfig$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeElasticsearchDomainConfigCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeElasticsearchDomainConfigCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DescribeElasticsearchDomainConfig", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DescribeElasticsearchDomainConfigCommand")
|
|
14
|
-
.sc(DescribeElasticsearchDomainConfig)
|
|
14
|
+
.sc(DescribeElasticsearchDomainConfig$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeElasticsearchDomains } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeElasticsearchDomains$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeElasticsearchDomainsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeElasticsearchDomainsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DescribeElasticsearchDomains", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DescribeElasticsearchDomainsCommand")
|
|
14
|
-
.sc(DescribeElasticsearchDomains)
|
|
14
|
+
.sc(DescribeElasticsearchDomains$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeElasticsearchInstanceTypeLimits } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeElasticsearchInstanceTypeLimits$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeElasticsearchInstanceTypeLimitsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeElasticsearchInstanceTypeLimitsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DescribeElasticsearchInstanceTypeLimits", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DescribeElasticsearchInstanceTypeLimitsCommand")
|
|
14
|
-
.sc(DescribeElasticsearchInstanceTypeLimits)
|
|
14
|
+
.sc(DescribeElasticsearchInstanceTypeLimits$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeInboundCrossClusterSearchConnections } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeInboundCrossClusterSearchConnections$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeInboundCrossClusterSearchConnectionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeInboundCrossClusterSearchConnectionsCommand extends $Comman
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DescribeInboundCrossClusterSearchConnections", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DescribeInboundCrossClusterSearchConnectionsCommand")
|
|
14
|
-
.sc(DescribeInboundCrossClusterSearchConnections)
|
|
14
|
+
.sc(DescribeInboundCrossClusterSearchConnections$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeOutboundCrossClusterSearchConnections } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeOutboundCrossClusterSearchConnections$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeOutboundCrossClusterSearchConnectionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeOutboundCrossClusterSearchConnectionsCommand extends $Comma
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DescribeOutboundCrossClusterSearchConnections", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DescribeOutboundCrossClusterSearchConnectionsCommand")
|
|
14
|
-
.sc(DescribeOutboundCrossClusterSearchConnections)
|
|
14
|
+
.sc(DescribeOutboundCrossClusterSearchConnections$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribePackages } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribePackages$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribePackagesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribePackagesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DescribePackages", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DescribePackagesCommand")
|
|
14
|
-
.sc(DescribePackages)
|
|
14
|
+
.sc(DescribePackages$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeReservedElasticsearchInstanceOfferings } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeReservedElasticsearchInstanceOfferings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeReservedElasticsearchInstanceOfferingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeReservedElasticsearchInstanceOfferingsCommand extends $Comm
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DescribeReservedElasticsearchInstanceOfferings", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DescribeReservedElasticsearchInstanceOfferingsCommand")
|
|
14
|
-
.sc(DescribeReservedElasticsearchInstanceOfferings)
|
|
14
|
+
.sc(DescribeReservedElasticsearchInstanceOfferings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeReservedElasticsearchInstances } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeReservedElasticsearchInstances$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeReservedElasticsearchInstancesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeReservedElasticsearchInstancesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DescribeReservedElasticsearchInstances", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DescribeReservedElasticsearchInstancesCommand")
|
|
14
|
-
.sc(DescribeReservedElasticsearchInstances)
|
|
14
|
+
.sc(DescribeReservedElasticsearchInstances$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeVpcEndpoints } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeVpcEndpoints$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeVpcEndpointsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeVpcEndpointsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DescribeVpcEndpoints", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DescribeVpcEndpointsCommand")
|
|
14
|
-
.sc(DescribeVpcEndpoints)
|
|
14
|
+
.sc(DescribeVpcEndpoints$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DissociatePackage } from "../schemas/schemas_0";
|
|
4
|
+
import { DissociatePackage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DissociatePackageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DissociatePackageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "DissociatePackage", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "DissociatePackageCommand")
|
|
14
|
-
.sc(DissociatePackage)
|
|
14
|
+
.sc(DissociatePackage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetCompatibleElasticsearchVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCompatibleElasticsearchVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCompatibleElasticsearchVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCompatibleElasticsearchVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "GetCompatibleElasticsearchVersions", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "GetCompatibleElasticsearchVersionsCommand")
|
|
14
|
-
.sc(GetCompatibleElasticsearchVersions)
|
|
14
|
+
.sc(GetCompatibleElasticsearchVersions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetPackageVersionHistory } from "../schemas/schemas_0";
|
|
4
|
+
import { GetPackageVersionHistory$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetPackageVersionHistoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetPackageVersionHistoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "GetPackageVersionHistory", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "GetPackageVersionHistoryCommand")
|
|
14
|
-
.sc(GetPackageVersionHistory)
|
|
14
|
+
.sc(GetPackageVersionHistory$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetUpgradeHistory } from "../schemas/schemas_0";
|
|
4
|
+
import { GetUpgradeHistory$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetUpgradeHistoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetUpgradeHistoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "GetUpgradeHistory", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "GetUpgradeHistoryCommand")
|
|
14
|
-
.sc(GetUpgradeHistory)
|
|
14
|
+
.sc(GetUpgradeHistory$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetUpgradeStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { GetUpgradeStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetUpgradeStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetUpgradeStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "GetUpgradeStatus", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "GetUpgradeStatusCommand")
|
|
14
|
-
.sc(GetUpgradeStatus)
|
|
14
|
+
.sc(GetUpgradeStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDomainNames } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDomainNames$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDomainNamesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDomainNamesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticsearchService2015", "ListDomainNames", {})
|
|
13
13
|
.n("ElasticsearchServiceClient", "ListDomainNamesCommand")
|
|
14
|
-
.sc(ListDomainNames)
|
|
14
|
+
.sc(ListDomainNames$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|