@aws-sdk/client-evs 3.1032.0 → 3.1033.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 +49 -0
- package/dist-cjs/endpoint/bdd.js +49 -0
- package/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/dist-cjs/index.js +136 -0
- package/dist-cjs/schemas/schemas_0.js +189 -23
- package/dist-es/Evs.js +18 -0
- package/dist-es/commands/CreateEntitlementCommand.js +16 -0
- package/dist-es/commands/CreateEnvironmentConnectorCommand.js +16 -0
- package/dist-es/commands/DeleteEntitlementCommand.js +16 -0
- package/dist-es/commands/DeleteEnvironmentConnectorCommand.js +16 -0
- package/dist-es/commands/ListEnvironmentConnectorsCommand.js +16 -0
- package/dist-es/commands/ListVmEntitlementsCommand.js +16 -0
- package/dist-es/commands/UpdateEnvironmentConnectorCommand.js +16 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/endpoint/bdd.js +46 -0
- package/dist-es/endpoint/endpointResolver.js +3 -3
- package/dist-es/models/enums.js +26 -0
- package/dist-es/pagination/ListEnvironmentConnectorsPaginator.js +4 -0
- package/dist-es/pagination/ListVmEntitlementsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +187 -21
- package/dist-types/Evs.d.ts +63 -0
- package/dist-types/EvsClient.d.ts +9 -2
- package/dist-types/commands/CreateEntitlementCommand.d.ts +105 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/CreateEnvironmentConnectorCommand.d.ts +106 -0
- package/dist-types/commands/DeleteEntitlementCommand.d.ts +105 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEnvironmentConnectorCommand.d.ts +114 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentConnectorsCommand.d.ts +104 -0
- package/dist-types/commands/ListVmEntitlementsCommand.d.ts +101 -0
- package/dist-types/commands/UpdateEnvironmentConnectorCommand.d.ts +106 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/models/enums.d.ts +58 -0
- package/dist-types/models/models_0.d.ts +435 -1
- package/dist-types/pagination/ListEnvironmentConnectorsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListVmEntitlementsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +25 -0
- package/dist-types/ts3.4/Evs.d.ts +133 -0
- package/dist-types/ts3.4/EvsClient.d.ts +44 -2
- package/dist-types/ts3.4/commands/CreateEntitlementCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentConnectorCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteEntitlementCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentConnectorCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEnvironmentConnectorsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListVmEntitlementsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateEnvironmentConnectorCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +33 -0
- package/dist-types/ts3.4/models/models_0.d.ts +108 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentConnectorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListVmEntitlementsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +25 -0
- package/package.json +5 -5
- package/dist-cjs/endpoint/ruleset.js +0 -7
- package/dist-es/endpoint/ruleset.js +0 -4
- package/dist-types/endpoint/ruleset.d.ts +0 -2
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { _InstanceType, CheckResult, CheckType, EnvironmentState, HostState, VcfVersion, VlanState } from "./enums";
|
|
1
|
+
import type { _InstanceType, CheckResult, CheckType, ConnectorState, ConnectorType, EntitlementStatus, EntitlementType, EnvironmentState, HostState, VcfVersion, VlanState } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
@@ -137,6 +137,118 @@ export interface ValidationExceptionField {
|
|
|
137
137
|
*/
|
|
138
138
|
message: string | undefined;
|
|
139
139
|
}
|
|
140
|
+
/**
|
|
141
|
+
* @public
|
|
142
|
+
*/
|
|
143
|
+
export interface CreateEntitlementRequest {
|
|
144
|
+
/**
|
|
145
|
+
* <note> <p>This parameter is not used in Amazon EVS currently. If you supply input for this parameter, it will have no effect.</p> </note> <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the entitlement creation request. If you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.</p>
|
|
146
|
+
* @public
|
|
147
|
+
*/
|
|
148
|
+
clientToken?: string | undefined;
|
|
149
|
+
/**
|
|
150
|
+
* <p>A unique ID for the environment to create the entitlement in.</p>
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
153
|
+
environmentId: string | undefined;
|
|
154
|
+
/**
|
|
155
|
+
* <p>A unique ID for the connector associated with the entitlement.</p>
|
|
156
|
+
* @public
|
|
157
|
+
*/
|
|
158
|
+
connectorId: string | undefined;
|
|
159
|
+
/**
|
|
160
|
+
* <p>The type of entitlement to create.</p>
|
|
161
|
+
* @public
|
|
162
|
+
*/
|
|
163
|
+
entitlementType: EntitlementType | undefined;
|
|
164
|
+
/**
|
|
165
|
+
* <p>The list of VMware vSphere virtual machine managed object IDs to create entitlements for.</p>
|
|
166
|
+
* @public
|
|
167
|
+
*/
|
|
168
|
+
vmIds: string[] | undefined;
|
|
169
|
+
}
|
|
170
|
+
/**
|
|
171
|
+
* <p>An object that contains error details for an entitlement.</p>
|
|
172
|
+
* @public
|
|
173
|
+
*/
|
|
174
|
+
export interface ErrorDetail {
|
|
175
|
+
/**
|
|
176
|
+
* <p>The error code.</p>
|
|
177
|
+
* @public
|
|
178
|
+
*/
|
|
179
|
+
errorCode: string | undefined;
|
|
180
|
+
/**
|
|
181
|
+
* <p>The error message.</p>
|
|
182
|
+
* @public
|
|
183
|
+
*/
|
|
184
|
+
errorMessage: string | undefined;
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* <p>An object that represents a Windows Server License entitlement for a virtual machine in an Amazon EVS environment.</p>
|
|
188
|
+
* @public
|
|
189
|
+
*/
|
|
190
|
+
export interface VmEntitlement {
|
|
191
|
+
/**
|
|
192
|
+
* <p>The unique ID of the virtual machine.</p>
|
|
193
|
+
* @public
|
|
194
|
+
*/
|
|
195
|
+
vmId?: string | undefined;
|
|
196
|
+
/**
|
|
197
|
+
* <p>The unique ID of the environment.</p>
|
|
198
|
+
* @public
|
|
199
|
+
*/
|
|
200
|
+
environmentId?: string | undefined;
|
|
201
|
+
/**
|
|
202
|
+
* <p>The unique ID of the connector associated with the entitlement.</p>
|
|
203
|
+
* @public
|
|
204
|
+
*/
|
|
205
|
+
connectorId?: string | undefined;
|
|
206
|
+
/**
|
|
207
|
+
* <p>The name of the virtual machine.</p>
|
|
208
|
+
* @public
|
|
209
|
+
*/
|
|
210
|
+
vmName?: string | undefined;
|
|
211
|
+
/**
|
|
212
|
+
* <p>The type of entitlement.</p>
|
|
213
|
+
* @public
|
|
214
|
+
*/
|
|
215
|
+
type?: EntitlementType | undefined;
|
|
216
|
+
/**
|
|
217
|
+
* <p>The status of the entitlement.</p>
|
|
218
|
+
* @public
|
|
219
|
+
*/
|
|
220
|
+
status?: EntitlementStatus | undefined;
|
|
221
|
+
/**
|
|
222
|
+
* <p>The date and time that the entitlement was last synced.</p>
|
|
223
|
+
* @public
|
|
224
|
+
*/
|
|
225
|
+
lastSyncedAt?: Date | undefined;
|
|
226
|
+
/**
|
|
227
|
+
* <p>The date and time that the entitlement started.</p>
|
|
228
|
+
* @public
|
|
229
|
+
*/
|
|
230
|
+
startedAt?: Date | undefined;
|
|
231
|
+
/**
|
|
232
|
+
* <p>The date and time that the entitlement stopped.</p>
|
|
233
|
+
* @public
|
|
234
|
+
*/
|
|
235
|
+
stoppedAt?: Date | undefined;
|
|
236
|
+
/**
|
|
237
|
+
* <p>The error details associated with the entitlement, if applicable.</p>
|
|
238
|
+
* @public
|
|
239
|
+
*/
|
|
240
|
+
errorDetail?: ErrorDetail | undefined;
|
|
241
|
+
}
|
|
242
|
+
/**
|
|
243
|
+
* @public
|
|
244
|
+
*/
|
|
245
|
+
export interface CreateEntitlementResponse {
|
|
246
|
+
/**
|
|
247
|
+
* <p>A list of the created entitlements.</p>
|
|
248
|
+
* @public
|
|
249
|
+
*/
|
|
250
|
+
entitlements?: VmEntitlement[] | undefined;
|
|
251
|
+
}
|
|
140
252
|
/**
|
|
141
253
|
* <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>
|
|
142
254
|
* @public
|
|
@@ -562,6 +674,133 @@ export interface CreateEnvironmentResponse {
|
|
|
562
674
|
*/
|
|
563
675
|
environment?: Environment | undefined;
|
|
564
676
|
}
|
|
677
|
+
/**
|
|
678
|
+
* @public
|
|
679
|
+
*/
|
|
680
|
+
export interface CreateEnvironmentConnectorRequest {
|
|
681
|
+
/**
|
|
682
|
+
* <note> <p>This parameter is not used in Amazon EVS currently. If you supply input for this parameter, it will have no effect.</p> </note> <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the connector creation request. If you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.</p>
|
|
683
|
+
* @public
|
|
684
|
+
*/
|
|
685
|
+
clientToken?: string | undefined;
|
|
686
|
+
/**
|
|
687
|
+
* <p>A unique ID for the environment to create the connector in.</p>
|
|
688
|
+
* @public
|
|
689
|
+
*/
|
|
690
|
+
environmentId: string | undefined;
|
|
691
|
+
/**
|
|
692
|
+
* <p>The type of connector to create.</p>
|
|
693
|
+
* @public
|
|
694
|
+
*/
|
|
695
|
+
type: ConnectorType | undefined;
|
|
696
|
+
/**
|
|
697
|
+
* <p>The fully qualified domain name (FQDN) of the VCF appliance that the connector targets.</p>
|
|
698
|
+
* @public
|
|
699
|
+
*/
|
|
700
|
+
applianceFqdn: string | undefined;
|
|
701
|
+
/**
|
|
702
|
+
* <p>The ARN or name of the Amazon Web Services Secrets Manager secret that stores the credentials for the VCF appliance.</p> <important> <p>Do not use credentials with Administrator privileges. We recommend using a service account with the minimum required permissions.</p> </important>
|
|
703
|
+
* @public
|
|
704
|
+
*/
|
|
705
|
+
secretIdentifier: string | undefined;
|
|
706
|
+
}
|
|
707
|
+
/**
|
|
708
|
+
* <p>A check on a connector to identify connectivity health.</p>
|
|
709
|
+
* @public
|
|
710
|
+
*/
|
|
711
|
+
export interface ConnectorCheck {
|
|
712
|
+
/**
|
|
713
|
+
* <p>The check type.</p>
|
|
714
|
+
* @public
|
|
715
|
+
*/
|
|
716
|
+
type?: CheckType | undefined;
|
|
717
|
+
/**
|
|
718
|
+
* <p>The check result.</p>
|
|
719
|
+
* @public
|
|
720
|
+
*/
|
|
721
|
+
result?: CheckResult | undefined;
|
|
722
|
+
/**
|
|
723
|
+
* <p>The date and time of the last check attempt.</p>
|
|
724
|
+
* @public
|
|
725
|
+
*/
|
|
726
|
+
lastCheckAttempt?: Date | undefined;
|
|
727
|
+
/**
|
|
728
|
+
* <p>The time when connector health began to be impaired.</p>
|
|
729
|
+
* @public
|
|
730
|
+
*/
|
|
731
|
+
impairedSince?: Date | undefined;
|
|
732
|
+
}
|
|
733
|
+
/**
|
|
734
|
+
* <p>An object that represents a connector for an Amazon EVS environment. A connector establishes a vCenter connection using the credentials stored in Amazon Web Services Secrets Manager.</p>
|
|
735
|
+
* @public
|
|
736
|
+
*/
|
|
737
|
+
export interface Connector {
|
|
738
|
+
/**
|
|
739
|
+
* <p>The unique ID of the environment that the connector belongs to.</p>
|
|
740
|
+
* @public
|
|
741
|
+
*/
|
|
742
|
+
environmentId?: string | undefined;
|
|
743
|
+
/**
|
|
744
|
+
* <p>The unique ID of the connector.</p>
|
|
745
|
+
* @public
|
|
746
|
+
*/
|
|
747
|
+
connectorId?: string | undefined;
|
|
748
|
+
/**
|
|
749
|
+
* <p>The type of the connector.</p>
|
|
750
|
+
* @public
|
|
751
|
+
*/
|
|
752
|
+
type?: ConnectorType | undefined;
|
|
753
|
+
/**
|
|
754
|
+
* <p>The fully qualified domain name (FQDN) of the VCF appliance that the connector connects to.</p>
|
|
755
|
+
* @public
|
|
756
|
+
*/
|
|
757
|
+
applianceFqdn?: string | undefined;
|
|
758
|
+
/**
|
|
759
|
+
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret that stores the credentials for the VCF appliance.</p>
|
|
760
|
+
* @public
|
|
761
|
+
*/
|
|
762
|
+
secretArn?: string | undefined;
|
|
763
|
+
/**
|
|
764
|
+
* <p>The state of the connector.</p>
|
|
765
|
+
* @public
|
|
766
|
+
*/
|
|
767
|
+
state?: ConnectorState | undefined;
|
|
768
|
+
/**
|
|
769
|
+
* <p>A detailed description of the connector state.</p>
|
|
770
|
+
* @public
|
|
771
|
+
*/
|
|
772
|
+
stateDetails?: string | undefined;
|
|
773
|
+
/**
|
|
774
|
+
* <p>The status of the connector.</p>
|
|
775
|
+
* @public
|
|
776
|
+
*/
|
|
777
|
+
status?: CheckResult | undefined;
|
|
778
|
+
/**
|
|
779
|
+
* <p>A list of checks that are run on the connector.</p>
|
|
780
|
+
* @public
|
|
781
|
+
*/
|
|
782
|
+
checks?: ConnectorCheck[] | undefined;
|
|
783
|
+
/**
|
|
784
|
+
* <p>The date and time that the connector was created.</p>
|
|
785
|
+
* @public
|
|
786
|
+
*/
|
|
787
|
+
createdAt?: Date | undefined;
|
|
788
|
+
/**
|
|
789
|
+
* <p>The date and time that the connector was modified.</p>
|
|
790
|
+
* @public
|
|
791
|
+
*/
|
|
792
|
+
modifiedAt?: Date | undefined;
|
|
793
|
+
}
|
|
794
|
+
/**
|
|
795
|
+
* @public
|
|
796
|
+
*/
|
|
797
|
+
export interface CreateEnvironmentConnectorResponse {
|
|
798
|
+
/**
|
|
799
|
+
* <p>A description of the created connector.</p>
|
|
800
|
+
* @public
|
|
801
|
+
*/
|
|
802
|
+
connector?: Connector | undefined;
|
|
803
|
+
}
|
|
565
804
|
/**
|
|
566
805
|
* @public
|
|
567
806
|
*/
|
|
@@ -725,6 +964,46 @@ export interface CreateEnvironmentHostResponse {
|
|
|
725
964
|
*/
|
|
726
965
|
host?: Host | undefined;
|
|
727
966
|
}
|
|
967
|
+
/**
|
|
968
|
+
* @public
|
|
969
|
+
*/
|
|
970
|
+
export interface DeleteEntitlementRequest {
|
|
971
|
+
/**
|
|
972
|
+
* <note> <p>This parameter is not used in Amazon EVS currently. If you supply input for this parameter, it will have no effect.</p> </note> <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the entitlement deletion request. If you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.</p>
|
|
973
|
+
* @public
|
|
974
|
+
*/
|
|
975
|
+
clientToken?: string | undefined;
|
|
976
|
+
/**
|
|
977
|
+
* <p>A unique ID for the environment that the entitlement belongs to.</p>
|
|
978
|
+
* @public
|
|
979
|
+
*/
|
|
980
|
+
environmentId: string | undefined;
|
|
981
|
+
/**
|
|
982
|
+
* <p>A unique ID for the connector associated with the entitlement.</p>
|
|
983
|
+
* @public
|
|
984
|
+
*/
|
|
985
|
+
connectorId: string | undefined;
|
|
986
|
+
/**
|
|
987
|
+
* <p>The type of entitlement to delete.</p>
|
|
988
|
+
* @public
|
|
989
|
+
*/
|
|
990
|
+
entitlementType: EntitlementType | undefined;
|
|
991
|
+
/**
|
|
992
|
+
* <p>The list of VMware vSphere virtual machine managed object IDs to delete entitlements for.</p>
|
|
993
|
+
* @public
|
|
994
|
+
*/
|
|
995
|
+
vmIds: string[] | undefined;
|
|
996
|
+
}
|
|
997
|
+
/**
|
|
998
|
+
* @public
|
|
999
|
+
*/
|
|
1000
|
+
export interface DeleteEntitlementResponse {
|
|
1001
|
+
/**
|
|
1002
|
+
* <p>A list of the deleted entitlements.</p>
|
|
1003
|
+
* @public
|
|
1004
|
+
*/
|
|
1005
|
+
entitlements?: VmEntitlement[] | undefined;
|
|
1006
|
+
}
|
|
728
1007
|
/**
|
|
729
1008
|
* @public
|
|
730
1009
|
*/
|
|
@@ -750,6 +1029,41 @@ export interface DeleteEnvironmentResponse {
|
|
|
750
1029
|
*/
|
|
751
1030
|
environment?: Environment | undefined;
|
|
752
1031
|
}
|
|
1032
|
+
/**
|
|
1033
|
+
* @public
|
|
1034
|
+
*/
|
|
1035
|
+
export interface DeleteEnvironmentConnectorRequest {
|
|
1036
|
+
/**
|
|
1037
|
+
* <note> <p>This parameter is not used in Amazon EVS currently. If you supply input for this parameter, it will have no effect.</p> </note> <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the connector deletion request. If you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.</p>
|
|
1038
|
+
* @public
|
|
1039
|
+
*/
|
|
1040
|
+
clientToken?: string | undefined;
|
|
1041
|
+
/**
|
|
1042
|
+
* <p>A unique ID for the environment that the connector belongs to.</p>
|
|
1043
|
+
* @public
|
|
1044
|
+
*/
|
|
1045
|
+
environmentId: string | undefined;
|
|
1046
|
+
/**
|
|
1047
|
+
* <p>A unique ID for the connector to be deleted.</p>
|
|
1048
|
+
* @public
|
|
1049
|
+
*/
|
|
1050
|
+
connectorId: string | undefined;
|
|
1051
|
+
}
|
|
1052
|
+
/**
|
|
1053
|
+
* @public
|
|
1054
|
+
*/
|
|
1055
|
+
export interface DeleteEnvironmentConnectorResponse {
|
|
1056
|
+
/**
|
|
1057
|
+
* <p>A description of the deleted connector.</p>
|
|
1058
|
+
* @public
|
|
1059
|
+
*/
|
|
1060
|
+
connector?: Connector | undefined;
|
|
1061
|
+
/**
|
|
1062
|
+
* <p>A summary of the environment that the connector was deleted from.</p>
|
|
1063
|
+
* @public
|
|
1064
|
+
*/
|
|
1065
|
+
environmentSummary?: EnvironmentSummary | undefined;
|
|
1066
|
+
}
|
|
753
1067
|
/**
|
|
754
1068
|
* @public
|
|
755
1069
|
*/
|
|
@@ -840,6 +1154,41 @@ export interface GetEnvironmentResponse {
|
|
|
840
1154
|
*/
|
|
841
1155
|
environment?: Environment | undefined;
|
|
842
1156
|
}
|
|
1157
|
+
/**
|
|
1158
|
+
* @public
|
|
1159
|
+
*/
|
|
1160
|
+
export interface ListEnvironmentConnectorsRequest {
|
|
1161
|
+
/**
|
|
1162
|
+
* <p>A unique pagination token for each page. If <code>nextToken</code> is returned, there are more results available. Make the call again using the returned token with all other arguments unchanged to retrieve the next page. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken</i> error.</p>
|
|
1163
|
+
* @public
|
|
1164
|
+
*/
|
|
1165
|
+
nextToken?: string | undefined;
|
|
1166
|
+
/**
|
|
1167
|
+
* <p>The maximum number of results to return. If you specify <code>MaxResults</code> in the request, the response includes information up to the limit specified.</p>
|
|
1168
|
+
* @public
|
|
1169
|
+
*/
|
|
1170
|
+
maxResults?: number | undefined;
|
|
1171
|
+
/**
|
|
1172
|
+
* <p>A unique ID for the environment.</p>
|
|
1173
|
+
* @public
|
|
1174
|
+
*/
|
|
1175
|
+
environmentId: string | undefined;
|
|
1176
|
+
}
|
|
1177
|
+
/**
|
|
1178
|
+
* @public
|
|
1179
|
+
*/
|
|
1180
|
+
export interface ListEnvironmentConnectorsResponse {
|
|
1181
|
+
/**
|
|
1182
|
+
* <p>A unique pagination token for next page results. Make the call again using this token to retrieve the next page.</p>
|
|
1183
|
+
* @public
|
|
1184
|
+
*/
|
|
1185
|
+
nextToken?: string | undefined;
|
|
1186
|
+
/**
|
|
1187
|
+
* <p>A list of connectors in the environment.</p>
|
|
1188
|
+
* @public
|
|
1189
|
+
*/
|
|
1190
|
+
connectors?: Connector[] | undefined;
|
|
1191
|
+
}
|
|
843
1192
|
/**
|
|
844
1193
|
* @public
|
|
845
1194
|
*/
|
|
@@ -945,6 +1294,91 @@ export interface ListEnvironmentVlansResponse {
|
|
|
945
1294
|
*/
|
|
946
1295
|
environmentVlans?: Vlan[] | undefined;
|
|
947
1296
|
}
|
|
1297
|
+
/**
|
|
1298
|
+
* @public
|
|
1299
|
+
*/
|
|
1300
|
+
export interface ListVmEntitlementsRequest {
|
|
1301
|
+
/**
|
|
1302
|
+
* <p>A unique pagination token for each page. If <code>nextToken</code> is returned, there are more results available. Make the call again using the returned token with all other arguments unchanged to retrieve the next page. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken</i> error.</p>
|
|
1303
|
+
* @public
|
|
1304
|
+
*/
|
|
1305
|
+
nextToken?: string | undefined;
|
|
1306
|
+
/**
|
|
1307
|
+
* <p>The maximum number of results to return. If you specify <code>MaxResults</code> in the request, the response includes information up to the limit specified.</p>
|
|
1308
|
+
* @public
|
|
1309
|
+
*/
|
|
1310
|
+
maxResults?: number | undefined;
|
|
1311
|
+
/**
|
|
1312
|
+
* <p>A unique ID for the environment.</p>
|
|
1313
|
+
* @public
|
|
1314
|
+
*/
|
|
1315
|
+
environmentId: string | undefined;
|
|
1316
|
+
/**
|
|
1317
|
+
* <p>A unique ID for the connector.</p>
|
|
1318
|
+
* @public
|
|
1319
|
+
*/
|
|
1320
|
+
connectorId: string | undefined;
|
|
1321
|
+
/**
|
|
1322
|
+
* <p>The type of entitlement to list.</p>
|
|
1323
|
+
* @public
|
|
1324
|
+
*/
|
|
1325
|
+
entitlementType: EntitlementType | undefined;
|
|
1326
|
+
}
|
|
1327
|
+
/**
|
|
1328
|
+
* @public
|
|
1329
|
+
*/
|
|
1330
|
+
export interface ListVmEntitlementsResponse {
|
|
1331
|
+
/**
|
|
1332
|
+
* <p>A unique pagination token for next page results. Make the call again using this token to retrieve the next page.</p>
|
|
1333
|
+
* @public
|
|
1334
|
+
*/
|
|
1335
|
+
nextToken?: string | undefined;
|
|
1336
|
+
/**
|
|
1337
|
+
* <p>A list of entitlements for virtual machines in the environment.</p>
|
|
1338
|
+
* @public
|
|
1339
|
+
*/
|
|
1340
|
+
entitlements?: VmEntitlement[] | undefined;
|
|
1341
|
+
}
|
|
1342
|
+
/**
|
|
1343
|
+
* @public
|
|
1344
|
+
*/
|
|
1345
|
+
export interface UpdateEnvironmentConnectorRequest {
|
|
1346
|
+
/**
|
|
1347
|
+
* <note> <p>This parameter is not used in Amazon EVS currently. If you supply input for this parameter, it will have no effect.</p> </note> <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the connector update request. If you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.</p>
|
|
1348
|
+
* @public
|
|
1349
|
+
*/
|
|
1350
|
+
clientToken?: string | undefined;
|
|
1351
|
+
/**
|
|
1352
|
+
* <p>A unique ID for the environment that the connector belongs to.</p>
|
|
1353
|
+
* @public
|
|
1354
|
+
*/
|
|
1355
|
+
environmentId: string | undefined;
|
|
1356
|
+
/**
|
|
1357
|
+
* <p>A unique ID for the connector to update.</p>
|
|
1358
|
+
* @public
|
|
1359
|
+
*/
|
|
1360
|
+
connectorId: string | undefined;
|
|
1361
|
+
/**
|
|
1362
|
+
* <p>The new fully qualified domain name (FQDN) of the VCF appliance that the connector connects to.</p>
|
|
1363
|
+
* @public
|
|
1364
|
+
*/
|
|
1365
|
+
applianceFqdn?: string | undefined;
|
|
1366
|
+
/**
|
|
1367
|
+
* <p>The new ARN or name of the Amazon Web Services Secrets Manager secret that stores the credentials for the VCF appliance.</p>
|
|
1368
|
+
* @public
|
|
1369
|
+
*/
|
|
1370
|
+
secretIdentifier?: string | undefined;
|
|
1371
|
+
}
|
|
1372
|
+
/**
|
|
1373
|
+
* @public
|
|
1374
|
+
*/
|
|
1375
|
+
export interface UpdateEnvironmentConnectorResponse {
|
|
1376
|
+
/**
|
|
1377
|
+
* <p>A description of the updated connector.</p>
|
|
1378
|
+
* @public
|
|
1379
|
+
*/
|
|
1380
|
+
connector?: Connector | undefined;
|
|
1381
|
+
}
|
|
948
1382
|
/**
|
|
949
1383
|
* @public
|
|
950
1384
|
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListEnvironmentConnectorsCommandInput, ListEnvironmentConnectorsCommandOutput } from "../commands/ListEnvironmentConnectorsCommand";
|
|
3
|
+
import type { EvsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListEnvironmentConnectors: (config: EvsPaginationConfiguration, input: ListEnvironmentConnectorsCommandInput, ...rest: any[]) => Paginator<ListEnvironmentConnectorsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListVmEntitlementsCommandInput, ListVmEntitlementsCommandOutput } from "../commands/ListVmEntitlementsCommand";
|
|
3
|
+
import type { EvsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListVmEntitlements: (config: EvsPaginationConfiguration, input: ListVmEntitlementsCommandInput, ...rest: any[]) => Paginator<ListVmEntitlementsCommandOutput>;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListEnvironmentConnectorsPaginator";
|
|
2
3
|
export * from "./ListEnvironmentHostsPaginator";
|
|
3
4
|
export * from "./ListEnvironmentsPaginator";
|
|
4
5
|
export * from "./ListEnvironmentVlansPaginator";
|
|
6
|
+
export * from "./ListVmEntitlementsPaginator";
|
|
@@ -18,10 +18,20 @@ export declare var AssociateEipToVlanRequest$: StaticStructureSchema;
|
|
|
18
18
|
export declare var AssociateEipToVlanResponse$: StaticStructureSchema;
|
|
19
19
|
export declare var Check$: StaticStructureSchema;
|
|
20
20
|
export declare var ConnectivityInfo$: StaticStructureSchema;
|
|
21
|
+
export declare var Connector$: StaticStructureSchema;
|
|
22
|
+
export declare var ConnectorCheck$: StaticStructureSchema;
|
|
23
|
+
export declare var CreateEntitlementRequest$: StaticStructureSchema;
|
|
24
|
+
export declare var CreateEntitlementResponse$: StaticStructureSchema;
|
|
25
|
+
export declare var CreateEnvironmentConnectorRequest$: StaticStructureSchema;
|
|
26
|
+
export declare var CreateEnvironmentConnectorResponse$: StaticStructureSchema;
|
|
21
27
|
export declare var CreateEnvironmentHostRequest$: StaticStructureSchema;
|
|
22
28
|
export declare var CreateEnvironmentHostResponse$: StaticStructureSchema;
|
|
23
29
|
export declare var CreateEnvironmentRequest$: StaticStructureSchema;
|
|
24
30
|
export declare var CreateEnvironmentResponse$: StaticStructureSchema;
|
|
31
|
+
export declare var DeleteEntitlementRequest$: StaticStructureSchema;
|
|
32
|
+
export declare var DeleteEntitlementResponse$: StaticStructureSchema;
|
|
33
|
+
export declare var DeleteEnvironmentConnectorRequest$: StaticStructureSchema;
|
|
34
|
+
export declare var DeleteEnvironmentConnectorResponse$: StaticStructureSchema;
|
|
25
35
|
export declare var DeleteEnvironmentHostRequest$: StaticStructureSchema;
|
|
26
36
|
export declare var DeleteEnvironmentHostResponse$: StaticStructureSchema;
|
|
27
37
|
export declare var DeleteEnvironmentRequest$: StaticStructureSchema;
|
|
@@ -31,6 +41,7 @@ export declare var DisassociateEipFromVlanResponse$: StaticStructureSchema;
|
|
|
31
41
|
export declare var EipAssociation$: StaticStructureSchema;
|
|
32
42
|
export declare var Environment$: StaticStructureSchema;
|
|
33
43
|
export declare var EnvironmentSummary$: StaticStructureSchema;
|
|
44
|
+
export declare var ErrorDetail$: StaticStructureSchema;
|
|
34
45
|
export declare var GetEnvironmentRequest$: StaticStructureSchema;
|
|
35
46
|
export declare var GetEnvironmentResponse$: StaticStructureSchema;
|
|
36
47
|
export declare var GetVersionsRequest$: StaticStructureSchema;
|
|
@@ -41,6 +52,8 @@ export declare var InitialVlanInfo$: StaticStructureSchema;
|
|
|
41
52
|
export declare var InitialVlans$: StaticStructureSchema;
|
|
42
53
|
export declare var InstanceTypeEsxVersionsInfo$: StaticStructureSchema;
|
|
43
54
|
export declare var LicenseInfo$: StaticStructureSchema;
|
|
55
|
+
export declare var ListEnvironmentConnectorsRequest$: StaticStructureSchema;
|
|
56
|
+
export declare var ListEnvironmentConnectorsResponse$: StaticStructureSchema;
|
|
44
57
|
export declare var ListEnvironmentHostsRequest$: StaticStructureSchema;
|
|
45
58
|
export declare var ListEnvironmentHostsResponse$: StaticStructureSchema;
|
|
46
59
|
export declare var ListEnvironmentsRequest$: StaticStructureSchema;
|
|
@@ -49,6 +62,8 @@ export declare var ListEnvironmentVlansRequest$: StaticStructureSchema;
|
|
|
49
62
|
export declare var ListEnvironmentVlansResponse$: StaticStructureSchema;
|
|
50
63
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
51
64
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
65
|
+
export declare var ListVmEntitlementsRequest$: StaticStructureSchema;
|
|
66
|
+
export declare var ListVmEntitlementsResponse$: StaticStructureSchema;
|
|
52
67
|
export declare var NetworkInterface$: StaticStructureSchema;
|
|
53
68
|
export declare var Secret$: StaticStructureSchema;
|
|
54
69
|
export declare var ServiceAccessSecurityGroups$: StaticStructureSchema;
|
|
@@ -56,21 +71,31 @@ export declare var TagResourceRequest$: StaticStructureSchema;
|
|
|
56
71
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
57
72
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
58
73
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
74
|
+
export declare var UpdateEnvironmentConnectorRequest$: StaticStructureSchema;
|
|
75
|
+
export declare var UpdateEnvironmentConnectorResponse$: StaticStructureSchema;
|
|
59
76
|
export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
60
77
|
export declare var VcfHostnames$: StaticStructureSchema;
|
|
61
78
|
export declare var VcfVersionInfo$: StaticStructureSchema;
|
|
62
79
|
export declare var Vlan$: StaticStructureSchema;
|
|
80
|
+
export declare var VmEntitlement$: StaticStructureSchema;
|
|
63
81
|
export declare var AssociateEipToVlan$: StaticOperationSchema;
|
|
82
|
+
export declare var CreateEntitlement$: StaticOperationSchema;
|
|
64
83
|
export declare var CreateEnvironment$: StaticOperationSchema;
|
|
84
|
+
export declare var CreateEnvironmentConnector$: StaticOperationSchema;
|
|
65
85
|
export declare var CreateEnvironmentHost$: StaticOperationSchema;
|
|
86
|
+
export declare var DeleteEntitlement$: StaticOperationSchema;
|
|
66
87
|
export declare var DeleteEnvironment$: StaticOperationSchema;
|
|
88
|
+
export declare var DeleteEnvironmentConnector$: StaticOperationSchema;
|
|
67
89
|
export declare var DeleteEnvironmentHost$: StaticOperationSchema;
|
|
68
90
|
export declare var DisassociateEipFromVlan$: StaticOperationSchema;
|
|
69
91
|
export declare var GetEnvironment$: StaticOperationSchema;
|
|
70
92
|
export declare var GetVersions$: StaticOperationSchema;
|
|
93
|
+
export declare var ListEnvironmentConnectors$: StaticOperationSchema;
|
|
71
94
|
export declare var ListEnvironmentHosts$: StaticOperationSchema;
|
|
72
95
|
export declare var ListEnvironments$: StaticOperationSchema;
|
|
73
96
|
export declare var ListEnvironmentVlans$: StaticOperationSchema;
|
|
74
97
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
98
|
+
export declare var ListVmEntitlements$: StaticOperationSchema;
|
|
75
99
|
export declare var TagResource$: StaticOperationSchema;
|
|
76
100
|
export declare var UntagResource$: StaticOperationSchema;
|
|
101
|
+
export declare var UpdateEnvironmentConnector$: StaticOperationSchema;
|