@aws-sdk/client-evs 3.948.0 → 3.953.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 +219 -157
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/AssociateEipToVlanCommand.js +2 -2
- package/dist-es/commands/CreateEnvironmentCommand.js +2 -2
- package/dist-es/commands/CreateEnvironmentHostCommand.js +2 -2
- package/dist-es/commands/DeleteEnvironmentCommand.js +2 -2
- package/dist-es/commands/DeleteEnvironmentHostCommand.js +2 -2
- package/dist-es/commands/DisassociateEipFromVlanCommand.js +2 -2
- package/dist-es/commands/GetEnvironmentCommand.js +2 -2
- package/dist-es/commands/ListEnvironmentHostsCommand.js +2 -2
- package/dist-es/commands/ListEnvironmentVlansCommand.js +2 -2
- package/dist-es/commands/ListEnvironmentsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +131 -131
- package/dist-types/EvsClient.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 +63 -79
- package/dist-types/ts3.4/EvsClient.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 +62 -79
- package/package.json +34 -34
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_0Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.evs",
|
|
32
|
+
version: "2023-07-27",
|
|
33
|
+
serviceTarget: "AmazonElasticVMwareService",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "evs",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
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 { AssociateEipToVlan } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateEipToVlan$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateEipToVlanCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateEipToVlanCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticVMwareService", "AssociateEipToVlan", {})
|
|
13
13
|
.n("EvsClient", "AssociateEipToVlanCommand")
|
|
14
|
-
.sc(AssociateEipToVlan)
|
|
14
|
+
.sc(AssociateEipToVlan$)
|
|
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 { CreateEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticVMwareService", "CreateEnvironment", {})
|
|
13
13
|
.n("EvsClient", "CreateEnvironmentCommand")
|
|
14
|
-
.sc(CreateEnvironment)
|
|
14
|
+
.sc(CreateEnvironment$)
|
|
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 { CreateEnvironmentHost } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateEnvironmentHost$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateEnvironmentHostCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateEnvironmentHostCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticVMwareService", "CreateEnvironmentHost", {})
|
|
13
13
|
.n("EvsClient", "CreateEnvironmentHostCommand")
|
|
14
|
-
.sc(CreateEnvironmentHost)
|
|
14
|
+
.sc(CreateEnvironmentHost$)
|
|
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 { DeleteEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticVMwareService", "DeleteEnvironment", {})
|
|
13
13
|
.n("EvsClient", "DeleteEnvironmentCommand")
|
|
14
|
-
.sc(DeleteEnvironment)
|
|
14
|
+
.sc(DeleteEnvironment$)
|
|
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 { DeleteEnvironmentHost } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteEnvironmentHost$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteEnvironmentHostCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteEnvironmentHostCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticVMwareService", "DeleteEnvironmentHost", {})
|
|
13
13
|
.n("EvsClient", "DeleteEnvironmentHostCommand")
|
|
14
|
-
.sc(DeleteEnvironmentHost)
|
|
14
|
+
.sc(DeleteEnvironmentHost$)
|
|
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 { DisassociateEipFromVlan } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociateEipFromVlan$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociateEipFromVlanCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociateEipFromVlanCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticVMwareService", "DisassociateEipFromVlan", {})
|
|
13
13
|
.n("EvsClient", "DisassociateEipFromVlanCommand")
|
|
14
|
-
.sc(DisassociateEipFromVlan)
|
|
14
|
+
.sc(DisassociateEipFromVlan$)
|
|
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 { GetEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { GetEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticVMwareService", "GetEnvironment", {})
|
|
13
13
|
.n("EvsClient", "GetEnvironmentCommand")
|
|
14
|
-
.sc(GetEnvironment)
|
|
14
|
+
.sc(GetEnvironment$)
|
|
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 { ListEnvironmentHosts } from "../schemas/schemas_0";
|
|
4
|
+
import { ListEnvironmentHosts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListEnvironmentHostsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListEnvironmentHostsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticVMwareService", "ListEnvironmentHosts", {})
|
|
13
13
|
.n("EvsClient", "ListEnvironmentHostsCommand")
|
|
14
|
-
.sc(ListEnvironmentHosts)
|
|
14
|
+
.sc(ListEnvironmentHosts$)
|
|
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 { ListEnvironmentVlans } from "../schemas/schemas_0";
|
|
4
|
+
import { ListEnvironmentVlans$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListEnvironmentVlansCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListEnvironmentVlansCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticVMwareService", "ListEnvironmentVlans", {})
|
|
13
13
|
.n("EvsClient", "ListEnvironmentVlansCommand")
|
|
14
|
-
.sc(ListEnvironmentVlans)
|
|
14
|
+
.sc(ListEnvironmentVlans$)
|
|
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 { ListEnvironments } from "../schemas/schemas_0";
|
|
4
|
+
import { ListEnvironments$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListEnvironmentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListEnvironmentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticVMwareService", "ListEnvironments", {})
|
|
13
13
|
.n("EvsClient", "ListEnvironmentsCommand")
|
|
14
|
-
.sc(ListEnvironments)
|
|
14
|
+
.sc(ListEnvironments$)
|
|
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 { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticVMwareService", "ListTagsForResource", {})
|
|
13
13
|
.n("EvsClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
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 { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticVMwareService", "TagResource", {})
|
|
13
13
|
.n("EvsClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
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 { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonElasticVMwareService", "UntagResource", {})
|
|
13
13
|
.n("EvsClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.evs",
|
|
29
|
+
version: "2023-07-27",
|
|
30
|
+
serviceTarget: "AmazonElasticVMwareService",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "evs",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|