aws-sdk-evs 1.14.0 → 1.15.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-evs/client.rb +506 -4
- data/lib/aws-sdk-evs/client_api.rb +230 -0
- data/lib/aws-sdk-evs/types.rb +564 -0
- data/lib/aws-sdk-evs.rb +1 -1
- data/sig/client.rbs +97 -0
- data/sig/types.rbs +141 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1146c4ef6bffd2e66ec3a217610b2174729732f0e16ad9b435a56bee6eb48f13
|
|
4
|
+
data.tar.gz: 4c58aef245339e8a6ab4fb9c32a7318191c49b040e2836a59d150b84e2dd3c9a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5f3e4d88e2ecca01730491448cd7cf0675b6425ce84eebc95942e1ad341853e5ad2e361e04fef0c55bb2897b9031b34e638035cef5ea9f1ad67a9ac2dd07f86e
|
|
7
|
+
data.tar.gz: 8b1c1ef479ab32c1dd0324705ed926a68d56fedf731f4e66b9f32239f6d662059055580a0f19c5903e911a827ec0e0373aefe640c86be476e597213f43b1f191
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.15.0 (2026-04-20)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon EVS now allows you to create connectors to your vCenter appliances and create Windows Server entitlements for virtual machines running in your EVS environments
|
|
8
|
+
|
|
4
9
|
1.14.0 (2026-03-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.15.0
|
data/lib/aws-sdk-evs/client.rb
CHANGED
|
@@ -552,6 +552,77 @@ module Aws::Evs
|
|
|
552
552
|
req.send_request(options)
|
|
553
553
|
end
|
|
554
554
|
|
|
555
|
+
# Creates a Windows Server License entitlement for virtual machines in
|
|
556
|
+
# an Amazon EVS environment using the provided vCenter Server connector.
|
|
557
|
+
# This is an asynchronous operation. Amazon EVS validates the specified
|
|
558
|
+
# virtual machines before starting usage tracking.
|
|
559
|
+
#
|
|
560
|
+
# @option params [String] :client_token
|
|
561
|
+
# <note markdown="1"> This parameter is not used in Amazon EVS
|
|
562
|
+
# currently. If you supply
|
|
563
|
+
# input for this parameter, it will have no effect.
|
|
564
|
+
#
|
|
565
|
+
# </note>
|
|
566
|
+
#
|
|
567
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
568
|
+
# idempotency of the entitlement creation request. If you do not specify
|
|
569
|
+
# a client token, a randomly generated token is used for the request to
|
|
570
|
+
# ensure idempotency.
|
|
571
|
+
#
|
|
572
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
573
|
+
# not need to pass this option.**
|
|
574
|
+
#
|
|
575
|
+
# @option params [required, String] :environment_id
|
|
576
|
+
# A unique ID for the environment to create the entitlement in.
|
|
577
|
+
#
|
|
578
|
+
# @option params [required, String] :connector_id
|
|
579
|
+
# A unique ID for the connector associated with the entitlement.
|
|
580
|
+
#
|
|
581
|
+
# @option params [required, String] :entitlement_type
|
|
582
|
+
# The type of entitlement to create.
|
|
583
|
+
#
|
|
584
|
+
# @option params [required, Array<String>] :vm_ids
|
|
585
|
+
# The list of VMware vSphere virtual machine managed object IDs to
|
|
586
|
+
# create entitlements for.
|
|
587
|
+
#
|
|
588
|
+
# @return [Types::CreateEntitlementResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
589
|
+
#
|
|
590
|
+
# * {Types::CreateEntitlementResponse#entitlements #entitlements} => Array<Types::VmEntitlement>
|
|
591
|
+
#
|
|
592
|
+
# @example Request syntax with placeholder values
|
|
593
|
+
#
|
|
594
|
+
# resp = client.create_entitlement({
|
|
595
|
+
# client_token: "ClientToken",
|
|
596
|
+
# environment_id: "EnvironmentId", # required
|
|
597
|
+
# connector_id: "ConnectorId", # required
|
|
598
|
+
# entitlement_type: "WINDOWS_SERVER", # required, accepts WINDOWS_SERVER
|
|
599
|
+
# vm_ids: ["VmId"], # required
|
|
600
|
+
# })
|
|
601
|
+
#
|
|
602
|
+
# @example Response structure
|
|
603
|
+
#
|
|
604
|
+
# resp.entitlements #=> Array
|
|
605
|
+
# resp.entitlements[0].vm_id #=> String
|
|
606
|
+
# resp.entitlements[0].environment_id #=> String
|
|
607
|
+
# resp.entitlements[0].connector_id #=> String
|
|
608
|
+
# resp.entitlements[0].vm_name #=> String
|
|
609
|
+
# resp.entitlements[0].type #=> String, one of "WINDOWS_SERVER"
|
|
610
|
+
# resp.entitlements[0].status #=> String, one of "CREATING", "CREATED", "DELETED", "AT_RISK", "ENTITLEMENT_REMOVED", "CREATE_FAILED"
|
|
611
|
+
# resp.entitlements[0].last_synced_at #=> Time
|
|
612
|
+
# resp.entitlements[0].started_at #=> Time
|
|
613
|
+
# resp.entitlements[0].stopped_at #=> Time
|
|
614
|
+
# resp.entitlements[0].error_detail.error_code #=> String
|
|
615
|
+
# resp.entitlements[0].error_detail.error_message #=> String
|
|
616
|
+
#
|
|
617
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/evs-2023-07-27/CreateEntitlement AWS API Documentation
|
|
618
|
+
#
|
|
619
|
+
# @overload create_entitlement(params = {})
|
|
620
|
+
# @param [Hash] params ({})
|
|
621
|
+
def create_entitlement(params = {}, options = {})
|
|
622
|
+
req = build_request(:create_entitlement, params)
|
|
623
|
+
req.send_request(options)
|
|
624
|
+
end
|
|
625
|
+
|
|
555
626
|
# Creates an Amazon EVS environment that runs VCF software, such as SDDC
|
|
556
627
|
# Manager, NSX Manager, and vCenter Server.
|
|
557
628
|
#
|
|
@@ -823,7 +894,7 @@ module Aws::Evs
|
|
|
823
894
|
# resp.environment.site_id #=> String
|
|
824
895
|
# resp.environment.environment_status #=> String, one of "PASSED", "FAILED", "UNKNOWN"
|
|
825
896
|
# resp.environment.checks #=> Array
|
|
826
|
-
# resp.environment.checks[0].type #=> String, one of "KEY_REUSE", "KEY_COVERAGE", "REACHABILITY", "HOST_COUNT"
|
|
897
|
+
# resp.environment.checks[0].type #=> String, one of "KEY_REUSE", "KEY_COVERAGE", "REACHABILITY", "HOST_COUNT", "VCENTER_REACHABILITY", "VCENTER_VM_SYNC", "VCENTER_VM_EVENT"
|
|
827
898
|
# resp.environment.checks[0].result #=> String, one of "PASSED", "FAILED", "UNKNOWN"
|
|
828
899
|
# resp.environment.checks[0].impaired_since #=> Time
|
|
829
900
|
# resp.environment.connectivity_info.private_route_server_peerings #=> Array
|
|
@@ -852,6 +923,84 @@ module Aws::Evs
|
|
|
852
923
|
req.send_request(options)
|
|
853
924
|
end
|
|
854
925
|
|
|
926
|
+
# Creates a connector for an Amazon EVS environment. A connector
|
|
927
|
+
# establishes a connection to a VCF appliance, such as vCenter, using a
|
|
928
|
+
# fully qualified domain name and an Amazon Web Services Secrets Manager
|
|
929
|
+
# secret that stores the appliance credentials.
|
|
930
|
+
#
|
|
931
|
+
# @option params [String] :client_token
|
|
932
|
+
# <note markdown="1"> This parameter is not used in Amazon EVS
|
|
933
|
+
# currently. If you supply
|
|
934
|
+
# input for this parameter, it will have no effect.
|
|
935
|
+
#
|
|
936
|
+
# </note>
|
|
937
|
+
#
|
|
938
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
939
|
+
# idempotency of the connector creation request. If you do not specify a
|
|
940
|
+
# client token, a randomly generated token is used for the request to
|
|
941
|
+
# ensure idempotency.
|
|
942
|
+
#
|
|
943
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
944
|
+
# not need to pass this option.**
|
|
945
|
+
#
|
|
946
|
+
# @option params [required, String] :environment_id
|
|
947
|
+
# A unique ID for the environment to create the connector in.
|
|
948
|
+
#
|
|
949
|
+
# @option params [required, String] :type
|
|
950
|
+
# The type of connector to create.
|
|
951
|
+
#
|
|
952
|
+
# @option params [required, String] :appliance_fqdn
|
|
953
|
+
# The fully qualified domain name (FQDN) of the VCF appliance that the
|
|
954
|
+
# connector targets.
|
|
955
|
+
#
|
|
956
|
+
# @option params [required, String] :secret_identifier
|
|
957
|
+
# The ARN or name of the Amazon Web Services Secrets Manager secret that
|
|
958
|
+
# stores the credentials for the VCF appliance.
|
|
959
|
+
#
|
|
960
|
+
# Do not use credentials with Administrator privileges. We recommend
|
|
961
|
+
# using a service account with the minimum required permissions.
|
|
962
|
+
#
|
|
963
|
+
# @return [Types::CreateEnvironmentConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
964
|
+
#
|
|
965
|
+
# * {Types::CreateEnvironmentConnectorResponse#connector #connector} => Types::Connector
|
|
966
|
+
#
|
|
967
|
+
# @example Request syntax with placeholder values
|
|
968
|
+
#
|
|
969
|
+
# resp = client.create_environment_connector({
|
|
970
|
+
# client_token: "ClientToken",
|
|
971
|
+
# environment_id: "EnvironmentId", # required
|
|
972
|
+
# type: "VCENTER", # required, accepts VCENTER
|
|
973
|
+
# appliance_fqdn: "ApplianceFqdn", # required
|
|
974
|
+
# secret_identifier: "SecretIdentifier", # required
|
|
975
|
+
# })
|
|
976
|
+
#
|
|
977
|
+
# @example Response structure
|
|
978
|
+
#
|
|
979
|
+
# resp.connector.environment_id #=> String
|
|
980
|
+
# resp.connector.connector_id #=> String
|
|
981
|
+
# resp.connector.type #=> String, one of "VCENTER"
|
|
982
|
+
# resp.connector.appliance_fqdn #=> String
|
|
983
|
+
# resp.connector.secret_arn #=> String
|
|
984
|
+
# resp.connector.state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE", "UPDATING", "UPDATE_FAILED", "DELETING", "DELETED"
|
|
985
|
+
# resp.connector.state_details #=> String
|
|
986
|
+
# resp.connector.status #=> String, one of "PASSED", "FAILED", "UNKNOWN"
|
|
987
|
+
# resp.connector.checks #=> Array
|
|
988
|
+
# resp.connector.checks[0].type #=> String, one of "KEY_REUSE", "KEY_COVERAGE", "REACHABILITY", "HOST_COUNT", "VCENTER_REACHABILITY", "VCENTER_VM_SYNC", "VCENTER_VM_EVENT"
|
|
989
|
+
# resp.connector.checks[0].result #=> String, one of "PASSED", "FAILED", "UNKNOWN"
|
|
990
|
+
# resp.connector.checks[0].last_check_attempt #=> Time
|
|
991
|
+
# resp.connector.checks[0].impaired_since #=> Time
|
|
992
|
+
# resp.connector.created_at #=> Time
|
|
993
|
+
# resp.connector.modified_at #=> Time
|
|
994
|
+
#
|
|
995
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/evs-2023-07-27/CreateEnvironmentConnector AWS API Documentation
|
|
996
|
+
#
|
|
997
|
+
# @overload create_environment_connector(params = {})
|
|
998
|
+
# @param [Hash] params ({})
|
|
999
|
+
def create_environment_connector(params = {}, options = {})
|
|
1000
|
+
req = build_request(:create_environment_connector, params)
|
|
1001
|
+
req.send_request(options)
|
|
1002
|
+
end
|
|
1003
|
+
|
|
855
1004
|
# Creates an ESX host and adds it to an Amazon EVS environment. Amazon
|
|
856
1005
|
# EVS supports 4-16 hosts per environment.
|
|
857
1006
|
#
|
|
@@ -955,6 +1104,76 @@ module Aws::Evs
|
|
|
955
1104
|
req.send_request(options)
|
|
956
1105
|
end
|
|
957
1106
|
|
|
1107
|
+
# Deletes a Windows Server License entitlement for virtual machines in
|
|
1108
|
+
# an Amazon EVS environment. Deleting an entitlement stops usage
|
|
1109
|
+
# tracking for the specified virtual machines.
|
|
1110
|
+
#
|
|
1111
|
+
# @option params [String] :client_token
|
|
1112
|
+
# <note markdown="1"> This parameter is not used in Amazon EVS
|
|
1113
|
+
# currently. If you supply
|
|
1114
|
+
# input for this parameter, it will have no effect.
|
|
1115
|
+
#
|
|
1116
|
+
# </note>
|
|
1117
|
+
#
|
|
1118
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
1119
|
+
# idempotency of the entitlement deletion request. If you do not specify
|
|
1120
|
+
# a client token, a randomly generated token is used for the request to
|
|
1121
|
+
# ensure idempotency.
|
|
1122
|
+
#
|
|
1123
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
1124
|
+
# not need to pass this option.**
|
|
1125
|
+
#
|
|
1126
|
+
# @option params [required, String] :environment_id
|
|
1127
|
+
# A unique ID for the environment that the entitlement belongs to.
|
|
1128
|
+
#
|
|
1129
|
+
# @option params [required, String] :connector_id
|
|
1130
|
+
# A unique ID for the connector associated with the entitlement.
|
|
1131
|
+
#
|
|
1132
|
+
# @option params [required, String] :entitlement_type
|
|
1133
|
+
# The type of entitlement to delete.
|
|
1134
|
+
#
|
|
1135
|
+
# @option params [required, Array<String>] :vm_ids
|
|
1136
|
+
# The list of VMware vSphere virtual machine managed object IDs to
|
|
1137
|
+
# delete entitlements for.
|
|
1138
|
+
#
|
|
1139
|
+
# @return [Types::DeleteEntitlementResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1140
|
+
#
|
|
1141
|
+
# * {Types::DeleteEntitlementResponse#entitlements #entitlements} => Array<Types::VmEntitlement>
|
|
1142
|
+
#
|
|
1143
|
+
# @example Request syntax with placeholder values
|
|
1144
|
+
#
|
|
1145
|
+
# resp = client.delete_entitlement({
|
|
1146
|
+
# client_token: "ClientToken",
|
|
1147
|
+
# environment_id: "EnvironmentId", # required
|
|
1148
|
+
# connector_id: "ConnectorId", # required
|
|
1149
|
+
# entitlement_type: "WINDOWS_SERVER", # required, accepts WINDOWS_SERVER
|
|
1150
|
+
# vm_ids: ["VmId"], # required
|
|
1151
|
+
# })
|
|
1152
|
+
#
|
|
1153
|
+
# @example Response structure
|
|
1154
|
+
#
|
|
1155
|
+
# resp.entitlements #=> Array
|
|
1156
|
+
# resp.entitlements[0].vm_id #=> String
|
|
1157
|
+
# resp.entitlements[0].environment_id #=> String
|
|
1158
|
+
# resp.entitlements[0].connector_id #=> String
|
|
1159
|
+
# resp.entitlements[0].vm_name #=> String
|
|
1160
|
+
# resp.entitlements[0].type #=> String, one of "WINDOWS_SERVER"
|
|
1161
|
+
# resp.entitlements[0].status #=> String, one of "CREATING", "CREATED", "DELETED", "AT_RISK", "ENTITLEMENT_REMOVED", "CREATE_FAILED"
|
|
1162
|
+
# resp.entitlements[0].last_synced_at #=> Time
|
|
1163
|
+
# resp.entitlements[0].started_at #=> Time
|
|
1164
|
+
# resp.entitlements[0].stopped_at #=> Time
|
|
1165
|
+
# resp.entitlements[0].error_detail.error_code #=> String
|
|
1166
|
+
# resp.entitlements[0].error_detail.error_message #=> String
|
|
1167
|
+
#
|
|
1168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/evs-2023-07-27/DeleteEntitlement AWS API Documentation
|
|
1169
|
+
#
|
|
1170
|
+
# @overload delete_entitlement(params = {})
|
|
1171
|
+
# @param [Hash] params ({})
|
|
1172
|
+
def delete_entitlement(params = {}, options = {})
|
|
1173
|
+
req = build_request(:delete_entitlement, params)
|
|
1174
|
+
req.send_request(options)
|
|
1175
|
+
end
|
|
1176
|
+
|
|
958
1177
|
# Deletes an Amazon EVS environment.
|
|
959
1178
|
#
|
|
960
1179
|
# Amazon EVS environments will only be enabled for deletion once the
|
|
@@ -1014,7 +1233,7 @@ module Aws::Evs
|
|
|
1014
1233
|
# resp.environment.site_id #=> String
|
|
1015
1234
|
# resp.environment.environment_status #=> String, one of "PASSED", "FAILED", "UNKNOWN"
|
|
1016
1235
|
# resp.environment.checks #=> Array
|
|
1017
|
-
# resp.environment.checks[0].type #=> String, one of "KEY_REUSE", "KEY_COVERAGE", "REACHABILITY", "HOST_COUNT"
|
|
1236
|
+
# resp.environment.checks[0].type #=> String, one of "KEY_REUSE", "KEY_COVERAGE", "REACHABILITY", "HOST_COUNT", "VCENTER_REACHABILITY", "VCENTER_VM_SYNC", "VCENTER_VM_EVENT"
|
|
1018
1237
|
# resp.environment.checks[0].result #=> String, one of "PASSED", "FAILED", "UNKNOWN"
|
|
1019
1238
|
# resp.environment.checks[0].impaired_since #=> Time
|
|
1020
1239
|
# resp.environment.connectivity_info.private_route_server_peerings #=> Array
|
|
@@ -1043,6 +1262,82 @@ module Aws::Evs
|
|
|
1043
1262
|
req.send_request(options)
|
|
1044
1263
|
end
|
|
1045
1264
|
|
|
1265
|
+
# Deletes a connector from an Amazon EVS environment.
|
|
1266
|
+
#
|
|
1267
|
+
# <note markdown="1"> Before deleting a connector, you must remove all entitlements that are
|
|
1268
|
+
# associated with the same vCenter.
|
|
1269
|
+
#
|
|
1270
|
+
# </note>
|
|
1271
|
+
#
|
|
1272
|
+
# @option params [String] :client_token
|
|
1273
|
+
# <note markdown="1"> This parameter is not used in Amazon EVS
|
|
1274
|
+
# currently. If you supply
|
|
1275
|
+
# input for this parameter, it will have no effect.
|
|
1276
|
+
#
|
|
1277
|
+
# </note>
|
|
1278
|
+
#
|
|
1279
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
1280
|
+
# idempotency of the connector deletion request. If you do not specify a
|
|
1281
|
+
# client token, a randomly generated token is used for the request to
|
|
1282
|
+
# ensure idempotency.
|
|
1283
|
+
#
|
|
1284
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
1285
|
+
# not need to pass this option.**
|
|
1286
|
+
#
|
|
1287
|
+
# @option params [required, String] :environment_id
|
|
1288
|
+
# A unique ID for the environment that the connector belongs to.
|
|
1289
|
+
#
|
|
1290
|
+
# @option params [required, String] :connector_id
|
|
1291
|
+
# A unique ID for the connector to be deleted.
|
|
1292
|
+
#
|
|
1293
|
+
# @return [Types::DeleteEnvironmentConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1294
|
+
#
|
|
1295
|
+
# * {Types::DeleteEnvironmentConnectorResponse#connector #connector} => Types::Connector
|
|
1296
|
+
# * {Types::DeleteEnvironmentConnectorResponse#environment_summary #environment_summary} => Types::EnvironmentSummary
|
|
1297
|
+
#
|
|
1298
|
+
# @example Request syntax with placeholder values
|
|
1299
|
+
#
|
|
1300
|
+
# resp = client.delete_environment_connector({
|
|
1301
|
+
# client_token: "ClientToken",
|
|
1302
|
+
# environment_id: "EnvironmentId", # required
|
|
1303
|
+
# connector_id: "ConnectorId", # required
|
|
1304
|
+
# })
|
|
1305
|
+
#
|
|
1306
|
+
# @example Response structure
|
|
1307
|
+
#
|
|
1308
|
+
# resp.connector.environment_id #=> String
|
|
1309
|
+
# resp.connector.connector_id #=> String
|
|
1310
|
+
# resp.connector.type #=> String, one of "VCENTER"
|
|
1311
|
+
# resp.connector.appliance_fqdn #=> String
|
|
1312
|
+
# resp.connector.secret_arn #=> String
|
|
1313
|
+
# resp.connector.state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE", "UPDATING", "UPDATE_FAILED", "DELETING", "DELETED"
|
|
1314
|
+
# resp.connector.state_details #=> String
|
|
1315
|
+
# resp.connector.status #=> String, one of "PASSED", "FAILED", "UNKNOWN"
|
|
1316
|
+
# resp.connector.checks #=> Array
|
|
1317
|
+
# resp.connector.checks[0].type #=> String, one of "KEY_REUSE", "KEY_COVERAGE", "REACHABILITY", "HOST_COUNT", "VCENTER_REACHABILITY", "VCENTER_VM_SYNC", "VCENTER_VM_EVENT"
|
|
1318
|
+
# resp.connector.checks[0].result #=> String, one of "PASSED", "FAILED", "UNKNOWN"
|
|
1319
|
+
# resp.connector.checks[0].last_check_attempt #=> Time
|
|
1320
|
+
# resp.connector.checks[0].impaired_since #=> Time
|
|
1321
|
+
# resp.connector.created_at #=> Time
|
|
1322
|
+
# resp.connector.modified_at #=> Time
|
|
1323
|
+
# resp.environment_summary.environment_id #=> String
|
|
1324
|
+
# resp.environment_summary.environment_name #=> String
|
|
1325
|
+
# resp.environment_summary.vcf_version #=> String, one of "VCF-5.2.1", "VCF-5.2.2"
|
|
1326
|
+
# resp.environment_summary.environment_status #=> String, one of "PASSED", "FAILED", "UNKNOWN"
|
|
1327
|
+
# resp.environment_summary.environment_state #=> String, one of "CREATING", "CREATED", "DELETING", "DELETED", "CREATE_FAILED"
|
|
1328
|
+
# resp.environment_summary.created_at #=> Time
|
|
1329
|
+
# resp.environment_summary.modified_at #=> Time
|
|
1330
|
+
# resp.environment_summary.environment_arn #=> String
|
|
1331
|
+
#
|
|
1332
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/evs-2023-07-27/DeleteEnvironmentConnector AWS API Documentation
|
|
1333
|
+
#
|
|
1334
|
+
# @overload delete_environment_connector(params = {})
|
|
1335
|
+
# @param [Hash] params ({})
|
|
1336
|
+
def delete_environment_connector(params = {}, options = {})
|
|
1337
|
+
req = build_request(:delete_environment_connector, params)
|
|
1338
|
+
req.send_request(options)
|
|
1339
|
+
end
|
|
1340
|
+
|
|
1046
1341
|
# Deletes a host from an Amazon EVS environment.
|
|
1047
1342
|
#
|
|
1048
1343
|
# <note markdown="1"> Before deleting a host, you must unassign and decommission the host
|
|
@@ -1221,7 +1516,7 @@ module Aws::Evs
|
|
|
1221
1516
|
# resp.environment.site_id #=> String
|
|
1222
1517
|
# resp.environment.environment_status #=> String, one of "PASSED", "FAILED", "UNKNOWN"
|
|
1223
1518
|
# resp.environment.checks #=> Array
|
|
1224
|
-
# resp.environment.checks[0].type #=> String, one of "KEY_REUSE", "KEY_COVERAGE", "REACHABILITY", "HOST_COUNT"
|
|
1519
|
+
# resp.environment.checks[0].type #=> String, one of "KEY_REUSE", "KEY_COVERAGE", "REACHABILITY", "HOST_COUNT", "VCENTER_REACHABILITY", "VCENTER_VM_SYNC", "VCENTER_VM_EVENT"
|
|
1225
1520
|
# resp.environment.checks[0].result #=> String, one of "PASSED", "FAILED", "UNKNOWN"
|
|
1226
1521
|
# resp.environment.checks[0].impaired_since #=> Time
|
|
1227
1522
|
# resp.environment.connectivity_info.private_route_server_peerings #=> Array
|
|
@@ -1281,6 +1576,68 @@ module Aws::Evs
|
|
|
1281
1576
|
req.send_request(options)
|
|
1282
1577
|
end
|
|
1283
1578
|
|
|
1579
|
+
# Lists the connectors within an environment. Returns the status of each
|
|
1580
|
+
# connector and its applicable checks, among other connector details.
|
|
1581
|
+
#
|
|
1582
|
+
# @option params [String] :next_token
|
|
1583
|
+
# A unique pagination token for each page. If `nextToken` is returned,
|
|
1584
|
+
# there are more results available. Make the call again using the
|
|
1585
|
+
# returned token with all other arguments unchanged to retrieve the next
|
|
1586
|
+
# page. Each pagination token expires after 24 hours. Using an expired
|
|
1587
|
+
# pagination token will return an *HTTP 400 InvalidToken* error.
|
|
1588
|
+
#
|
|
1589
|
+
# @option params [Integer] :max_results
|
|
1590
|
+
# The maximum number of results to return. If you specify `MaxResults`
|
|
1591
|
+
# in the request, the response includes information up to the limit
|
|
1592
|
+
# specified.
|
|
1593
|
+
#
|
|
1594
|
+
# @option params [required, String] :environment_id
|
|
1595
|
+
# A unique ID for the environment.
|
|
1596
|
+
#
|
|
1597
|
+
# @return [Types::ListEnvironmentConnectorsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1598
|
+
#
|
|
1599
|
+
# * {Types::ListEnvironmentConnectorsResponse#next_token #next_token} => String
|
|
1600
|
+
# * {Types::ListEnvironmentConnectorsResponse#connectors #connectors} => Array<Types::Connector>
|
|
1601
|
+
#
|
|
1602
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
1603
|
+
#
|
|
1604
|
+
# @example Request syntax with placeholder values
|
|
1605
|
+
#
|
|
1606
|
+
# resp = client.list_environment_connectors({
|
|
1607
|
+
# next_token: "PaginationToken",
|
|
1608
|
+
# max_results: 1,
|
|
1609
|
+
# environment_id: "EnvironmentId", # required
|
|
1610
|
+
# })
|
|
1611
|
+
#
|
|
1612
|
+
# @example Response structure
|
|
1613
|
+
#
|
|
1614
|
+
# resp.next_token #=> String
|
|
1615
|
+
# resp.connectors #=> Array
|
|
1616
|
+
# resp.connectors[0].environment_id #=> String
|
|
1617
|
+
# resp.connectors[0].connector_id #=> String
|
|
1618
|
+
# resp.connectors[0].type #=> String, one of "VCENTER"
|
|
1619
|
+
# resp.connectors[0].appliance_fqdn #=> String
|
|
1620
|
+
# resp.connectors[0].secret_arn #=> String
|
|
1621
|
+
# resp.connectors[0].state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE", "UPDATING", "UPDATE_FAILED", "DELETING", "DELETED"
|
|
1622
|
+
# resp.connectors[0].state_details #=> String
|
|
1623
|
+
# resp.connectors[0].status #=> String, one of "PASSED", "FAILED", "UNKNOWN"
|
|
1624
|
+
# resp.connectors[0].checks #=> Array
|
|
1625
|
+
# resp.connectors[0].checks[0].type #=> String, one of "KEY_REUSE", "KEY_COVERAGE", "REACHABILITY", "HOST_COUNT", "VCENTER_REACHABILITY", "VCENTER_VM_SYNC", "VCENTER_VM_EVENT"
|
|
1626
|
+
# resp.connectors[0].checks[0].result #=> String, one of "PASSED", "FAILED", "UNKNOWN"
|
|
1627
|
+
# resp.connectors[0].checks[0].last_check_attempt #=> Time
|
|
1628
|
+
# resp.connectors[0].checks[0].impaired_since #=> Time
|
|
1629
|
+
# resp.connectors[0].created_at #=> Time
|
|
1630
|
+
# resp.connectors[0].modified_at #=> Time
|
|
1631
|
+
#
|
|
1632
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/evs-2023-07-27/ListEnvironmentConnectors AWS API Documentation
|
|
1633
|
+
#
|
|
1634
|
+
# @overload list_environment_connectors(params = {})
|
|
1635
|
+
# @param [Hash] params ({})
|
|
1636
|
+
def list_environment_connectors(params = {}, options = {})
|
|
1637
|
+
req = build_request(:list_environment_connectors, params)
|
|
1638
|
+
req.send_request(options)
|
|
1639
|
+
end
|
|
1640
|
+
|
|
1284
1641
|
# List the hosts within an environment.
|
|
1285
1642
|
#
|
|
1286
1643
|
# @option params [String] :next_token
|
|
@@ -1488,6 +1845,73 @@ module Aws::Evs
|
|
|
1488
1845
|
req.send_request(options)
|
|
1489
1846
|
end
|
|
1490
1847
|
|
|
1848
|
+
# Lists the Windows Server License entitlements for virtual machines in
|
|
1849
|
+
# an Amazon EVS environment. Returns existing entitlements for virtual
|
|
1850
|
+
# machines associated with the specified environment and connector.
|
|
1851
|
+
#
|
|
1852
|
+
# @option params [String] :next_token
|
|
1853
|
+
# A unique pagination token for each page. If `nextToken` is returned,
|
|
1854
|
+
# there are more results available. Make the call again using the
|
|
1855
|
+
# returned token with all other arguments unchanged to retrieve the next
|
|
1856
|
+
# page. Each pagination token expires after 24 hours. Using an expired
|
|
1857
|
+
# pagination token will return an *HTTP 400 InvalidToken* error.
|
|
1858
|
+
#
|
|
1859
|
+
# @option params [Integer] :max_results
|
|
1860
|
+
# The maximum number of results to return. If you specify `MaxResults`
|
|
1861
|
+
# in the request, the response includes information up to the limit
|
|
1862
|
+
# specified.
|
|
1863
|
+
#
|
|
1864
|
+
# @option params [required, String] :environment_id
|
|
1865
|
+
# A unique ID for the environment.
|
|
1866
|
+
#
|
|
1867
|
+
# @option params [required, String] :connector_id
|
|
1868
|
+
# A unique ID for the connector.
|
|
1869
|
+
#
|
|
1870
|
+
# @option params [required, String] :entitlement_type
|
|
1871
|
+
# The type of entitlement to list.
|
|
1872
|
+
#
|
|
1873
|
+
# @return [Types::ListVmEntitlementsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1874
|
+
#
|
|
1875
|
+
# * {Types::ListVmEntitlementsResponse#next_token #next_token} => String
|
|
1876
|
+
# * {Types::ListVmEntitlementsResponse#entitlements #entitlements} => Array<Types::VmEntitlement>
|
|
1877
|
+
#
|
|
1878
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
1879
|
+
#
|
|
1880
|
+
# @example Request syntax with placeholder values
|
|
1881
|
+
#
|
|
1882
|
+
# resp = client.list_vm_entitlements({
|
|
1883
|
+
# next_token: "PaginationToken",
|
|
1884
|
+
# max_results: 1,
|
|
1885
|
+
# environment_id: "EnvironmentId", # required
|
|
1886
|
+
# connector_id: "ConnectorId", # required
|
|
1887
|
+
# entitlement_type: "WINDOWS_SERVER", # required, accepts WINDOWS_SERVER
|
|
1888
|
+
# })
|
|
1889
|
+
#
|
|
1890
|
+
# @example Response structure
|
|
1891
|
+
#
|
|
1892
|
+
# resp.next_token #=> String
|
|
1893
|
+
# resp.entitlements #=> Array
|
|
1894
|
+
# resp.entitlements[0].vm_id #=> String
|
|
1895
|
+
# resp.entitlements[0].environment_id #=> String
|
|
1896
|
+
# resp.entitlements[0].connector_id #=> String
|
|
1897
|
+
# resp.entitlements[0].vm_name #=> String
|
|
1898
|
+
# resp.entitlements[0].type #=> String, one of "WINDOWS_SERVER"
|
|
1899
|
+
# resp.entitlements[0].status #=> String, one of "CREATING", "CREATED", "DELETED", "AT_RISK", "ENTITLEMENT_REMOVED", "CREATE_FAILED"
|
|
1900
|
+
# resp.entitlements[0].last_synced_at #=> Time
|
|
1901
|
+
# resp.entitlements[0].started_at #=> Time
|
|
1902
|
+
# resp.entitlements[0].stopped_at #=> Time
|
|
1903
|
+
# resp.entitlements[0].error_detail.error_code #=> String
|
|
1904
|
+
# resp.entitlements[0].error_detail.error_message #=> String
|
|
1905
|
+
#
|
|
1906
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/evs-2023-07-27/ListVmEntitlements AWS API Documentation
|
|
1907
|
+
#
|
|
1908
|
+
# @overload list_vm_entitlements(params = {})
|
|
1909
|
+
# @param [Hash] params ({})
|
|
1910
|
+
def list_vm_entitlements(params = {}, options = {})
|
|
1911
|
+
req = build_request(:list_vm_entitlements, params)
|
|
1912
|
+
req.send_request(options)
|
|
1913
|
+
end
|
|
1914
|
+
|
|
1491
1915
|
# Associates the specified tags to an Amazon EVS resource with the
|
|
1492
1916
|
# specified `resourceArn`. If existing tags on a resource are not
|
|
1493
1917
|
# specified in the request parameters, they aren't changed. When a
|
|
@@ -1552,6 +1976,84 @@ module Aws::Evs
|
|
|
1552
1976
|
req.send_request(options)
|
|
1553
1977
|
end
|
|
1554
1978
|
|
|
1979
|
+
# Updates a connector for an Amazon EVS environment. You can update the
|
|
1980
|
+
# Amazon Web Services Secrets Manager secret ARN or the appliance FQDN
|
|
1981
|
+
# to reconfigure the connector metadata.
|
|
1982
|
+
#
|
|
1983
|
+
# <note markdown="1"> You cannot update both the secret and the FQDN in the same request.
|
|
1984
|
+
#
|
|
1985
|
+
# </note>
|
|
1986
|
+
#
|
|
1987
|
+
# @option params [String] :client_token
|
|
1988
|
+
# <note markdown="1"> This parameter is not used in Amazon EVS
|
|
1989
|
+
# currently. If you supply
|
|
1990
|
+
# input for this parameter, it will have no effect.
|
|
1991
|
+
#
|
|
1992
|
+
# </note>
|
|
1993
|
+
#
|
|
1994
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
1995
|
+
# idempotency of the connector update request. If you do not specify a
|
|
1996
|
+
# client token, a randomly generated token is used for the request to
|
|
1997
|
+
# ensure idempotency.
|
|
1998
|
+
#
|
|
1999
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
2000
|
+
# not need to pass this option.**
|
|
2001
|
+
#
|
|
2002
|
+
# @option params [required, String] :environment_id
|
|
2003
|
+
# A unique ID for the environment that the connector belongs to.
|
|
2004
|
+
#
|
|
2005
|
+
# @option params [required, String] :connector_id
|
|
2006
|
+
# A unique ID for the connector to update.
|
|
2007
|
+
#
|
|
2008
|
+
# @option params [String] :appliance_fqdn
|
|
2009
|
+
# The new fully qualified domain name (FQDN) of the VCF appliance that
|
|
2010
|
+
# the connector connects to.
|
|
2011
|
+
#
|
|
2012
|
+
# @option params [String] :secret_identifier
|
|
2013
|
+
# The new ARN or name of the Amazon Web Services Secrets Manager secret
|
|
2014
|
+
# that stores the credentials for the VCF appliance.
|
|
2015
|
+
#
|
|
2016
|
+
# @return [Types::UpdateEnvironmentConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2017
|
+
#
|
|
2018
|
+
# * {Types::UpdateEnvironmentConnectorResponse#connector #connector} => Types::Connector
|
|
2019
|
+
#
|
|
2020
|
+
# @example Request syntax with placeholder values
|
|
2021
|
+
#
|
|
2022
|
+
# resp = client.update_environment_connector({
|
|
2023
|
+
# client_token: "ClientToken",
|
|
2024
|
+
# environment_id: "EnvironmentId", # required
|
|
2025
|
+
# connector_id: "ConnectorId", # required
|
|
2026
|
+
# appliance_fqdn: "ApplianceFqdn",
|
|
2027
|
+
# secret_identifier: "SecretIdentifier",
|
|
2028
|
+
# })
|
|
2029
|
+
#
|
|
2030
|
+
# @example Response structure
|
|
2031
|
+
#
|
|
2032
|
+
# resp.connector.environment_id #=> String
|
|
2033
|
+
# resp.connector.connector_id #=> String
|
|
2034
|
+
# resp.connector.type #=> String, one of "VCENTER"
|
|
2035
|
+
# resp.connector.appliance_fqdn #=> String
|
|
2036
|
+
# resp.connector.secret_arn #=> String
|
|
2037
|
+
# resp.connector.state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE", "UPDATING", "UPDATE_FAILED", "DELETING", "DELETED"
|
|
2038
|
+
# resp.connector.state_details #=> String
|
|
2039
|
+
# resp.connector.status #=> String, one of "PASSED", "FAILED", "UNKNOWN"
|
|
2040
|
+
# resp.connector.checks #=> Array
|
|
2041
|
+
# resp.connector.checks[0].type #=> String, one of "KEY_REUSE", "KEY_COVERAGE", "REACHABILITY", "HOST_COUNT", "VCENTER_REACHABILITY", "VCENTER_VM_SYNC", "VCENTER_VM_EVENT"
|
|
2042
|
+
# resp.connector.checks[0].result #=> String, one of "PASSED", "FAILED", "UNKNOWN"
|
|
2043
|
+
# resp.connector.checks[0].last_check_attempt #=> Time
|
|
2044
|
+
# resp.connector.checks[0].impaired_since #=> Time
|
|
2045
|
+
# resp.connector.created_at #=> Time
|
|
2046
|
+
# resp.connector.modified_at #=> Time
|
|
2047
|
+
#
|
|
2048
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/evs-2023-07-27/UpdateEnvironmentConnector AWS API Documentation
|
|
2049
|
+
#
|
|
2050
|
+
# @overload update_environment_connector(params = {})
|
|
2051
|
+
# @param [Hash] params ({})
|
|
2052
|
+
def update_environment_connector(params = {}, options = {})
|
|
2053
|
+
req = build_request(:update_environment_connector, params)
|
|
2054
|
+
req.send_request(options)
|
|
2055
|
+
end
|
|
2056
|
+
|
|
1555
2057
|
# @!endgroup
|
|
1556
2058
|
|
|
1557
2059
|
# @param params ({})
|
|
@@ -1570,7 +2072,7 @@ module Aws::Evs
|
|
|
1570
2072
|
tracer: tracer
|
|
1571
2073
|
)
|
|
1572
2074
|
context[:gem_name] = 'aws-sdk-evs'
|
|
1573
|
-
context[:gem_version] = '1.
|
|
2075
|
+
context[:gem_version] = '1.15.0'
|
|
1574
2076
|
Seahorse::Client::Request.new(handlers, context)
|
|
1575
2077
|
end
|
|
1576
2078
|
|