pulumi-oci 1.42.0a1719036487__py3-none-any.whl → 1.42.0a1719263894__py3-none-any.whl
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.
- pulumi_oci/_utilities.py +35 -0
- pulumi_oci/budget/budget.py +3 -9
- pulumi_oci/budget/get_budget.py +1 -3
- pulumi_oci/budget/outputs.py +1 -3
- pulumi_oci/containerengine/cluster_complete_credential_rotation_management.py +2 -2
- pulumi_oci/containerengine/get_node_pool.py +2 -6
- pulumi_oci/containerengine/node_pool.py +6 -18
- pulumi_oci/containerengine/outputs.py +2 -6
- pulumi_oci/core/_inputs.py +5 -15
- pulumi_oci/core/boot_volume.py +3 -9
- pulumi_oci/core/get_boot_volume.py +1 -3
- pulumi_oci/core/get_instance.py +3 -9
- pulumi_oci/core/get_virtual_circuit.py +2 -6
- pulumi_oci/core/get_volume.py +2 -6
- pulumi_oci/core/instance.py +9 -27
- pulumi_oci/core/outputs.py +24 -72
- pulumi_oci/core/virtual_circuit.py +5 -15
- pulumi_oci/core/volume.py +6 -18
- pulumi_oci/core/volume_attachment.py +3 -9
- pulumi_oci/core/volume_backup.py +4 -12
- pulumi_oci/core/volume_group.py +3 -9
- pulumi_oci/database/autonomous_database.py +3 -9
- pulumi_oci/database/autonomous_exadata_infrastructure.py +3 -9
- pulumi_oci/database/backup_destination.py +3 -9
- pulumi_oci/database/get_autonomous_database.py +1 -3
- pulumi_oci/database/get_autonomous_database_wallet.py +1 -3
- pulumi_oci/database/get_autonomous_exadata_infrastructure.py +1 -3
- pulumi_oci/database/get_backup_destination.py +1 -3
- pulumi_oci/database/outputs.py +4 -12
- pulumi_oci/datasafe/discovery_jobs_result.py +7 -21
- pulumi_oci/datasafe/get_discovery_jobs_result.py +2 -6
- pulumi_oci/datasafe/outputs.py +3 -9
- pulumi_oci/dns/get_records.py +1 -3
- pulumi_oci/dns/outputs.py +3 -9
- pulumi_oci/dns/record.py +9 -27
- pulumi_oci/identity/outputs.py +3 -9
- pulumi_oci/identity/policy.py +6 -18
- pulumi_oci/loadbalancer/load_balancer.py +2 -6
- pulumi_oci/loadbalancer/outputs.py +1 -3
- pulumi_oci/mysql/_inputs.py +7 -21
- pulumi_oci/mysql/outputs.py +21 -63
- pulumi_oci/objectstorage/get_preauthrequest.py +1 -3
- pulumi_oci/objectstorage/get_replication_policy.py +1 -3
- pulumi_oci/objectstorage/outputs.py +2 -6
- pulumi_oci/objectstorage/preauthrequest.py +3 -9
- pulumi_oci/objectstorage/replication_policy.py +3 -9
- pulumi_oci/ocvp/esxi_host.py +18 -54
- pulumi_oci/ocvp/get_exsi_host.py +6 -18
- pulumi_oci/ocvp/get_sddc.py +31 -93
- pulumi_oci/ocvp/get_supported_host_shapes.py +1 -3
- pulumi_oci/ocvp/outputs.py +39 -117
- pulumi_oci/ocvp/sddc.py +83 -249
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/recoverymod/get_recovery_service_subnet.py +1 -3
- pulumi_oci/recoverymod/outputs.py +1 -3
- pulumi_oci/recoverymod/recovery_service_subnet.py +3 -9
- {pulumi_oci-1.42.0a1719036487.dist-info → pulumi_oci-1.42.0a1719263894.dist-info}/METADATA +1 -1
- {pulumi_oci-1.42.0a1719036487.dist-info → pulumi_oci-1.42.0a1719263894.dist-info}/RECORD +60 -60
- {pulumi_oci-1.42.0a1719036487.dist-info → pulumi_oci-1.42.0a1719263894.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.42.0a1719036487.dist-info → pulumi_oci-1.42.0a1719263894.dist-info}/top_level.txt +0 -0
pulumi_oci/ocvp/esxi_host.py
CHANGED
@@ -105,13 +105,11 @@ class EsxiHostArgs:
|
|
105
105
|
|
106
106
|
@property
|
107
107
|
@pulumi.getter(name="billingDonorHostId")
|
108
|
+
@_utilities.deprecated("""This 'billing_donor_host_id' argument has been deprecated and will be computed only.""")
|
108
109
|
def billing_donor_host_id(self) -> Optional[pulumi.Input[str]]:
|
109
110
|
"""
|
110
111
|
(Optional) (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deleted ESXi Host with LeftOver billing cycle.
|
111
112
|
"""
|
112
|
-
warnings.warn("""This 'billing_donor_host_id' argument has been deprecated and will be computed only.""", DeprecationWarning)
|
113
|
-
pulumi.log.warn("""billing_donor_host_id is deprecated: This 'billing_donor_host_id' argument has been deprecated and will be computed only.""")
|
114
|
-
|
115
113
|
return pulumi.get(self, "billing_donor_host_id")
|
116
114
|
|
117
115
|
@billing_donor_host_id.setter
|
@@ -156,13 +154,11 @@ class EsxiHostArgs:
|
|
156
154
|
|
157
155
|
@property
|
158
156
|
@pulumi.getter(name="currentSku")
|
157
|
+
@_utilities.deprecated("""The 'current_sku' field has been deprecated. It is no longer supported.""")
|
159
158
|
def current_sku(self) -> Optional[pulumi.Input[str]]:
|
160
159
|
"""
|
161
160
|
(Optional) The billing option currently used by the ESXi host. It is only effective during resource creation. Changes to its value after creation will be ignored. [ListSupportedSkus](https://docs.cloud.oracle.com/iaas/api/#/en/vmware/20200501/SupportedSkuSummary/ListSupportedSkus). **Deprecated**. Please use `current_commitment` instead.
|
162
161
|
"""
|
163
|
-
warnings.warn("""The 'current_sku' field has been deprecated. It is no longer supported.""", DeprecationWarning)
|
164
|
-
pulumi.log.warn("""current_sku is deprecated: The 'current_sku' field has been deprecated. It is no longer supported.""")
|
165
|
-
|
166
162
|
return pulumi.get(self, "current_sku")
|
167
163
|
|
168
164
|
@current_sku.setter
|
@@ -211,13 +207,11 @@ class EsxiHostArgs:
|
|
211
207
|
|
212
208
|
@property
|
213
209
|
@pulumi.getter(name="failedEsxiHostId")
|
210
|
+
@_utilities.deprecated("""This 'failed_esxi_host_id' argument has been deprecated and will be computed only.""")
|
214
211
|
def failed_esxi_host_id(self) -> Optional[pulumi.Input[str]]:
|
215
212
|
"""
|
216
213
|
(Optional) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the ESXi host that is failed. This is an optional parameter. If this parameter is specified, a new ESXi host will be created to replace the failed one, and the `failedEsxiHostId` field will be updated in the newly created Esxi host.
|
217
214
|
"""
|
218
|
-
warnings.warn("""This 'failed_esxi_host_id' argument has been deprecated and will be computed only.""", DeprecationWarning)
|
219
|
-
pulumi.log.warn("""failed_esxi_host_id is deprecated: This 'failed_esxi_host_id' argument has been deprecated and will be computed only.""")
|
220
|
-
|
221
215
|
return pulumi.get(self, "failed_esxi_host_id")
|
222
216
|
|
223
217
|
@failed_esxi_host_id.setter
|
@@ -262,10 +256,8 @@ class EsxiHostArgs:
|
|
262
256
|
|
263
257
|
@property
|
264
258
|
@pulumi.getter(name="nextSku")
|
259
|
+
@_utilities.deprecated("""The 'next_sku' field has been deprecated. It is no longer supported.""")
|
265
260
|
def next_sku(self) -> Optional[pulumi.Input[str]]:
|
266
|
-
warnings.warn("""The 'next_sku' field has been deprecated. It is no longer supported.""", DeprecationWarning)
|
267
|
-
pulumi.log.warn("""next_sku is deprecated: The 'next_sku' field has been deprecated. It is no longer supported.""")
|
268
|
-
|
269
261
|
return pulumi.get(self, "next_sku")
|
270
262
|
|
271
263
|
@next_sku.setter
|
@@ -274,13 +266,11 @@ class EsxiHostArgs:
|
|
274
266
|
|
275
267
|
@property
|
276
268
|
@pulumi.getter(name="nonUpgradedEsxiHostId")
|
269
|
+
@_utilities.deprecated("""This 'non_upgraded_esxi_host_id' argument has been deprecated and will be computed only.""")
|
277
270
|
def non_upgraded_esxi_host_id(self) -> Optional[pulumi.Input[str]]:
|
278
271
|
"""
|
279
272
|
(Optional) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the ESXi host that will be upgraded. This is an optional parameter. If this parameter is specified, an ESXi host with the new software version is created to replace the original one, and the `nonUpgradedEsxiHostId` field is updated in the newly created Esxi host. See [Upgrading VMware Software](https://docs.cloud.oracle.com/iaas/Content/VMware/Concepts/upgrade.htm) for more information.
|
280
273
|
"""
|
281
|
-
warnings.warn("""This 'non_upgraded_esxi_host_id' argument has been deprecated and will be computed only.""", DeprecationWarning)
|
282
|
-
pulumi.log.warn("""non_upgraded_esxi_host_id is deprecated: This 'non_upgraded_esxi_host_id' argument has been deprecated and will be computed only.""")
|
283
|
-
|
284
274
|
return pulumi.get(self, "non_upgraded_esxi_host_id")
|
285
275
|
|
286
276
|
@non_upgraded_esxi_host_id.setter
|
@@ -289,6 +279,7 @@ class EsxiHostArgs:
|
|
289
279
|
|
290
280
|
@property
|
291
281
|
@pulumi.getter(name="sddcId")
|
282
|
+
@_utilities.deprecated("""The 'sddc_id' field has been deprecated. Please use 'cluster_id' instead.""")
|
292
283
|
def sddc_id(self) -> Optional[pulumi.Input[str]]:
|
293
284
|
"""
|
294
285
|
(Optional) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC to add the ESXi host to. This field has been deprecated. Please use `cluster_id` instead. Either `sddc_id` or `cluster_id` must be configured for `Ocvp.EsxiHost` resource. **Deprecated**. Please use `cluster_id` instead.
|
@@ -297,9 +288,6 @@ class EsxiHostArgs:
|
|
297
288
|
** IMPORTANT **
|
298
289
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
299
290
|
"""
|
300
|
-
warnings.warn("""The 'sddc_id' field has been deprecated. Please use 'cluster_id' instead.""", DeprecationWarning)
|
301
|
-
pulumi.log.warn("""sddc_id is deprecated: The 'sddc_id' field has been deprecated. Please use 'cluster_id' instead.""")
|
302
|
-
|
303
291
|
return pulumi.get(self, "sddc_id")
|
304
292
|
|
305
293
|
@sddc_id.setter
|
@@ -473,13 +461,11 @@ class _EsxiHostState:
|
|
473
461
|
|
474
462
|
@property
|
475
463
|
@pulumi.getter(name="billingDonorHostId")
|
464
|
+
@_utilities.deprecated("""This 'billing_donor_host_id' argument has been deprecated and will be computed only.""")
|
476
465
|
def billing_donor_host_id(self) -> Optional[pulumi.Input[str]]:
|
477
466
|
"""
|
478
467
|
(Optional) (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deleted ESXi Host with LeftOver billing cycle.
|
479
468
|
"""
|
480
|
-
warnings.warn("""This 'billing_donor_host_id' argument has been deprecated and will be computed only.""", DeprecationWarning)
|
481
|
-
pulumi.log.warn("""billing_donor_host_id is deprecated: This 'billing_donor_host_id' argument has been deprecated and will be computed only.""")
|
482
|
-
|
483
469
|
return pulumi.get(self, "billing_donor_host_id")
|
484
470
|
|
485
471
|
@billing_donor_host_id.setter
|
@@ -560,13 +546,11 @@ class _EsxiHostState:
|
|
560
546
|
|
561
547
|
@property
|
562
548
|
@pulumi.getter(name="currentSku")
|
549
|
+
@_utilities.deprecated("""The 'current_sku' field has been deprecated. It is no longer supported.""")
|
563
550
|
def current_sku(self) -> Optional[pulumi.Input[str]]:
|
564
551
|
"""
|
565
552
|
(Optional) The billing option currently used by the ESXi host. It is only effective during resource creation. Changes to its value after creation will be ignored. [ListSupportedSkus](https://docs.cloud.oracle.com/iaas/api/#/en/vmware/20200501/SupportedSkuSummary/ListSupportedSkus). **Deprecated**. Please use `current_commitment` instead.
|
566
553
|
"""
|
567
|
-
warnings.warn("""The 'current_sku' field has been deprecated. It is no longer supported.""", DeprecationWarning)
|
568
|
-
pulumi.log.warn("""current_sku is deprecated: The 'current_sku' field has been deprecated. It is no longer supported.""")
|
569
|
-
|
570
554
|
return pulumi.get(self, "current_sku")
|
571
555
|
|
572
556
|
@current_sku.setter
|
@@ -615,13 +599,11 @@ class _EsxiHostState:
|
|
615
599
|
|
616
600
|
@property
|
617
601
|
@pulumi.getter(name="failedEsxiHostId")
|
602
|
+
@_utilities.deprecated("""This 'failed_esxi_host_id' argument has been deprecated and will be computed only.""")
|
618
603
|
def failed_esxi_host_id(self) -> Optional[pulumi.Input[str]]:
|
619
604
|
"""
|
620
605
|
(Optional) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the ESXi host that is failed. This is an optional parameter. If this parameter is specified, a new ESXi host will be created to replace the failed one, and the `failedEsxiHostId` field will be updated in the newly created Esxi host.
|
621
606
|
"""
|
622
|
-
warnings.warn("""This 'failed_esxi_host_id' argument has been deprecated and will be computed only.""", DeprecationWarning)
|
623
|
-
pulumi.log.warn("""failed_esxi_host_id is deprecated: This 'failed_esxi_host_id' argument has been deprecated and will be computed only.""")
|
624
|
-
|
625
607
|
return pulumi.get(self, "failed_esxi_host_id")
|
626
608
|
|
627
609
|
@failed_esxi_host_id.setter
|
@@ -714,10 +696,8 @@ class _EsxiHostState:
|
|
714
696
|
|
715
697
|
@property
|
716
698
|
@pulumi.getter(name="nextSku")
|
699
|
+
@_utilities.deprecated("""The 'next_sku' field has been deprecated. It is no longer supported.""")
|
717
700
|
def next_sku(self) -> Optional[pulumi.Input[str]]:
|
718
|
-
warnings.warn("""The 'next_sku' field has been deprecated. It is no longer supported.""", DeprecationWarning)
|
719
|
-
pulumi.log.warn("""next_sku is deprecated: The 'next_sku' field has been deprecated. It is no longer supported.""")
|
720
|
-
|
721
701
|
return pulumi.get(self, "next_sku")
|
722
702
|
|
723
703
|
@next_sku.setter
|
@@ -726,13 +706,11 @@ class _EsxiHostState:
|
|
726
706
|
|
727
707
|
@property
|
728
708
|
@pulumi.getter(name="nonUpgradedEsxiHostId")
|
709
|
+
@_utilities.deprecated("""This 'non_upgraded_esxi_host_id' argument has been deprecated and will be computed only.""")
|
729
710
|
def non_upgraded_esxi_host_id(self) -> Optional[pulumi.Input[str]]:
|
730
711
|
"""
|
731
712
|
(Optional) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the ESXi host that will be upgraded. This is an optional parameter. If this parameter is specified, an ESXi host with the new software version is created to replace the original one, and the `nonUpgradedEsxiHostId` field is updated in the newly created Esxi host. See [Upgrading VMware Software](https://docs.cloud.oracle.com/iaas/Content/VMware/Concepts/upgrade.htm) for more information.
|
732
713
|
"""
|
733
|
-
warnings.warn("""This 'non_upgraded_esxi_host_id' argument has been deprecated and will be computed only.""", DeprecationWarning)
|
734
|
-
pulumi.log.warn("""non_upgraded_esxi_host_id is deprecated: This 'non_upgraded_esxi_host_id' argument has been deprecated and will be computed only.""")
|
735
|
-
|
736
714
|
return pulumi.get(self, "non_upgraded_esxi_host_id")
|
737
715
|
|
738
716
|
@non_upgraded_esxi_host_id.setter
|
@@ -753,6 +731,7 @@ class _EsxiHostState:
|
|
753
731
|
|
754
732
|
@property
|
755
733
|
@pulumi.getter(name="sddcId")
|
734
|
+
@_utilities.deprecated("""The 'sddc_id' field has been deprecated. Please use 'cluster_id' instead.""")
|
756
735
|
def sddc_id(self) -> Optional[pulumi.Input[str]]:
|
757
736
|
"""
|
758
737
|
(Optional) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC to add the ESXi host to. This field has been deprecated. Please use `cluster_id` instead. Either `sddc_id` or `cluster_id` must be configured for `Ocvp.EsxiHost` resource. **Deprecated**. Please use `cluster_id` instead.
|
@@ -761,9 +740,6 @@ class _EsxiHostState:
|
|
761
740
|
** IMPORTANT **
|
762
741
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
763
742
|
"""
|
764
|
-
warnings.warn("""The 'sddc_id' field has been deprecated. Please use 'cluster_id' instead.""", DeprecationWarning)
|
765
|
-
pulumi.log.warn("""sddc_id is deprecated: The 'sddc_id' field has been deprecated. Please use 'cluster_id' instead.""")
|
766
|
-
|
767
743
|
return pulumi.get(self, "sddc_id")
|
768
744
|
|
769
745
|
@sddc_id.setter
|
@@ -1113,13 +1089,11 @@ class EsxiHost(pulumi.CustomResource):
|
|
1113
1089
|
|
1114
1090
|
@property
|
1115
1091
|
@pulumi.getter(name="billingDonorHostId")
|
1092
|
+
@_utilities.deprecated("""This 'billing_donor_host_id' argument has been deprecated and will be computed only.""")
|
1116
1093
|
def billing_donor_host_id(self) -> pulumi.Output[str]:
|
1117
1094
|
"""
|
1118
1095
|
(Optional) (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deleted ESXi Host with LeftOver billing cycle.
|
1119
1096
|
"""
|
1120
|
-
warnings.warn("""This 'billing_donor_host_id' argument has been deprecated and will be computed only.""", DeprecationWarning)
|
1121
|
-
pulumi.log.warn("""billing_donor_host_id is deprecated: This 'billing_donor_host_id' argument has been deprecated and will be computed only.""")
|
1122
|
-
|
1123
1097
|
return pulumi.get(self, "billing_donor_host_id")
|
1124
1098
|
|
1125
1099
|
@property
|
@@ -1172,13 +1146,11 @@ class EsxiHost(pulumi.CustomResource):
|
|
1172
1146
|
|
1173
1147
|
@property
|
1174
1148
|
@pulumi.getter(name="currentSku")
|
1149
|
+
@_utilities.deprecated("""The 'current_sku' field has been deprecated. It is no longer supported.""")
|
1175
1150
|
def current_sku(self) -> pulumi.Output[str]:
|
1176
1151
|
"""
|
1177
1152
|
(Optional) The billing option currently used by the ESXi host. It is only effective during resource creation. Changes to its value after creation will be ignored. [ListSupportedSkus](https://docs.cloud.oracle.com/iaas/api/#/en/vmware/20200501/SupportedSkuSummary/ListSupportedSkus). **Deprecated**. Please use `current_commitment` instead.
|
1178
1153
|
"""
|
1179
|
-
warnings.warn("""The 'current_sku' field has been deprecated. It is no longer supported.""", DeprecationWarning)
|
1180
|
-
pulumi.log.warn("""current_sku is deprecated: The 'current_sku' field has been deprecated. It is no longer supported.""")
|
1181
|
-
|
1182
1154
|
return pulumi.get(self, "current_sku")
|
1183
1155
|
|
1184
1156
|
@property
|
@@ -1211,13 +1183,11 @@ class EsxiHost(pulumi.CustomResource):
|
|
1211
1183
|
|
1212
1184
|
@property
|
1213
1185
|
@pulumi.getter(name="failedEsxiHostId")
|
1186
|
+
@_utilities.deprecated("""This 'failed_esxi_host_id' argument has been deprecated and will be computed only.""")
|
1214
1187
|
def failed_esxi_host_id(self) -> pulumi.Output[str]:
|
1215
1188
|
"""
|
1216
1189
|
(Optional) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the ESXi host that is failed. This is an optional parameter. If this parameter is specified, a new ESXi host will be created to replace the failed one, and the `failedEsxiHostId` field will be updated in the newly created Esxi host.
|
1217
1190
|
"""
|
1218
|
-
warnings.warn("""This 'failed_esxi_host_id' argument has been deprecated and will be computed only.""", DeprecationWarning)
|
1219
|
-
pulumi.log.warn("""failed_esxi_host_id is deprecated: This 'failed_esxi_host_id' argument has been deprecated and will be computed only.""")
|
1220
|
-
|
1221
1191
|
return pulumi.get(self, "failed_esxi_host_id")
|
1222
1192
|
|
1223
1193
|
@property
|
@@ -1278,21 +1248,17 @@ class EsxiHost(pulumi.CustomResource):
|
|
1278
1248
|
|
1279
1249
|
@property
|
1280
1250
|
@pulumi.getter(name="nextSku")
|
1251
|
+
@_utilities.deprecated("""The 'next_sku' field has been deprecated. It is no longer supported.""")
|
1281
1252
|
def next_sku(self) -> pulumi.Output[str]:
|
1282
|
-
warnings.warn("""The 'next_sku' field has been deprecated. It is no longer supported.""", DeprecationWarning)
|
1283
|
-
pulumi.log.warn("""next_sku is deprecated: The 'next_sku' field has been deprecated. It is no longer supported.""")
|
1284
|
-
|
1285
1253
|
return pulumi.get(self, "next_sku")
|
1286
1254
|
|
1287
1255
|
@property
|
1288
1256
|
@pulumi.getter(name="nonUpgradedEsxiHostId")
|
1257
|
+
@_utilities.deprecated("""This 'non_upgraded_esxi_host_id' argument has been deprecated and will be computed only.""")
|
1289
1258
|
def non_upgraded_esxi_host_id(self) -> pulumi.Output[str]:
|
1290
1259
|
"""
|
1291
1260
|
(Optional) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the ESXi host that will be upgraded. This is an optional parameter. If this parameter is specified, an ESXi host with the new software version is created to replace the original one, and the `nonUpgradedEsxiHostId` field is updated in the newly created Esxi host. See [Upgrading VMware Software](https://docs.cloud.oracle.com/iaas/Content/VMware/Concepts/upgrade.htm) for more information.
|
1292
1261
|
"""
|
1293
|
-
warnings.warn("""This 'non_upgraded_esxi_host_id' argument has been deprecated and will be computed only.""", DeprecationWarning)
|
1294
|
-
pulumi.log.warn("""non_upgraded_esxi_host_id is deprecated: This 'non_upgraded_esxi_host_id' argument has been deprecated and will be computed only.""")
|
1295
|
-
|
1296
1262
|
return pulumi.get(self, "non_upgraded_esxi_host_id")
|
1297
1263
|
|
1298
1264
|
@property
|
@@ -1305,6 +1271,7 @@ class EsxiHost(pulumi.CustomResource):
|
|
1305
1271
|
|
1306
1272
|
@property
|
1307
1273
|
@pulumi.getter(name="sddcId")
|
1274
|
+
@_utilities.deprecated("""The 'sddc_id' field has been deprecated. Please use 'cluster_id' instead.""")
|
1308
1275
|
def sddc_id(self) -> pulumi.Output[Optional[str]]:
|
1309
1276
|
"""
|
1310
1277
|
(Optional) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC to add the ESXi host to. This field has been deprecated. Please use `cluster_id` instead. Either `sddc_id` or `cluster_id` must be configured for `Ocvp.EsxiHost` resource. **Deprecated**. Please use `cluster_id` instead.
|
@@ -1313,9 +1280,6 @@ class EsxiHost(pulumi.CustomResource):
|
|
1313
1280
|
** IMPORTANT **
|
1314
1281
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1315
1282
|
"""
|
1316
|
-
warnings.warn("""The 'sddc_id' field has been deprecated. Please use 'cluster_id' instead.""", DeprecationWarning)
|
1317
|
-
pulumi.log.warn("""sddc_id is deprecated: The 'sddc_id' field has been deprecated. Please use 'cluster_id' instead.""")
|
1318
|
-
|
1319
1283
|
return pulumi.get(self, "sddc_id")
|
1320
1284
|
|
1321
1285
|
@property
|
pulumi_oci/ocvp/get_exsi_host.py
CHANGED
@@ -129,13 +129,11 @@ class GetExsiHostResult:
|
|
129
129
|
|
130
130
|
@property
|
131
131
|
@pulumi.getter(name="billingDonorHostId")
|
132
|
+
@_utilities.deprecated("""This 'billing_donor_host_id' argument has been deprecated and will be computed only.""")
|
132
133
|
def billing_donor_host_id(self) -> str:
|
133
134
|
"""
|
134
135
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deleted ESXi Host with LeftOver billing cycle.
|
135
136
|
"""
|
136
|
-
warnings.warn("""This 'billing_donor_host_id' argument has been deprecated and will be computed only.""", DeprecationWarning)
|
137
|
-
pulumi.log.warn("""billing_donor_host_id is deprecated: This 'billing_donor_host_id' argument has been deprecated and will be computed only.""")
|
138
|
-
|
139
137
|
return pulumi.get(self, "billing_donor_host_id")
|
140
138
|
|
141
139
|
@property
|
@@ -188,13 +186,11 @@ class GetExsiHostResult:
|
|
188
186
|
|
189
187
|
@property
|
190
188
|
@pulumi.getter(name="currentSku")
|
189
|
+
@_utilities.deprecated("""The 'current_sku' field has been deprecated. It is no longer supported.""")
|
191
190
|
def current_sku(self) -> str:
|
192
191
|
"""
|
193
192
|
(**Deprecated**) The billing option currently used by the ESXi host. [ListSupportedSkus](https://docs.cloud.oracle.com/iaas/api/#/en/vmware/20200501/SupportedSkuSummary/ListSupportedSkus). **Deprecated**. Please use `current_commitment` instead.
|
194
193
|
"""
|
195
|
-
warnings.warn("""The 'current_sku' field has been deprecated. It is no longer supported.""", DeprecationWarning)
|
196
|
-
pulumi.log.warn("""current_sku is deprecated: The 'current_sku' field has been deprecated. It is no longer supported.""")
|
197
|
-
|
198
194
|
return pulumi.get(self, "current_sku")
|
199
195
|
|
200
196
|
@property
|
@@ -228,13 +224,11 @@ class GetExsiHostResult:
|
|
228
224
|
|
229
225
|
@property
|
230
226
|
@pulumi.getter(name="failedEsxiHostId")
|
227
|
+
@_utilities.deprecated("""This 'failed_esxi_host_id' argument has been deprecated and will be computed only.""")
|
231
228
|
def failed_esxi_host_id(self) -> str:
|
232
229
|
"""
|
233
230
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the ESXi host that failed.
|
234
231
|
"""
|
235
|
-
warnings.warn("""This 'failed_esxi_host_id' argument has been deprecated and will be computed only.""", DeprecationWarning)
|
236
|
-
pulumi.log.warn("""failed_esxi_host_id is deprecated: This 'failed_esxi_host_id' argument has been deprecated and will be computed only.""")
|
237
|
-
|
238
232
|
return pulumi.get(self, "failed_esxi_host_id")
|
239
233
|
|
240
234
|
@property
|
@@ -303,24 +297,20 @@ class GetExsiHostResult:
|
|
303
297
|
|
304
298
|
@property
|
305
299
|
@pulumi.getter(name="nextSku")
|
300
|
+
@_utilities.deprecated("""The 'next_sku' field has been deprecated. It is no longer supported.""")
|
306
301
|
def next_sku(self) -> str:
|
307
302
|
"""
|
308
303
|
(**Deprecated**) The billing option to switch to after the current billing cycle ends. If `nextSku` is null or empty, `currentSku` continues to the next billing cycle. [ListSupportedSkus](https://docs.cloud.oracle.com/iaas/api/#/en/vmware/20200501/SupportedSkuSummary/ListSupportedSkus). **Deprecated**. Please use `next_commitment` instead.
|
309
304
|
"""
|
310
|
-
warnings.warn("""The 'next_sku' field has been deprecated. It is no longer supported.""", DeprecationWarning)
|
311
|
-
pulumi.log.warn("""next_sku is deprecated: The 'next_sku' field has been deprecated. It is no longer supported.""")
|
312
|
-
|
313
305
|
return pulumi.get(self, "next_sku")
|
314
306
|
|
315
307
|
@property
|
316
308
|
@pulumi.getter(name="nonUpgradedEsxiHostId")
|
309
|
+
@_utilities.deprecated("""This 'non_upgraded_esxi_host_id' argument has been deprecated and will be computed only.""")
|
317
310
|
def non_upgraded_esxi_host_id(self) -> str:
|
318
311
|
"""
|
319
312
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the ESXi host that will be upgraded.
|
320
313
|
"""
|
321
|
-
warnings.warn("""This 'non_upgraded_esxi_host_id' argument has been deprecated and will be computed only.""", DeprecationWarning)
|
322
|
-
pulumi.log.warn("""non_upgraded_esxi_host_id is deprecated: This 'non_upgraded_esxi_host_id' argument has been deprecated and will be computed only.""")
|
323
|
-
|
324
314
|
return pulumi.get(self, "non_upgraded_esxi_host_id")
|
325
315
|
|
326
316
|
@property
|
@@ -333,13 +323,11 @@ class GetExsiHostResult:
|
|
333
323
|
|
334
324
|
@property
|
335
325
|
@pulumi.getter(name="sddcId")
|
326
|
+
@_utilities.deprecated("""The 'sddc_id' field has been deprecated. Please use 'cluster_id' instead.""")
|
336
327
|
def sddc_id(self) -> str:
|
337
328
|
"""
|
338
329
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC that the ESXi host belongs to.
|
339
330
|
"""
|
340
|
-
warnings.warn("""The 'sddc_id' field has been deprecated. Please use 'cluster_id' instead.""", DeprecationWarning)
|
341
|
-
pulumi.log.warn("""sddc_id is deprecated: The 'sddc_id' field has been deprecated. Please use 'cluster_id' instead.""")
|
342
|
-
|
343
331
|
return pulumi.get(self, "sddc_id")
|
344
332
|
|
345
333
|
@property
|