pulumi-oci 1.42.0a1719036487__py3-none-any.whl → 1.42.0a1719301332__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.
Files changed (60) hide show
  1. pulumi_oci/_utilities.py +35 -0
  2. pulumi_oci/budget/budget.py +3 -9
  3. pulumi_oci/budget/get_budget.py +1 -3
  4. pulumi_oci/budget/outputs.py +1 -3
  5. pulumi_oci/containerengine/cluster_complete_credential_rotation_management.py +2 -2
  6. pulumi_oci/containerengine/get_node_pool.py +2 -6
  7. pulumi_oci/containerengine/node_pool.py +6 -18
  8. pulumi_oci/containerengine/outputs.py +2 -6
  9. pulumi_oci/core/_inputs.py +5 -15
  10. pulumi_oci/core/boot_volume.py +3 -9
  11. pulumi_oci/core/get_boot_volume.py +1 -3
  12. pulumi_oci/core/get_instance.py +3 -9
  13. pulumi_oci/core/get_virtual_circuit.py +2 -6
  14. pulumi_oci/core/get_volume.py +2 -6
  15. pulumi_oci/core/instance.py +9 -27
  16. pulumi_oci/core/outputs.py +24 -72
  17. pulumi_oci/core/virtual_circuit.py +5 -15
  18. pulumi_oci/core/volume.py +6 -18
  19. pulumi_oci/core/volume_attachment.py +3 -9
  20. pulumi_oci/core/volume_backup.py +4 -12
  21. pulumi_oci/core/volume_group.py +3 -9
  22. pulumi_oci/database/autonomous_database.py +3 -9
  23. pulumi_oci/database/autonomous_exadata_infrastructure.py +3 -9
  24. pulumi_oci/database/backup_destination.py +3 -9
  25. pulumi_oci/database/get_autonomous_database.py +1 -3
  26. pulumi_oci/database/get_autonomous_database_wallet.py +1 -3
  27. pulumi_oci/database/get_autonomous_exadata_infrastructure.py +1 -3
  28. pulumi_oci/database/get_backup_destination.py +1 -3
  29. pulumi_oci/database/outputs.py +4 -12
  30. pulumi_oci/datasafe/discovery_jobs_result.py +7 -21
  31. pulumi_oci/datasafe/get_discovery_jobs_result.py +2 -6
  32. pulumi_oci/datasafe/outputs.py +3 -9
  33. pulumi_oci/dns/get_records.py +1 -3
  34. pulumi_oci/dns/outputs.py +3 -9
  35. pulumi_oci/dns/record.py +9 -27
  36. pulumi_oci/identity/outputs.py +3 -9
  37. pulumi_oci/identity/policy.py +6 -18
  38. pulumi_oci/loadbalancer/load_balancer.py +2 -6
  39. pulumi_oci/loadbalancer/outputs.py +1 -3
  40. pulumi_oci/mysql/_inputs.py +7 -21
  41. pulumi_oci/mysql/outputs.py +21 -63
  42. pulumi_oci/objectstorage/get_preauthrequest.py +1 -3
  43. pulumi_oci/objectstorage/get_replication_policy.py +1 -3
  44. pulumi_oci/objectstorage/outputs.py +2 -6
  45. pulumi_oci/objectstorage/preauthrequest.py +3 -9
  46. pulumi_oci/objectstorage/replication_policy.py +3 -9
  47. pulumi_oci/ocvp/esxi_host.py +18 -54
  48. pulumi_oci/ocvp/get_exsi_host.py +6 -18
  49. pulumi_oci/ocvp/get_sddc.py +31 -93
  50. pulumi_oci/ocvp/get_supported_host_shapes.py +1 -3
  51. pulumi_oci/ocvp/outputs.py +39 -117
  52. pulumi_oci/ocvp/sddc.py +83 -249
  53. pulumi_oci/pulumi-plugin.json +1 -1
  54. pulumi_oci/recoverymod/get_recovery_service_subnet.py +1 -3
  55. pulumi_oci/recoverymod/outputs.py +1 -3
  56. pulumi_oci/recoverymod/recovery_service_subnet.py +3 -9
  57. {pulumi_oci-1.42.0a1719036487.dist-info → pulumi_oci-1.42.0a1719301332.dist-info}/METADATA +1 -1
  58. {pulumi_oci-1.42.0a1719036487.dist-info → pulumi_oci-1.42.0a1719301332.dist-info}/RECORD +60 -60
  59. {pulumi_oci-1.42.0a1719036487.dist-info → pulumi_oci-1.42.0a1719301332.dist-info}/WHEEL +0 -0
  60. {pulumi_oci-1.42.0a1719036487.dist-info → pulumi_oci-1.42.0a1719301332.dist-info}/top_level.txt +0 -0
