@aws-sdk/client-evs 3.858.0 → 3.860.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 +1 -1
- package/dist-cjs/models/models_0.js +14 -1
- package/dist-cjs/protocols/Aws_json1_0.js +12 -0
- package/dist-es/models/models_0.js +12 -0
- package/dist-es/protocols/Aws_json1_0.js +13 -1
- package/dist-types/Evs.d.ts +1 -1
- package/dist-types/EvsClient.d.ts +1 -1
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/CreateEnvironmentHostCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEnvironmentHostCommand.d.ts +1 -1
- package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentHostsCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentVlansCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +6 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +42 -30
- package/dist-types/ts3.4/models/models_0.d.ts +7 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
AWS SDK for JavaScript Evs Client for Node.js, Browser and React Native.
|
|
8
8
|
|
|
9
|
-
<p>Amazon Elastic VMware Service (Amazon EVS) is a service that you can use to deploy a VMware Cloud Foundation (VCF) software environment directly on EC2 bare metal instances within an Amazon Virtual Private Cloud (VPC).</p> <p>Workloads running on Amazon EVS are fully compatible with workloads running on any standard VMware vSphere environment. This means that you can migrate any VMware-based workload to Amazon EVS without workload modification.</p>
|
|
9
|
+
<note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>Amazon Elastic VMware Service (Amazon EVS) is a service that you can use to deploy a VMware Cloud Foundation (VCF) software environment directly on EC2 bare metal instances within an Amazon Virtual Private Cloud (VPC).</p> <p>Workloads running on Amazon EVS are fully compatible with workloads running on any standard VMware vSphere environment. This means that you can migrate any VMware-based workload to Amazon EVS without workload modification.</p>
|
|
10
10
|
|
|
11
11
|
## Installing
|
|
12
12
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TooManyTagsException = exports.TagPolicyException = exports.VlanState = exports.ResourceNotFoundException = exports.ThrottlingException = exports.HostState = exports.ValidationException = exports.ValidationExceptionReason = exports.EnvironmentState = exports.CheckType = exports.CheckResult = exports.VcfVersion = exports._InstanceType = void 0;
|
|
3
|
+
exports.TooManyTagsException = exports.TagPolicyException = exports.ServiceQuotaExceededException = exports.VlanState = exports.ResourceNotFoundException = exports.ThrottlingException = exports.HostState = exports.ValidationException = exports.ValidationExceptionReason = exports.EnvironmentState = exports.CheckType = exports.CheckResult = exports.VcfVersion = exports._InstanceType = void 0;
|
|
4
4
|
const EvsServiceException_1 = require("./EvsServiceException");
|
|
5
5
|
exports._InstanceType = {
|
|
6
6
|
I4I_METAL: "i4i.metal",
|
|
@@ -98,6 +98,19 @@ exports.VlanState = {
|
|
|
98
98
|
DELETED: "DELETED",
|
|
99
99
|
DELETING: "DELETING",
|
|
100
100
|
};
|
|
101
|
+
class ServiceQuotaExceededException extends EvsServiceException_1.EvsServiceException {
|
|
102
|
+
name = "ServiceQuotaExceededException";
|
|
103
|
+
$fault = "client";
|
|
104
|
+
constructor(opts) {
|
|
105
|
+
super({
|
|
106
|
+
name: "ServiceQuotaExceededException",
|
|
107
|
+
$fault: "client",
|
|
108
|
+
...opts,
|
|
109
|
+
});
|
|
110
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
101
114
|
class TagPolicyException extends EvsServiceException_1.EvsServiceException {
|
|
102
115
|
name = "TagPolicyException";
|
|
103
116
|
$fault = "client";
|
|
@@ -254,6 +254,9 @@ const de_CommandError = async (output, context) => {
|
|
|
254
254
|
case "ResourceNotFoundException":
|
|
255
255
|
case "com.amazonaws.evs#ResourceNotFoundException":
|
|
256
256
|
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
257
|
+
case "ServiceQuotaExceededException":
|
|
258
|
+
case "com.amazonaws.evs#ServiceQuotaExceededException":
|
|
259
|
+
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context);
|
|
257
260
|
case "TagPolicyException":
|
|
258
261
|
case "com.amazonaws.evs#TagPolicyException":
|
|
259
262
|
throw await de_TagPolicyExceptionRes(parsedOutput, context);
|
|
@@ -278,6 +281,15 @@ const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
|
278
281
|
});
|
|
279
282
|
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
280
283
|
};
|
|
284
|
+
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
285
|
+
const body = parsedOutput.body;
|
|
286
|
+
const deserialized = (0, smithy_client_1._json)(body);
|
|
287
|
+
const exception = new models_0_1.ServiceQuotaExceededException({
|
|
288
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
289
|
+
...deserialized,
|
|
290
|
+
});
|
|
291
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
292
|
+
};
|
|
281
293
|
const de_TagPolicyExceptionRes = async (parsedOutput, context) => {
|
|
282
294
|
const body = parsedOutput.body;
|
|
283
295
|
const deserialized = (0, smithy_client_1._json)(body);
|
|
@@ -92,6 +92,18 @@ export const VlanState = {
|
|
|
92
92
|
DELETED: "DELETED",
|
|
93
93
|
DELETING: "DELETING",
|
|
94
94
|
};
|
|
95
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
96
|
+
name = "ServiceQuotaExceededException";
|
|
97
|
+
$fault = "client";
|
|
98
|
+
constructor(opts) {
|
|
99
|
+
super({
|
|
100
|
+
name: "ServiceQuotaExceededException",
|
|
101
|
+
$fault: "client",
|
|
102
|
+
...opts,
|
|
103
|
+
});
|
|
104
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
105
|
+
}
|
|
106
|
+
}
|
|
95
107
|
export class TagPolicyException extends __BaseException {
|
|
96
108
|
name = "TagPolicyException";
|
|
97
109
|
$fault = "client";
|
|
@@ -3,7 +3,7 @@ import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
|
|
|
3
3
|
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectString as __expectString, parseEpochTimestamp as __parseEpochTimestamp, take, withBaseException, } from "@smithy/smithy-client";
|
|
4
4
|
import { v4 as generateIdempotencyToken } from "uuid";
|
|
5
5
|
import { EvsServiceException as __BaseException } from "../models/EvsServiceException";
|
|
6
|
-
import { ResourceNotFoundException, TagPolicyException, ThrottlingException, TooManyTagsException, ValidationException, } from "../models/models_0";
|
|
6
|
+
import { ResourceNotFoundException, ServiceQuotaExceededException, TagPolicyException, ThrottlingException, TooManyTagsException, ValidationException, } from "../models/models_0";
|
|
7
7
|
export const se_CreateEnvironmentCommand = async (input, context) => {
|
|
8
8
|
const headers = sharedHeaders("CreateEnvironment");
|
|
9
9
|
let body;
|
|
@@ -229,6 +229,9 @@ const de_CommandError = async (output, context) => {
|
|
|
229
229
|
case "ResourceNotFoundException":
|
|
230
230
|
case "com.amazonaws.evs#ResourceNotFoundException":
|
|
231
231
|
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
232
|
+
case "ServiceQuotaExceededException":
|
|
233
|
+
case "com.amazonaws.evs#ServiceQuotaExceededException":
|
|
234
|
+
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context);
|
|
232
235
|
case "TagPolicyException":
|
|
233
236
|
case "com.amazonaws.evs#TagPolicyException":
|
|
234
237
|
throw await de_TagPolicyExceptionRes(parsedOutput, context);
|
|
@@ -253,6 +256,15 @@ const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
|
253
256
|
});
|
|
254
257
|
return __decorateServiceException(exception, body);
|
|
255
258
|
};
|
|
259
|
+
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
260
|
+
const body = parsedOutput.body;
|
|
261
|
+
const deserialized = _json(body);
|
|
262
|
+
const exception = new ServiceQuotaExceededException({
|
|
263
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
264
|
+
...deserialized,
|
|
265
|
+
});
|
|
266
|
+
return __decorateServiceException(exception, body);
|
|
267
|
+
};
|
|
256
268
|
const de_TagPolicyExceptionRes = async (parsedOutput, context) => {
|
|
257
269
|
const body = parsedOutput.body;
|
|
258
270
|
const deserialized = _json(body);
|
package/dist-types/Evs.d.ts
CHANGED
|
@@ -81,7 +81,7 @@ export interface Evs {
|
|
|
81
81
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
82
82
|
}
|
|
83
83
|
/**
|
|
84
|
-
* <p>Amazon Elastic VMware Service (Amazon EVS) is a service that you can use to deploy a VMware Cloud Foundation (VCF) software environment directly on EC2 bare metal instances within an Amazon Virtual Private Cloud (VPC).</p> <p>Workloads running on Amazon EVS are fully compatible with workloads running on any standard VMware vSphere environment. This means that you can migrate any VMware-based workload to Amazon EVS without workload modification.</p>
|
|
84
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>Amazon Elastic VMware Service (Amazon EVS) is a service that you can use to deploy a VMware Cloud Foundation (VCF) software environment directly on EC2 bare metal instances within an Amazon Virtual Private Cloud (VPC).</p> <p>Workloads running on Amazon EVS are fully compatible with workloads running on any standard VMware vSphere environment. This means that you can migrate any VMware-based workload to Amazon EVS without workload modification.</p>
|
|
85
85
|
* @public
|
|
86
86
|
*/
|
|
87
87
|
export declare class Evs extends EvsClient implements Evs {
|
|
@@ -180,7 +180,7 @@ export type EvsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHa
|
|
|
180
180
|
export interface EvsClientResolvedConfig extends EvsClientResolvedConfigType {
|
|
181
181
|
}
|
|
182
182
|
/**
|
|
183
|
-
* <p>Amazon Elastic VMware Service (Amazon EVS) is a service that you can use to deploy a VMware Cloud Foundation (VCF) software environment directly on EC2 bare metal instances within an Amazon Virtual Private Cloud (VPC).</p> <p>Workloads running on Amazon EVS are fully compatible with workloads running on any standard VMware vSphere environment. This means that you can migrate any VMware-based workload to Amazon EVS without workload modification.</p>
|
|
183
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>Amazon Elastic VMware Service (Amazon EVS) is a service that you can use to deploy a VMware Cloud Foundation (VCF) software environment directly on EC2 bare metal instances within an Amazon Virtual Private Cloud (VPC).</p> <p>Workloads running on Amazon EVS are fully compatible with workloads running on any standard VMware vSphere environment. This means that you can migrate any VMware-based workload to Amazon EVS without workload modification.</p>
|
|
184
184
|
* @public
|
|
185
185
|
*/
|
|
186
186
|
export declare class EvsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, EvsClientResolvedConfig> {
|
|
@@ -27,7 +27,7 @@ declare const CreateEnvironmentCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Creates an Amazon EVS environment that runs VCF software, such as SDDC Manager, NSX Manager, and vCenter Server.</p> <p>During environment creation, Amazon EVS performs validations on DNS settings, provisions VLAN subnets and hosts, and deploys the supplied version of VCF.</p> <p>It can take several hours to create an environment. After the deployment completes, you can configure VCF according to your
|
|
30
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>Creates an Amazon EVS environment that runs VCF software, such as SDDC Manager, NSX Manager, and vCenter Server.</p> <p>During environment creation, Amazon EVS performs validations on DNS settings, provisions VLAN subnets and hosts, and deploys the supplied version of VCF.</p> <p>It can take several hours to create an environment. After the deployment completes, you can configure VCF in the vSphere user interface according to your needs.</p> <note> <p>You cannot use the <code>dedicatedHostId</code> and <code>placementGroupId</code> parameters together in the same <code>CreateEnvironment</code> action. This results in a <code>ValidationException</code> response.</p> </note>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const CreateEnvironmentHostCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Creates an ESXi host and adds it to an Amazon EVS environment. Amazon EVS supports 4-16 hosts per environment.</p> <p>This action can only be used after the Amazon EVS environment is deployed. All Amazon EVS hosts are created with the latest AMI release version for the respective VCF version of the environment.</p> <p>You can use the <code>dedicatedHostId</code> parameter to specify an Amazon EC2 Dedicated Host for ESXi host creation.</p> <p> You can use the <code>placementGroupId</code> parameter to specify a cluster or partition placement group to launch EC2 instances into.</p> <note> <p>You cannot use the <code>dedicatedHostId</code> and <code>placementGroupId</code> parameters together in the same <code>CreateEnvironmentHost</code> action. This results in a <code>ValidationException</code> response.</p> </note>
|
|
30
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>Creates an ESXi host and adds it to an Amazon EVS environment. Amazon EVS supports 4-16 hosts per environment.</p> <p>This action can only be used after the Amazon EVS environment is deployed. All Amazon EVS hosts are created with the latest AMI release version for the respective VCF version of the environment. Amazon EVS hosts are commissioned in the SDDC Manager inventory as unassigned hosts.</p> <p>You can use the <code>dedicatedHostId</code> parameter to specify an Amazon EC2 Dedicated Host for ESXi host creation.</p> <p> You can use the <code>placementGroupId</code> parameter to specify a cluster or partition placement group to launch EC2 instances into.</p> <note> <p>You cannot use the <code>dedicatedHostId</code> and <code>placementGroupId</code> parameters together in the same <code>CreateEnvironmentHost</code> action. This results in a <code>ValidationException</code> response.</p> </note>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const DeleteEnvironmentCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Deletes an Amazon EVS environment.</p> <p>Amazon EVS environments will only be enabled for deletion once the hosts are deleted. You can delete hosts using the <code>DeleteEnvironmentHost</code> action.</p> <p>Environment deletion also deletes the associated Amazon EVS VLAN subnets. Other associated Amazon Web Services resources are not deleted. These resources may continue to incur costs.</p>
|
|
30
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>Deletes an Amazon EVS environment.</p> <p>Amazon EVS environments will only be enabled for deletion once the hosts are deleted. You can delete hosts using the <code>DeleteEnvironmentHost</code> action.</p> <p>Environment deletion also deletes the associated Amazon EVS VLAN subnets. Other associated Amazon Web Services resources are not deleted. These resources may continue to incur costs.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const DeleteEnvironmentHostCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Deletes a host from an Amazon EVS environment.</p> <note> <p>Before deleting a host, you must unassign and decommission the host from within the SDDC Manager user interface. Not doing so could impact the availability of your virtual machines or result in data loss.</p> </note>
|
|
30
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>Deletes a host from an Amazon EVS environment.</p> <note> <p>Before deleting a host, you must unassign and decommission the host from within the SDDC Manager user interface. Not doing so could impact the availability of your virtual machines or result in data loss.</p> </note>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const GetEnvironmentCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Returns a description of the specified environment.</p>
|
|
30
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>Returns a description of the specified environment.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const ListEnvironmentHostsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>List the hosts within an environment.</p>
|
|
30
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>List the hosts within an environment.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const ListEnvironmentVlansCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Lists environment VLANs that are associated with the specified environment.</p>
|
|
30
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>Lists environment VLANs that are associated with the specified environment.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const ListEnvironmentsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Lists the Amazon EVS environments in your Amazon Web Services account in the specified Amazon Web Services Region.</p>
|
|
30
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>Lists the Amazon EVS environments in your Amazon Web Services account in the specified Amazon Web Services Region.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Lists the tags for an Amazon EVS resource.</p>
|
|
30
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>Lists the tags for an Amazon EVS resource.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const TagResourceCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Associates the specified tags to an Amazon EVS resource with the specified <code>resourceArn</code>. If existing tags on a resource are not specified in the request parameters, they aren't changed. When a resource is deleted, the tags associated with that resource are also deleted. Tags that you create for Amazon EVS resources don't propagate to any other resources associated with the environment. For example, if you tag an environment with this operation, that tag doesn't automatically propagate to the VLAN subnets and hosts associated with the environment.</p>
|
|
30
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>Associates the specified tags to an Amazon EVS resource with the specified <code>resourceArn</code>. If existing tags on a resource are not specified in the request parameters, they aren't changed. When a resource is deleted, the tags associated with that resource are also deleted. Tags that you create for Amazon EVS resources don't propagate to any other resources associated with the environment. For example, if you tag an environment with this operation, that tag doesn't automatically propagate to the VLAN subnets and hosts associated with the environment.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -55,11 +55,14 @@ declare const TagResourceCommand_base: {
|
|
|
55
55
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
56
56
|
* <p>A service resource associated with the request could not be found. The resource might not be specified correctly, or it may have a <code>state</code> of <code>DELETED</code>.</p>
|
|
57
57
|
*
|
|
58
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
59
|
+
* <p>The number of one or more Amazon EVS resources exceeds the maximum allowed. For a list of Amazon EVS quotas, see <a href="https://docs.aws.amazon.com/evs/latest/userguide/service-quotas-evs.html">Amazon EVS endpoints and quotas</a> in the <i>Amazon EVS User Guide</i>. Delete some resources or request an increase in your service quota. To request an increase, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html">Amazon Web Services Service Quotas</a> in the <i>Amazon Web Services General Reference Guide</i>. </p>
|
|
60
|
+
*
|
|
58
61
|
* @throws {@link TagPolicyException} (client fault)
|
|
59
|
-
* <p>The request doesn't comply with IAM tag policy. Correct your request and then retry it.</p>
|
|
62
|
+
* <note> <p> <code>TagPolicyException</code> is deprecated. See <a href="https://docs.aws.amazon.com/evs/latest/APIReference/API_ValidationException.html"> <code>ValidationException</code> </a> instead.</p> </note> <p>The request doesn't comply with IAM tag policy. Correct your request and then retry it.</p>
|
|
60
63
|
*
|
|
61
64
|
* @throws {@link TooManyTagsException} (client fault)
|
|
62
|
-
* <p>A service resource associated with the request has more than 200 tags.</p>
|
|
65
|
+
* <note> <p> <code>TooManyTagsException</code> is deprecated. See <a href="https://docs.aws.amazon.com/evs/latest/APIReference/API_ServiceQuotaExceededException.html"> <code>ServiceQuotaExceededException</code> </a> instead.</p> </note> <p>A service resource associated with the request has more than 200 tags.</p>
|
|
63
66
|
*
|
|
64
67
|
* @throws {@link EvsServiceException}
|
|
65
68
|
* <p>Base exception class for all service exceptions from Evs service.</p>
|
|
@@ -27,7 +27,7 @@ declare const UntagResourceCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Deletes specified tags from an Amazon EVS resource.</p>
|
|
30
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>Deletes specified tags from an Amazon EVS resource.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -56,7 +56,7 @@ declare const UntagResourceCommand_base: {
|
|
|
56
56
|
* <p>A service resource associated with the request could not be found. The resource might not be specified correctly, or it may have a <code>state</code> of <code>DELETED</code>.</p>
|
|
57
57
|
*
|
|
58
58
|
* @throws {@link TagPolicyException} (client fault)
|
|
59
|
-
* <p>The request doesn't comply with IAM tag policy. Correct your request and then retry it.</p>
|
|
59
|
+
* <note> <p> <code>TagPolicyException</code> is deprecated. See <a href="https://docs.aws.amazon.com/evs/latest/APIReference/API_ValidationException.html"> <code>ValidationException</code> </a> instead.</p> </note> <p>The request doesn't comply with IAM tag policy. Correct your request and then retry it.</p>
|
|
60
60
|
*
|
|
61
61
|
* @throws {@link EvsServiceException}
|
|
62
62
|
* <p>Base exception class for all service exceptions from Evs service.</p>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* <p>Amazon Elastic VMware Service (Amazon EVS) is a service that you can use to deploy a VMware Cloud Foundation (VCF) software environment directly on EC2 bare metal instances within an Amazon Virtual Private Cloud (VPC).</p> <p>Workloads running on Amazon EVS are fully compatible with workloads running on any standard VMware vSphere environment. This means that you can migrate any VMware-based workload to Amazon EVS without workload modification.</p>
|
|
2
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>Amazon Elastic VMware Service (Amazon EVS) is a service that you can use to deploy a VMware Cloud Foundation (VCF) software environment directly on EC2 bare metal instances within an Amazon Virtual Private Cloud (VPC).</p> <p>Workloads running on Amazon EVS are fully compatible with workloads running on any standard VMware vSphere environment. This means that you can migrate any VMware-based workload to Amazon EVS without workload modification.</p>
|
|
3
3
|
*
|
|
4
4
|
* @packageDocumentation
|
|
5
5
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { EvsServiceException as __BaseException } from "./EvsServiceException";
|
|
3
3
|
/**
|
|
4
|
-
* <p>The connectivity configuration for the environment. Amazon EVS requires that you specify two route server peer IDs. During environment creation, the route server endpoints peer with the NSX uplink VLAN for connectivity to the NSX overlay network.</p>
|
|
4
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>The connectivity configuration for the environment. Amazon EVS requires that you specify two route server peer IDs. During environment creation, the route server endpoints peer with the NSX uplink VLAN for connectivity to the NSX overlay network.</p>
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
7
|
export interface ConnectivityInfo {
|
|
@@ -23,7 +23,7 @@ export declare const _InstanceType: {
|
|
|
23
23
|
*/
|
|
24
24
|
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
25
25
|
/**
|
|
26
|
-
* <p>An object that represents a host.</p> <note> <p>You cannot use <code>dedicatedHostId</code> and <code>placementGroupId</code> together in the same <code>HostInfoForCreate</code>object. This results in a <code>ValidationException</code> response.</p> </note>
|
|
26
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>An object that represents a host.</p> <note> <p>You cannot use <code>dedicatedHostId</code> and <code>placementGroupId</code> together in the same <code>HostInfoForCreate</code>object. This results in a <code>ValidationException</code> response.</p> </note>
|
|
27
27
|
* @public
|
|
28
28
|
*/
|
|
29
29
|
export interface HostInfoForCreate {
|
|
@@ -54,23 +54,23 @@ export interface HostInfoForCreate {
|
|
|
54
54
|
dedicatedHostId?: string | undefined;
|
|
55
55
|
}
|
|
56
56
|
/**
|
|
57
|
-
* <p>An object that represents an initial VLAN subnet for the environment. Amazon EVS creates initial VLAN subnets when you first create the environment.
|
|
57
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>An object that represents an initial VLAN subnet for the Amazon EVS environment. Amazon EVS creates initial VLAN subnets when you first create the environment. Amazon EVS creates the following 10 VLAN subnets: host management VLAN, vMotion VLAN, vSAN VLAN, VTEP VLAN, Edge VTEP VLAN, Management VM VLAN, HCX uplink VLAN, NSX uplink VLAN, expansion VLAN 1, expansion VLAN 2.</p> <note> <p>For each Amazon EVS VLAN subnet, you must specify a non-overlapping CIDR block. Amazon EVS VLAN subnets have a minimum CIDR block size of /28 and a maximum size of /24.</p> </note>
|
|
58
58
|
* @public
|
|
59
59
|
*/
|
|
60
60
|
export interface InitialVlanInfo {
|
|
61
61
|
/**
|
|
62
|
-
* <p> The CIDR block that you provide to create
|
|
62
|
+
* <p> The CIDR block that you provide to create an Amazon EVS VLAN subnet. Amazon EVS VLAN subnets have a minimum CIDR block size of /28 and a maximum size of /24. Amazon EVS VLAN subnet CIDR blocks must not overlap with other subnets in the VPC.</p>
|
|
63
63
|
* @public
|
|
64
64
|
*/
|
|
65
65
|
cidr: string | undefined;
|
|
66
66
|
}
|
|
67
67
|
/**
|
|
68
|
-
* <p>The initial VLAN subnets for the environment.
|
|
68
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>The initial VLAN subnets for the environment. Amazon EVS VLAN subnets have a minimum CIDR block size of /28 and a maximum size of /24. Amazon EVS VLAN subnet CIDR blocks must not overlap with other subnets in the VPC.</p>
|
|
69
69
|
* @public
|
|
70
70
|
*/
|
|
71
71
|
export interface InitialVlans {
|
|
72
72
|
/**
|
|
73
|
-
* <p> The VMkernel management VLAN subnet. This VLAN subnet carries traffic for managing ESXi hosts and communicating with VMware vCenter Server.</p>
|
|
73
|
+
* <p> The host VMkernel management VLAN subnet. This VLAN subnet carries traffic for managing ESXi hosts and communicating with VMware vCenter Server.</p>
|
|
74
74
|
* @public
|
|
75
75
|
*/
|
|
76
76
|
vmkManagement: InitialVlanInfo | undefined;
|
|
@@ -121,23 +121,23 @@ export interface InitialVlans {
|
|
|
121
121
|
expansionVlan2: InitialVlanInfo | undefined;
|
|
122
122
|
}
|
|
123
123
|
/**
|
|
124
|
-
* <p> The license information that Amazon EVS requires to create an environment. Amazon EVS requires two license keys: a VCF solution key and a vSAN license key.</p>
|
|
124
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p> The license information that Amazon EVS requires to create an environment. Amazon EVS requires two license keys: a VCF solution key and a vSAN license key.</p>
|
|
125
125
|
* @public
|
|
126
126
|
*/
|
|
127
127
|
export interface LicenseInfo {
|
|
128
128
|
/**
|
|
129
|
-
* <p> The VCF solution key. This license unlocks VMware VCF product features, including vSphere, NSX, SDDC Manager, and vCenter Server.</p>
|
|
129
|
+
* <p> The VCF solution key. This license unlocks VMware VCF product features, including vSphere, NSX, SDDC Manager, and vCenter Server. The VCF solution key must cover a minimum of 256 cores.</p>
|
|
130
130
|
* @public
|
|
131
131
|
*/
|
|
132
132
|
solutionKey: string | undefined;
|
|
133
133
|
/**
|
|
134
|
-
* <p> The VSAN license key. This license unlocks vSAN features.</p>
|
|
134
|
+
* <p> The VSAN license key. This license unlocks vSAN features. The vSAN license key must provide at least 110 TiB of vSAN capacity.</p>
|
|
135
135
|
* @public
|
|
136
136
|
*/
|
|
137
137
|
vsanKey: string | undefined;
|
|
138
138
|
}
|
|
139
139
|
/**
|
|
140
|
-
* <p>The security groups that allow traffic between the Amazon EVS control plane and your VPC for Amazon EVS service access. If a security group is not specified, Amazon EVS uses the default security group in your account for service access.</p>
|
|
140
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>The security groups that allow traffic between the Amazon EVS control plane and your VPC for Amazon EVS service access. If a security group is not specified, Amazon EVS uses the default security group in your account for service access.</p>
|
|
141
141
|
* @public
|
|
142
142
|
*/
|
|
143
143
|
export interface ServiceAccessSecurityGroups {
|
|
@@ -148,7 +148,7 @@ export interface ServiceAccessSecurityGroups {
|
|
|
148
148
|
securityGroups?: string[] | undefined;
|
|
149
149
|
}
|
|
150
150
|
/**
|
|
151
|
-
* <p>The DNS hostnames that Amazon EVS uses to install VMware vCenter Server, NSX, SDDC Manager, and Cloud Builder. Each hostname must be unique, and resolve to a domain name that you've registered in your DNS service of choice. Hostnames cannot be changed.</p> <p>VMware VCF requires the deployment of two NSX Edge nodes, and three NSX Manager virtual machines.</p>
|
|
151
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>The DNS hostnames that Amazon EVS uses to install VMware vCenter Server, NSX, SDDC Manager, and Cloud Builder. Each hostname must be unique, and resolve to a domain name that you've registered in your DNS service of choice. Hostnames cannot be changed.</p> <p>VMware VCF requires the deployment of two NSX Edge nodes, and three NSX Manager virtual machines.</p>
|
|
152
152
|
* @public
|
|
153
153
|
*/
|
|
154
154
|
export interface VcfHostnames {
|
|
@@ -239,7 +239,7 @@ export interface CreateEnvironmentRequest {
|
|
|
239
239
|
*/
|
|
240
240
|
serviceAccessSecurityGroups?: ServiceAccessSecurityGroups | undefined;
|
|
241
241
|
/**
|
|
242
|
-
* <p>A unique ID for the VPC that
|
|
242
|
+
* <p>A unique ID for the VPC that the environment is deployed inside.</p> <p>Amazon EVS requires that all VPC subnets exist in a single Availability Zone in a Region where the service is available.</p> <p>The VPC that you specify must have a valid DHCP option set with domain name, at least two DNS servers, and an NTP server. These settings are used to configure your VCF appliances and hosts. The VPC cannot be used with any other deployed Amazon EVS environment. Amazon EVS does not provide multi-VPC support for environments at this time.</p> <p>Amazon EVS does not support the following Amazon Web Services networking options for NSX overlay connectivity: cross-Region VPC peering, Amazon S3 gateway endpoints, or Amazon Web Services Direct Connect virtual private gateway associations.</p> <note> <p>Ensure that you specify a VPC that is adequately sized to accommodate the \{evws\} subnets.</p> </note>
|
|
243
243
|
* @public
|
|
244
244
|
*/
|
|
245
245
|
vpcId: string | undefined;
|
|
@@ -254,27 +254,27 @@ export interface CreateEnvironmentRequest {
|
|
|
254
254
|
*/
|
|
255
255
|
vcfVersion: VcfVersion | undefined;
|
|
256
256
|
/**
|
|
257
|
-
* <p>Customer confirmation that the customer has purchased and
|
|
257
|
+
* <p>Customer confirmation that the customer has purchased and will continue to maintain the required number of VCF software licenses to cover all physical processor cores in the Amazon EVS environment. Information about your VCF software in Amazon EVS will be shared with Broadcom to verify license compliance. Amazon EVS does not validate license keys. To validate license keys, visit the Broadcom support portal.</p>
|
|
258
258
|
* @public
|
|
259
259
|
*/
|
|
260
260
|
termsAccepted: boolean | undefined;
|
|
261
261
|
/**
|
|
262
|
-
* <p>The license information that Amazon EVS requires to create an environment. Amazon EVS requires two license keys: a VCF solution key and a vSAN license key. VCF
|
|
262
|
+
* <p>The license information that Amazon EVS requires to create an environment. Amazon EVS requires two license keys: a VCF solution key and a vSAN license key. The VCF solution key must cover a minimum of 256 cores. The vSAN license key must provide at least 110 TiB of vSAN capacity.</p> <p>VCF licenses can be used for only one Amazon EVS environment. Amazon EVS does not support reuse of VCF licenses for multiple environments.</p> <p>VCF license information can be retrieved from the Broadcom portal.</p>
|
|
263
263
|
* @public
|
|
264
264
|
*/
|
|
265
265
|
licenseInfo: LicenseInfo[] | undefined;
|
|
266
266
|
/**
|
|
267
|
-
* <p>The initial VLAN subnets for the environment
|
|
267
|
+
* <p>The initial VLAN subnets for the Amazon EVS environment.</p> <note> <p>For each Amazon EVS VLAN subnet, you must specify a non-overlapping CIDR block. Amazon EVS VLAN subnets have a minimum CIDR block size of /28 and a maximum size of /24.</p> </note>
|
|
268
268
|
* @public
|
|
269
269
|
*/
|
|
270
270
|
initialVlans: InitialVlans | undefined;
|
|
271
271
|
/**
|
|
272
|
-
* <p>The ESXi hosts to add to the environment. Amazon EVS requires that you provide details for a minimum of 4 hosts during environment creation.</p> <p>For each host, you must provide the desired hostname, EC2 SSH
|
|
272
|
+
* <p>The ESXi hosts to add to the environment. Amazon EVS requires that you provide details for a minimum of 4 hosts during environment creation.</p> <p>For each host, you must provide the desired hostname, EC2 SSH keypair name, and EC2 instance type. Optionally, you can also provide a partition or cluster placement group to use, or use Amazon EC2 Dedicated Hosts.</p>
|
|
273
273
|
* @public
|
|
274
274
|
*/
|
|
275
275
|
hosts: HostInfoForCreate[] | undefined;
|
|
276
276
|
/**
|
|
277
|
-
* <p> The connectivity configuration for the environment. Amazon EVS requires that you specify two route server peer IDs. During environment creation, the route server endpoints peer with the NSX edges over the NSX, providing BGP dynamic routing for overlay networks.</p>
|
|
277
|
+
* <p> The connectivity configuration for the environment. Amazon EVS requires that you specify two route server peer IDs. During environment creation, the route server endpoints peer with the NSX edges over the NSX uplink subnet, providing BGP-based dynamic routing for overlay networks.</p>
|
|
278
278
|
* @public
|
|
279
279
|
*/
|
|
280
280
|
connectivityInfo: ConnectivityInfo | undefined;
|
|
@@ -317,7 +317,7 @@ export declare const CheckType: {
|
|
|
317
317
|
*/
|
|
318
318
|
export type CheckType = (typeof CheckType)[keyof typeof CheckType];
|
|
319
319
|
/**
|
|
320
|
-
* <p>A check on the environment to identify environment health and validate VMware VCF licensing compliance.</p>
|
|
320
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>A check on the environment to identify environment health and validate VMware VCF licensing compliance.</p>
|
|
321
321
|
* @public
|
|
322
322
|
*/
|
|
323
323
|
export interface Check {
|
|
@@ -338,7 +338,7 @@ export interface Check {
|
|
|
338
338
|
impairedSince?: Date | undefined;
|
|
339
339
|
}
|
|
340
340
|
/**
|
|
341
|
-
* <p>A managed secret that contains the credentials for installing vCenter Server, NSX, and SDDC Manager. During environment creation, the Amazon EVS control plane uses Amazon Web Services Secrets Manager to create, encrypt, validate, and store secrets. If you choose to delete your environment, Amazon EVS also deletes the secrets that are associated with your environment. Amazon EVS does not provide managed rotation of secrets. We recommend that you rotate secrets regularly to ensure that secrets are not long-lived.</p>
|
|
341
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>A managed secret that contains the credentials for installing vCenter Server, NSX, and SDDC Manager. During environment creation, the Amazon EVS control plane uses Amazon Web Services Secrets Manager to create, encrypt, validate, and store secrets. If you choose to delete your environment, Amazon EVS also deletes the secrets that are associated with your environment. Amazon EVS does not provide managed rotation of secrets. We recommend that you rotate secrets regularly to ensure that secrets are not long-lived.</p>
|
|
342
342
|
* @public
|
|
343
343
|
*/
|
|
344
344
|
export interface Secret {
|
|
@@ -364,7 +364,7 @@ export declare const EnvironmentState: {
|
|
|
364
364
|
*/
|
|
365
365
|
export type EnvironmentState = (typeof EnvironmentState)[keyof typeof EnvironmentState];
|
|
366
366
|
/**
|
|
367
|
-
* <p>An object that represents an Amazon EVS environment.</p>
|
|
367
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>An object that represents an Amazon EVS environment.</p>
|
|
368
368
|
* @public
|
|
369
369
|
*/
|
|
370
370
|
export interface Environment {
|
|
@@ -419,12 +419,12 @@ export interface Environment {
|
|
|
419
419
|
*/
|
|
420
420
|
vcfVersion?: VcfVersion | undefined;
|
|
421
421
|
/**
|
|
422
|
-
* <p>Customer confirmation that the customer has purchased and
|
|
422
|
+
* <p>Customer confirmation that the customer has purchased and will continue to maintain the required number of VCF software licenses to cover all physical processor cores in the Amazon EVS environment. Information about your VCF software in Amazon EVS will be shared with Broadcom to verify license compliance. Amazon EVS does not validate license keys. To validate license keys, visit the Broadcom support portal. </p>
|
|
423
423
|
* @public
|
|
424
424
|
*/
|
|
425
425
|
termsAccepted?: boolean | undefined;
|
|
426
426
|
/**
|
|
427
|
-
* <p> The license information that Amazon EVS requires to create an environment. Amazon EVS requires two license keys: a VCF solution key and a vSAN license key.</p>
|
|
427
|
+
* <p> The license information that Amazon EVS requires to create an environment. Amazon EVS requires two license keys: a VCF solution key and a vSAN license key. The VCF solution key must cover a minimum of 256 cores. The vSAN license key must provide at least 110 TiB of vSAN capacity.</p>
|
|
428
428
|
* @public
|
|
429
429
|
*/
|
|
430
430
|
licenseInfo?: LicenseInfo[] | undefined;
|
|
@@ -480,7 +480,7 @@ export interface CreateEnvironmentResponse {
|
|
|
480
480
|
environment?: Environment | undefined;
|
|
481
481
|
}
|
|
482
482
|
/**
|
|
483
|
-
* <p>Stores information about a field passed inside a request that resulted in an exception.</p>
|
|
483
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>Stores information about a field passed inside a request that resulted in an exception.</p>
|
|
484
484
|
* @public
|
|
485
485
|
*/
|
|
486
486
|
export interface ValidationExceptionField {
|
|
@@ -552,7 +552,7 @@ export interface CreateEnvironmentHostRequest {
|
|
|
552
552
|
host: HostInfoForCreate | undefined;
|
|
553
553
|
}
|
|
554
554
|
/**
|
|
555
|
-
* <p>A list of environments with summarized environment details.</p>
|
|
555
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>A list of environments with summarized environment details.</p>
|
|
556
556
|
* @public
|
|
557
557
|
*/
|
|
558
558
|
export interface EnvironmentSummary {
|
|
@@ -615,7 +615,7 @@ export declare const HostState: {
|
|
|
615
615
|
*/
|
|
616
616
|
export type HostState = (typeof HostState)[keyof typeof HostState];
|
|
617
617
|
/**
|
|
618
|
-
* <p>An elastic network interface (ENI) that connects hosts to the VLAN subnets. Amazon EVS provisions two identically configured ENIs in the VMkernel management subnet during host creation. One ENI is active, and the other is in standby mode for automatic switchover during a failure scenario.</p>
|
|
618
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>An elastic network interface (ENI) that connects hosts to the VLAN subnets. Amazon EVS provisions two identically configured ENIs in the VMkernel management subnet during host creation. One ENI is active, and the other is in standby mode for automatic switchover during a failure scenario.</p>
|
|
619
619
|
* @public
|
|
620
620
|
*/
|
|
621
621
|
export interface NetworkInterface {
|
|
@@ -626,7 +626,7 @@ export interface NetworkInterface {
|
|
|
626
626
|
networkInterfaceId?: string | undefined;
|
|
627
627
|
}
|
|
628
628
|
/**
|
|
629
|
-
* <p>An ESXi host that runs on an Amazon EC2 bare metal instance. Four hosts are created in an Amazon EVS environment during environment creation. You can add hosts to an environment using the <code>CreateEnvironmentHost</code> operation. Amazon EVS supports 4-16 hosts per environment.</p>
|
|
629
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>An ESXi host that runs on an Amazon EC2 bare metal instance. Four hosts are created in an Amazon EVS environment during environment creation. You can add hosts to an environment using the <code>CreateEnvironmentHost</code> operation. Amazon EVS supports 4-16 hosts per environment.</p>
|
|
630
630
|
* @public
|
|
631
631
|
*/
|
|
632
632
|
export interface Host {
|
|
@@ -932,7 +932,7 @@ export declare const VlanState: {
|
|
|
932
932
|
*/
|
|
933
933
|
export type VlanState = (typeof VlanState)[keyof typeof VlanState];
|
|
934
934
|
/**
|
|
935
|
-
* <p>The VLANs that Amazon EVS creates during environment creation.</p>
|
|
935
|
+
* <note> <p>Amazon EVS is in public preview release and is subject to change.</p> </note> <p>The VLANs that Amazon EVS creates during environment creation.</p>
|
|
936
936
|
* @public
|
|
937
937
|
*/
|
|
938
938
|
export interface Vlan {
|
|
@@ -942,7 +942,7 @@ export interface Vlan {
|
|
|
942
942
|
*/
|
|
943
943
|
vlanId?: number | undefined;
|
|
944
944
|
/**
|
|
945
|
-
* <p>
|
|
945
|
+
* <p>The CIDR block of the VLAN. Amazon EVS VLAN subnets have a minimum CIDR block size of /28 and a maximum size of /24.</p>
|
|
946
946
|
* @public
|
|
947
947
|
*/
|
|
948
948
|
cidr?: string | undefined;
|
|
@@ -1018,7 +1018,19 @@ export interface ListTagsForResourceResponse {
|
|
|
1018
1018
|
tags?: Record<string, string> | undefined;
|
|
1019
1019
|
}
|
|
1020
1020
|
/**
|
|
1021
|
-
* <p>The
|
|
1021
|
+
* <p>The number of one or more Amazon EVS resources exceeds the maximum allowed. For a list of Amazon EVS quotas, see <a href="https://docs.aws.amazon.com/evs/latest/userguide/service-quotas-evs.html">Amazon EVS endpoints and quotas</a> in the <i>Amazon EVS User Guide</i>. Delete some resources or request an increase in your service quota. To request an increase, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html">Amazon Web Services Service Quotas</a> in the <i>Amazon Web Services General Reference Guide</i>. </p>
|
|
1022
|
+
* @public
|
|
1023
|
+
*/
|
|
1024
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
1025
|
+
readonly name: "ServiceQuotaExceededException";
|
|
1026
|
+
readonly $fault: "client";
|
|
1027
|
+
/**
|
|
1028
|
+
* @internal
|
|
1029
|
+
*/
|
|
1030
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
1031
|
+
}
|
|
1032
|
+
/**
|
|
1033
|
+
* <note> <p> <code>TagPolicyException</code> is deprecated. See <a href="https://docs.aws.amazon.com/evs/latest/APIReference/API_ValidationException.html"> <code>ValidationException</code> </a> instead.</p> </note> <p>The request doesn't comply with IAM tag policy. Correct your request and then retry it.</p>
|
|
1022
1034
|
* @public
|
|
1023
1035
|
*/
|
|
1024
1036
|
export declare class TagPolicyException extends __BaseException {
|
|
@@ -1050,7 +1062,7 @@ export interface TagResourceRequest {
|
|
|
1050
1062
|
export interface TagResourceResponse {
|
|
1051
1063
|
}
|
|
1052
1064
|
/**
|
|
1053
|
-
* <p>A service resource associated with the request has more than 200 tags.</p>
|
|
1065
|
+
* <note> <p> <code>TooManyTagsException</code> is deprecated. See <a href="https://docs.aws.amazon.com/evs/latest/APIReference/API_ServiceQuotaExceededException.html"> <code>ServiceQuotaExceededException</code> </a> instead.</p> </note> <p>A service resource associated with the request has more than 200 tags.</p>
|
|
1054
1066
|
* @public
|
|
1055
1067
|
*/
|
|
1056
1068
|
export declare class TooManyTagsException extends __BaseException {
|
|
@@ -282,6 +282,13 @@ export interface ListTagsForResourceRequest {
|
|
|
282
282
|
export interface ListTagsForResourceResponse {
|
|
283
283
|
tags?: Record<string, string> | undefined;
|
|
284
284
|
}
|
|
285
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
286
|
+
readonly name: "ServiceQuotaExceededException";
|
|
287
|
+
readonly $fault: "client";
|
|
288
|
+
constructor(
|
|
289
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
290
|
+
);
|
|
291
|
+
}
|
|
285
292
|
export declare class TagPolicyException extends __BaseException {
|
|
286
293
|
readonly name: "TagPolicyException";
|
|
287
294
|
readonly $fault: "client";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-evs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Evs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.860.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.858.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.859.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.840.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.840.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.840.0",
|