@@ -218,24 +218,20 @@ class GetSddcResult:
218
218
 
219
219
  @property
220
220
  @pulumi.getter(name="actualEsxiHostsCount")
221
+ @_utilities.deprecated("""The 'actual_esxi_hosts_count' field has been deprecated. Please use 'initial_configuration' instead.""")
221
222
  def actual_esxi_hosts_count(self) -> int:
222
223
  """
223
224
  (**Deprecated**) The number of actual ESXi hosts in the SDDC on the cloud. This attribute will be different when esxi Host is added to an existing SDDC. **Deprecated**. Please use `actual_esxi_hosts_count` of `initial_cluster_configurations` instead.
224
225
  """
225
- warnings.warn("""The 'actual_esxi_hosts_count' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
226
- pulumi.log.warn("""actual_esxi_hosts_count is deprecated: The 'actual_esxi_hosts_count' field has been deprecated. Please use 'initial_configuration' instead.""")
227
-
228
226
  return pulumi.get(self, "actual_esxi_hosts_count")
229
227
 
230
228
  @property
231
229
  @pulumi.getter(name="capacityReservationId")
230
+ @_utilities.deprecated("""The 'capacity_reservation_id' field has been deprecated. Please use 'initial_configuration' instead.""")
232
231
  def capacity_reservation_id(self) -> str:
233
232
  """
234
233
  The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Capacity Reservation.
235
234
  """
236
- warnings.warn("""The 'capacity_reservation_id' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
237
- pulumi.log.warn("""capacity_reservation_id is deprecated: The 'capacity_reservation_id' field has been deprecated. Please use 'initial_configuration' instead.""")
238
-
239
235
  return pulumi.get(self, "capacity_reservation_id")
240
236
 
241
237
  @property
@@ -256,24 +252,20 @@ class GetSddcResult:
256
252
 
257
253
  @property
258
254
  @pulumi.getter(name="computeAvailabilityDomain")
255
+ @_utilities.deprecated("""The 'compute_availability_domain' field has been deprecated. Please use 'initial_configuration' instead.""")
259
256
  def compute_availability_domain(self) -> str:
260
257
  """
261
258
  The availability domain to create the Cluster's ESXi hosts in. For multi-AD Cluster deployment, set to `multi-AD`.
262
259
  """
263
- warnings.warn("""The 'compute_availability_domain' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
264
- pulumi.log.warn("""compute_availability_domain is deprecated: The 'compute_availability_domain' field has been deprecated. Please use 'initial_configuration' instead.""")
265
-
266
260
  return pulumi.get(self, "compute_availability_domain")
267
261
 
268
262
  @property
269
263
  @pulumi.getter
264
+ @_utilities.deprecated("""The 'datastores' field has been deprecated. Please use 'initial_configuration' instead.""")
270
265
  def datastores(self) -> Sequence['outputs.GetSddcDatastoreResult']:
271
266
  """
272
267
  A list of datastore info for the Cluster. This value is required only when `initialHostShapeName` is a standard shape.
273
268
  """
274
- warnings.warn("""The 'datastores' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
275
- pulumi.log.warn("""datastores is deprecated: The 'datastores' field has been deprecated. Please use 'initial_configuration' instead.""")
276
-
277
269
  return pulumi.get(self, "datastores")
278
270
 
279
271
  @property
@@ -294,13 +286,11 @@ class GetSddcResult:
294
286
 
295
287
  @property
296
288
  @pulumi.getter(name="esxiHostsCount")
289
+ @_utilities.deprecated("""The 'esxi_hosts_count' field has been deprecated. Please use 'initial_configuration' instead.""")
297
290
  def esxi_hosts_count(self) -> int:
298
291
  """
299
292
  The number of ESXi hosts to create in the Cluster. You can add more hosts later (see [CreateEsxiHost](https://docs.cloud.oracle.com/iaas/api/#/en/vmware/20200501/EsxiHost/CreateEsxiHost)). Creating a Cluster with a ESXi host count of 1 will be considered a single ESXi host Cluster.
300
293
  """
301
- warnings.warn("""The 'esxi_hosts_count' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
302
- pulumi.log.warn("""esxi_hosts_count is deprecated: The 'esxi_hosts_count' field has been deprecated. Please use 'initial_configuration' instead.""")
303
-
304
294
  return pulumi.get(self, "esxi_hosts_count")
305
295
 
306
296
  @property
@@ -334,13 +324,11 @@ class GetSddcResult:
334
324
 
335
325
  @property
336
326
  @pulumi.getter(name="hcxInitialPassword")
327
+ @_utilities.deprecated("""The 'hcx_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.""")
337
328
  def hcx_initial_password(self) -> str:
338
329
  """
339
330
  (**Deprecated**) The SDDC includes an administrator username and initial password for HCX Manager. Make sure to change this initial HCX Manager password to a different value. **Deprecated**. Please use the `ocvp_get_retrieve_password` data source instead.
340
331
  """
341
- warnings.warn("""The 'hcx_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.""", DeprecationWarning)
342
- pulumi.log.warn("""hcx_initial_password is deprecated: The 'hcx_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.""")
343
-
344
332
  return pulumi.get(self, "hcx_initial_password")
345
333
 
346
334
  @property
@@ -353,13 +341,11 @@ class GetSddcResult:
353
341
 
354
342
  @property
355
343
  @pulumi.getter(name="hcxOnPremKey")
344
+ @_utilities.deprecated("""The 'hcx_on_prem_key' field has been deprecated and may be removed in a future version. Do not use this field.""")
356
345
  def hcx_on_prem_key(self) -> str:
357
346
  """
358
347
  (**Deprecated**) The activation keys to use on the on-premises HCX Enterprise appliances you site pair with HCX Manager in your VMware Solution. The number of keys provided depends on the HCX license type. HCX Advanced provides 3 activation keys. HCX Enterprise provides 10 activation keys. **Deprecated**. Please use `hcx_on_prem_licenses` instead.
359
348
  """
360
- warnings.warn("""The 'hcx_on_prem_key' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
361
- pulumi.log.warn("""hcx_on_prem_key is deprecated: The 'hcx_on_prem_key' field has been deprecated and may be removed in a future version. Do not use this field.""")
362
-
363
349
  return pulumi.get(self, "hcx_on_prem_key")
364
350
 
365
351
  @property
@@ -380,13 +366,11 @@ class GetSddcResult:
380
366
 
381
367
  @property
382
368
  @pulumi.getter(name="hcxVlanId")
369
+ @_utilities.deprecated("""The 'hcx_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
383
370
  def hcx_vlan_id(self) -> str:
384
371
  """
385
372
  The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VLAN used by the SDDC for the HCX component of the VMware environment. This VLAN is a mandatory attribute for Management Cluster when HCX is enabled.
386
373
  """
387
- warnings.warn("""The 'hcx_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
388
- pulumi.log.warn("""hcx_vlan_id is deprecated: The 'hcx_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
389
-
390
374
  return pulumi.get(self, "hcx_vlan_id")
391
375
 
392
376
  @property
@@ -407,46 +391,38 @@ class GetSddcResult:
407
391
 
408
392
  @property
409
393
  @pulumi.getter(name="initialHostOcpuCount")
394
+ @_utilities.deprecated("""The 'initial_host_ocpu_count' field has been deprecated. Please use 'initial_configuration' instead.""")
410
395
  def initial_host_ocpu_count(self) -> float:
411
396
  """
412
397
  (**Deprecated**) The initial OCPU count of the SDDC's ESXi hosts. **Deprecated**. Please use `initial_host_ocpu_count` of `initial_cluster_configurations` instead.
413
398
  """
414
- warnings.warn("""The 'initial_host_ocpu_count' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
415
- pulumi.log.warn("""initial_host_ocpu_count is deprecated: The 'initial_host_ocpu_count' field has been deprecated. Please use 'initial_configuration' instead.""")
416
-
417
399
  return pulumi.get(self, "initial_host_ocpu_count")
418
400
 
419
401
  @property
420
402
  @pulumi.getter(name="initialHostShapeName")
403
+ @_utilities.deprecated("""The 'initial_host_shape_name' field has been deprecated. Please use 'initial_configuration' instead.""")
421
404
  def initial_host_shape_name(self) -> str:
422
405
  """
423
406
  (**Deprecated**) The initial compute shape of the SDDC's ESXi hosts. [ListSupportedHostShapes](https://docs.cloud.oracle.com/iaas/api/#/en/vmware/20200501/SupportedHostShapes/ListSupportedHostShapes). **Deprecated**. Please use `initial_host_shape_name` of `initial_cluster_configurations` instead.
424
407
  """
425
- warnings.warn("""The 'initial_host_shape_name' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
426
- pulumi.log.warn("""initial_host_shape_name is deprecated: The 'initial_host_shape_name' field has been deprecated. Please use 'initial_configuration' instead.""")
427
-
428
408
  return pulumi.get(self, "initial_host_shape_name")
429
409
 
430
410
  @property
431
411
  @pulumi.getter(name="initialSku")
412
+ @_utilities.deprecated("""The 'initial_sku' field has been deprecated. Please use 'initial_configuration' instead.""")
432
413
  def initial_sku(self) -> str:
433
414
  """
434
415
  (**Deprecated**) The billing option selected during SDDC creation. [ListSupportedSkus](https://docs.cloud.oracle.com/iaas/api/#/en/vmware/20200501/SupportedSkuSummary/ListSupportedSkus). **Deprecated**. Please use `initial_commitment` of `initial_cluster_configurations` instead.
435
416
  """
436
- warnings.warn("""The 'initial_sku' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
437
- pulumi.log.warn("""initial_sku is deprecated: The 'initial_sku' field has been deprecated. Please use 'initial_configuration' instead.""")
438
-
439
417
  return pulumi.get(self, "initial_sku")
440
418
 
441
419
  @property
442
420
  @pulumi.getter(name="instanceDisplayNamePrefix")
421
+ @_utilities.deprecated("""The 'instance_display_name_prefix' field has been deprecated. Please use 'initial_configuration' instead.""")
443
422
  def instance_display_name_prefix(self) -> str:
444
423
  """
445
424
  (**Deprecated**) A prefix used in the name of each ESXi host and Compute instance in the SDDC. If this isn't set, the SDDC's `displayName` is used as the prefix.
446
425
  """
447
- warnings.warn("""The 'instance_display_name_prefix' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
448
- pulumi.log.warn("""instance_display_name_prefix is deprecated: The 'instance_display_name_prefix' field has been deprecated. Please use 'initial_configuration' instead.""")
449
-
450
426
  return pulumi.get(self, "instance_display_name_prefix")
451
427
 
452
428
  @property
@@ -459,13 +435,11 @@ class GetSddcResult:
459
435
 
460
436
  @property
461
437
  @pulumi.getter(name="isHcxEnterpriseEnabled")
438
+ @_utilities.deprecated("""The 'is_hcx_enterprise_enabled' field has been deprecated and may be removed in a future version. Do not use this field.""")
462
439
  def is_hcx_enterprise_enabled(self) -> bool:
463
440
  """
464
441
  (**Deprecated**) Indicates whether HCX Enterprise is enabled for this SDDC. **Deprecated**. Please use `hcx_mode` instead.
465
442
  """
466
- warnings.warn("""The 'is_hcx_enterprise_enabled' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
467
- pulumi.log.warn("""is_hcx_enterprise_enabled is deprecated: The 'is_hcx_enterprise_enabled' field has been deprecated and may be removed in a future version. Do not use this field.""")
468
-
469
443
  return pulumi.get(self, "is_hcx_enterprise_enabled")
470
444
 
471
445
  @property
@@ -478,13 +452,11 @@ class GetSddcResult:
478
452
 
479
453
  @property
480
454
  @pulumi.getter(name="isShieldedInstanceEnabled")
455
+ @_utilities.deprecated("""The 'is_shielded_instance_enabled' field has been deprecated. Please use 'initial_configuration' instead.""")
481
456
  def is_shielded_instance_enabled(self) -> bool:
482
457
  """
483
458
  (**Deprecated**) Indicates whether shielded instance is enabled at the SDDC level. **Deprecated**. Please use `is_shielded_instance_enabled` of `initial_cluster_configurations` instead.
484
459
  """
485
- warnings.warn("""The 'is_shielded_instance_enabled' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
486
- pulumi.log.warn("""is_shielded_instance_enabled is deprecated: The 'is_shielded_instance_enabled' field has been deprecated. Please use 'initial_configuration' instead.""")
487
-
488
460
  return pulumi.get(self, "is_shielded_instance_enabled")
489
461
 
490
462
  @property
@@ -497,24 +469,20 @@ class GetSddcResult:
497
469
 
498
470
  @property
499
471
  @pulumi.getter(name="nsxEdgeUplink1vlanId")
472
+ @_utilities.deprecated("""The 'nsx_edge_uplink1vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
500
473
  def nsx_edge_uplink1vlan_id(self) -> str:
501
474
  """
502
475
  (**Deprecated**) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VLAN used by the SDDC for the NSX Edge Uplink 1 component of the VMware environment.
503
476
  """
504
- warnings.warn("""The 'nsx_edge_uplink1vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
505
- pulumi.log.warn("""nsx_edge_uplink1vlan_id is deprecated: The 'nsx_edge_uplink1vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
506
-
507
477
  return pulumi.get(self, "nsx_edge_uplink1vlan_id")
508
478
 
509
479
  @property
510
480
  @pulumi.getter(name="nsxEdgeUplink2vlanId")
481
+ @_utilities.deprecated("""The 'nsx_edge_uplink2vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
511
482
  def nsx_edge_uplink2vlan_id(self) -> str:
512
483
  """
513
484
  (**Deprecated**) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VLAN used by the SDDC for the NSX Edge Uplink 2 component of the VMware environment.
514
485
  """
515
- warnings.warn("""The 'nsx_edge_uplink2vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
516
- pulumi.log.warn("""nsx_edge_uplink2vlan_id is deprecated: The 'nsx_edge_uplink2vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
517
-
518
486
  return pulumi.get(self, "nsx_edge_uplink2vlan_id")
519
487
 
520
488
  @property
@@ -527,13 +495,11 @@ class GetSddcResult:
527
495
 
528
496
  @property
529
497
  @pulumi.getter(name="nsxEdgeVtepVlanId")
498
+ @_utilities.deprecated("""The 'nsx_edge_vtep_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
530
499
  def nsx_edge_vtep_vlan_id(self) -> str:
531
500
  """
532
501
  (**Deprecated**) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VLAN used by the SDDC for the NSX Edge VTEP component of the VMware environment.
533
502
  """
534
- warnings.warn("""The 'nsx_edge_vtep_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
535
- pulumi.log.warn("""nsx_edge_vtep_vlan_id is deprecated: The 'nsx_edge_vtep_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
536
-
537
503
  return pulumi.get(self, "nsx_edge_vtep_vlan_id")
538
504
 
539
505
  @property
@@ -546,13 +512,11 @@ class GetSddcResult:
546
512
 
547
513
  @property
548
514
  @pulumi.getter(name="nsxManagerInitialPassword")
515
+ @_utilities.deprecated("""The 'nsx_manager_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.""")
549
516
  def nsx_manager_initial_password(self) -> str:
550
517
  """
551
518
  (**Deprecated**) The SDDC includes an administrator username and initial password for NSX Manager. Make sure to change this initial NSX Manager password to a different value. **Deprecated**. Please use the `ocvp_get_retrieve_password` data source instead.
552
519
  """
553
- warnings.warn("""The 'nsx_manager_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.""", DeprecationWarning)
554
- pulumi.log.warn("""nsx_manager_initial_password is deprecated: The 'nsx_manager_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.""")
555
-
556
520
  return pulumi.get(self, "nsx_manager_initial_password")
557
521
 
558
522
  @property
@@ -573,46 +537,38 @@ class GetSddcResult:
573
537
 
574
538
  @property
575
539
  @pulumi.getter(name="nsxOverlaySegmentName")
540
+ @_utilities.deprecated("""The 'nsx_overlay_segment_name' field has been deprecated and may be removed in a future version. Do not use this field.""")
576
541
  def nsx_overlay_segment_name(self) -> str:
577
542
  """
578
543
  (**Deprecated**) The VMware NSX overlay workload segment to host your application. Connect to workload portgroup in vCenter to access this overlay segment.
579
544
  """
580
- warnings.warn("""The 'nsx_overlay_segment_name' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
581
- pulumi.log.warn("""nsx_overlay_segment_name is deprecated: The 'nsx_overlay_segment_name' field has been deprecated and may be removed in a future version. Do not use this field.""")
582
-
583
545
  return pulumi.get(self, "nsx_overlay_segment_name")
584
546
 
585
547
  @property
586
548
  @pulumi.getter(name="nsxVtepVlanId")
549
+ @_utilities.deprecated("""The 'nsx_vtep_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
587
550
  def nsx_vtep_vlan_id(self) -> str:
588
551
  """
589
552
  (**Deprecated**) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VLAN used by the SDDC for the NSX VTEP component of the VMware environment.
590
553
  """
591
- warnings.warn("""The 'nsx_vtep_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
592
- pulumi.log.warn("""nsx_vtep_vlan_id is deprecated: The 'nsx_vtep_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
593
-
594
554
  return pulumi.get(self, "nsx_vtep_vlan_id")
595
555
 
596
556
  @property
597
557
  @pulumi.getter(name="provisioningSubnetId")
558
+ @_utilities.deprecated("""The 'provisioning_subnet_id' field has been deprecated. Please use 'initial_configuration' instead.""")
598
559
  def provisioning_subnet_id(self) -> str:
599
560
  """
600
561
  (**Deprecated**) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management subnet used to provision the SDDC. **Deprecated**. Please use `provisioning_subnet_id` of `network_configuration` instead.
601
562
  """
602
- warnings.warn("""The 'provisioning_subnet_id' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
603
- pulumi.log.warn("""provisioning_subnet_id is deprecated: The 'provisioning_subnet_id' field has been deprecated. Please use 'initial_configuration' instead.""")
604
-
605
563
  return pulumi.get(self, "provisioning_subnet_id")
606
564
 
607
565
  @property
608
566
  @pulumi.getter(name="provisioningVlanId")
567
+ @_utilities.deprecated("""The 'provisioning_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
609
568
  def provisioning_vlan_id(self) -> str:
610
569
  """
611
570
  (**Deprecated**) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VLAN used by the SDDC for the Provisioning component of the VMware environment. **Deprecated**. Please use `provisioning_vlan_id` of `network_configuration` instead.
612
571
  """
613
- warnings.warn("""The 'provisioning_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
614
- pulumi.log.warn("""provisioning_vlan_id is deprecated: The 'provisioning_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
615
-
616
572
  return pulumi.get(self, "provisioning_vlan_id")
617
573
 
618
574
  @property
@@ -622,13 +578,11 @@ class GetSddcResult:
622
578
 
623
579
  @property
624
580
  @pulumi.getter(name="replicationVlanId")
581
+ @_utilities.deprecated("""The 'replication_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
625
582
  def replication_vlan_id(self) -> str:
626
583
  """
627
584
  (**Deprecated**) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment. **Deprecated**. Please use `replication_vlan_id` of `network_configuration` instead.
628
585
  """
629
- warnings.warn("""The 'replication_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
630
- pulumi.log.warn("""replication_vlan_id is deprecated: The 'replication_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
631
-
632
586
  return pulumi.get(self, "replication_vlan_id")
633
587
 
634
588
  @property
@@ -691,13 +645,11 @@ class GetSddcResult:
691
645
 
692
646
  @property
693
647
  @pulumi.getter(name="upgradeLicenses")
648
+ @_utilities.deprecated("""The 'upgrade_licenses' field has been deprecated. Please use the 'ocvp_cluster_resource' resource instead.""")
694
649
  def upgrade_licenses(self) -> Sequence['outputs.GetSddcUpgradeLicenseResult']:
695
650
  """
696
651
  (**Deprecated**) The vSphere licenses to use when upgrading the SDDC.
697
652
  """
698
- warnings.warn("""The 'upgrade_licenses' field has been deprecated. Please use the 'ocvp_cluster_resource' resource instead.""", DeprecationWarning)
699
- pulumi.log.warn("""upgrade_licenses is deprecated: The 'upgrade_licenses' field has been deprecated. Please use the 'ocvp_cluster_resource' resource instead.""")
700
-
701
653
  return pulumi.get(self, "upgrade_licenses")
702
654
 
703
655
  @property
@@ -710,13 +662,11 @@ class GetSddcResult:
710
662
 
711
663
  @property
712
664
  @pulumi.getter(name="vcenterInitialPassword")
665
+ @_utilities.deprecated("""The 'vcenter_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.""")
713
666
  def vcenter_initial_password(self) -> str:
714
667
  """
715
668
  (**Deprecated**) The SDDC includes an administrator username and initial password for vCenter. Make sure to change this initial vCenter password to a different value. **Deprecated**. Please use the `ocvp_get_retrieve_password` data source instead.
716
669
  """
717
- warnings.warn("""The 'vcenter_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.""", DeprecationWarning)
718
- pulumi.log.warn("""vcenter_initial_password is deprecated: The 'vcenter_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.""")
719
-
720
670
  return pulumi.get(self, "vcenter_initial_password")
721
671
 
722
672
  @property
@@ -737,13 +687,11 @@ class GetSddcResult:
737
687
 
738
688
  @property
739
689
  @pulumi.getter(name="vmotionVlanId")
690
+ @_utilities.deprecated("""The 'vmotion_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
740
691
  def vmotion_vlan_id(self) -> str:
741
692
  """
742
693
  (**Deprecated**) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VLAN used by the SDDC for the vMotion component of the VMware environment.
743
694
  """
744
- warnings.warn("""The 'vmotion_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
745
- pulumi.log.warn("""vmotion_vlan_id is deprecated: The 'vmotion_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
746
-
747
695
  return pulumi.get(self, "vmotion_vlan_id")
748
696
 
749
697
  @property
@@ -756,57 +704,47 @@ class GetSddcResult:
756
704
 
757
705
  @property
758
706
  @pulumi.getter(name="vsanVlanId")
707
+ @_utilities.deprecated("""The 'vsan_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
759
708
  def vsan_vlan_id(self) -> str:
760
709
  """
761
710
  (**Deprecated**) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VLAN used by the SDDC for the vSAN component of the VMware environment.
762
711
  """
763
- warnings.warn("""The 'vsan_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
764
- pulumi.log.warn("""vsan_vlan_id is deprecated: The 'vsan_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
765
-
766
712
  return pulumi.get(self, "vsan_vlan_id")
767
713
 
768
714
  @property
769
715
  @pulumi.getter(name="vsphereUpgradeGuide")
716
+ @_utilities.deprecated("""The 'vsphere_upgrade_guide' field has been deprecated and may be removed in a future version. Do not use this field.""")
770
717
  def vsphere_upgrade_guide(self) -> str:
771
718
  """
772
719
  (**Deprecated**) The link to guidance for upgrading vSphere.
773
720
  """
774
- warnings.warn("""The 'vsphere_upgrade_guide' field has been deprecated and may be removed in a future version. Do not use this field.""", DeprecationWarning)
775
- pulumi.log.warn("""vsphere_upgrade_guide is deprecated: The 'vsphere_upgrade_guide' field has been deprecated and may be removed in a future version. Do not use this field.""")
776
-
777
721
  return pulumi.get(self, "vsphere_upgrade_guide")
778
722
 
779
723
  @property
780
724
  @pulumi.getter(name="vsphereUpgradeObjects")
725
+ @_utilities.deprecated("""The 'vsphere_upgrade_objects' field has been deprecated. Please use the 'ocvp_cluster_resource' resource instead.""")
781
726
  def vsphere_upgrade_objects(self) -> Sequence['outputs.GetSddcVsphereUpgradeObjectResult']:
782
727
  """
783
728
  (**Deprecated**) The links to binary objects needed to upgrade vSphere.
784
729
  """
785
- warnings.warn("""The 'vsphere_upgrade_objects' field has been deprecated. Please use the 'ocvp_cluster_resource' resource instead.""", DeprecationWarning)
786
- pulumi.log.warn("""vsphere_upgrade_objects is deprecated: The 'vsphere_upgrade_objects' field has been deprecated. Please use the 'ocvp_cluster_resource' resource instead.""")
787
-
788
730
  return pulumi.get(self, "vsphere_upgrade_objects")
789
731
 
790
732
  @property
791
733
  @pulumi.getter(name="vsphereVlanId")
734
+ @_utilities.deprecated("""The 'vsphere_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
792
735
  def vsphere_vlan_id(self) -> str:
793
736
  """
794
737
  (**Deprecated**) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VLAN used by the SDDC for the vSphere component of the VMware environment.
795
738
  """
796
- warnings.warn("""The 'vsphere_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
797
- pulumi.log.warn("""vsphere_vlan_id is deprecated: The 'vsphere_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.""")
798
-
799
739
  return pulumi.get(self, "vsphere_vlan_id")
800
740
 
801
741
  @property
802
742
  @pulumi.getter(name="workloadNetworkCidr")
743
+ @_utilities.deprecated("""The 'workload_network_cidr' field has been deprecated. Please use 'initial_configuration' instead.""")
803
744
  def workload_network_cidr(self) -> str:
804
745
  """
805
746
  (**Deprecated**) The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads. **Deprecated**. Please use `workload_network_cidr` of `initial_cluster_configurations` instead.
806
747
  """
807
- warnings.warn("""The 'workload_network_cidr' field has been deprecated. Please use 'initial_configuration' instead.""", DeprecationWarning)
808
- pulumi.log.warn("""workload_network_cidr is deprecated: The 'workload_network_cidr' field has been deprecated. Please use 'initial_configuration' instead.""")
809
-
810
748
  return pulumi.get(self, "workload_network_cidr")
811
749
 
812
750
 
@@ -98,10 +98,8 @@ class GetSupportedHostShapesResult:
98
98
 
99
99
  @property
100
100
  @pulumi.getter(name="sddcType")
101
+ @_utilities.deprecated("""The 'sddc_type' field has been deprecated. Please use 'is_single_host_sddc_supported' instead.""")
101
102
  def sddc_type(self) -> Optional[str]:
102
- warnings.warn("""The 'sddc_type' field has been deprecated. Please use 'is_single_host_sddc_supported' instead.""", DeprecationWarning)
103
- pulumi.log.warn("""sddc_type is deprecated: The 'sddc_type' field has been deprecated. Please use 'is_single_host_sddc_supported' instead.""")
104
-
105
103
  return pulumi.get(self, "sddc_type")
106
104
 
107
105