pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.12.0a1728642710__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 (170) hide show
  1. pulumi_oci/__init__.py +145 -0
  2. pulumi_oci/analytics/analytics_instance.py +54 -5
  3. pulumi_oci/analytics/get_analytics_instance.py +18 -4
  4. pulumi_oci/analytics/outputs.py +12 -1
  5. pulumi_oci/core/_inputs.py +648 -159
  6. pulumi_oci/core/cluster_network.py +7 -7
  7. pulumi_oci/core/get_instance.py +29 -1
  8. pulumi_oci/core/get_vcn.py +15 -1
  9. pulumi_oci/core/get_vnic.py +15 -1
  10. pulumi_oci/core/instance.py +87 -0
  11. pulumi_oci/core/instance_configuration.py +12 -0
  12. pulumi_oci/core/ipsec.py +183 -23
  13. pulumi_oci/core/network_security_group_security_rule.py +2 -2
  14. pulumi_oci/core/outputs.py +709 -107
  15. pulumi_oci/core/service_gateway.py +13 -7
  16. pulumi_oci/core/vcn.py +65 -23
  17. pulumi_oci/core/virtual_network.py +35 -1
  18. pulumi_oci/core/vnic_attachment.py +2 -0
  19. pulumi_oci/database/_inputs.py +905 -27
  20. pulumi_oci/database/autonomous_database.py +48 -28
  21. pulumi_oci/database/autonomous_database_backup.py +12 -12
  22. pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
  23. pulumi_oci/database/autonomous_vm_cluster.py +2 -0
  24. pulumi_oci/database/backup.py +12 -12
  25. pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
  26. pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
  27. pulumi_oci/database/cloud_vm_cluster.py +71 -0
  28. pulumi_oci/database/database.py +15 -15
  29. pulumi_oci/database/database_upgrade.py +12 -12
  30. pulumi_oci/database/db_system.py +9 -9
  31. pulumi_oci/database/exadata_infrastructure.py +2 -0
  32. pulumi_oci/database/get_autonomous_container_database.py +1 -1
  33. pulumi_oci/database/get_autonomous_database.py +18 -4
  34. pulumi_oci/database/get_autonomous_database_backup.py +3 -3
  35. pulumi_oci/database/get_autonomous_databases.py +88 -5
  36. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  37. pulumi_oci/database/get_database.py +3 -3
  38. pulumi_oci/database/get_pluggable_database.py +12 -1
  39. pulumi_oci/database/get_vm_cluster.py +15 -1
  40. pulumi_oci/database/outputs.py +1431 -74
  41. pulumi_oci/database/pluggable_database.py +34 -0
  42. pulumi_oci/database/vm_cluster.py +71 -0
  43. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  44. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  45. pulumi_oci/datasafe/__init__.py +12 -0
  46. pulumi_oci/datasafe/_inputs.py +441 -0
  47. pulumi_oci/datasafe/get_reports.py +23 -1
  48. pulumi_oci/datasafe/get_sql_collection.py +392 -0
  49. pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
  50. pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
  51. pulumi_oci/datasafe/get_sql_collections.py +364 -0
  52. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
  53. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
  54. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
  55. pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
  56. pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
  57. pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
  58. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
  59. pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
  60. pulumi_oci/datasafe/outputs.py +1808 -2
  61. pulumi_oci/desktops/_inputs.py +223 -7
  62. pulumi_oci/desktops/desktop_pool.py +186 -21
  63. pulumi_oci/desktops/get_desktop_pool.py +47 -5
  64. pulumi_oci/desktops/outputs.py +480 -19
  65. pulumi_oci/fleetappsmanagement/__init__.py +43 -0
  66. pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
  67. pulumi_oci/fleetappsmanagement/fleet.py +955 -0
  68. pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
  69. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  70. pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
  71. pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
  72. pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
  73. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
  74. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
  75. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
  76. pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
  77. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
  78. pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
  79. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
  80. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
  81. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
  82. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  83. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
  84. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
  85. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
  86. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
  87. pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
  88. pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
  89. pulumi_oci/fleetappsmanagement/get_property.py +323 -0
  90. pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
  91. pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
  92. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
  93. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
  94. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
  95. pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
  96. pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
  97. pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
  98. pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
  99. pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
  100. pulumi_oci/fleetappsmanagement/property.py +697 -0
  101. pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
  102. pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
  103. pulumi_oci/functions/outputs.py +11 -0
  104. pulumi_oci/fusionapps/_inputs.py +21 -20
  105. pulumi_oci/fusionapps/fusion_environment.py +2 -2
  106. pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
  107. pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
  108. pulumi_oci/fusionapps/outputs.py +11 -10
  109. pulumi_oci/integration/__init__.py +1 -0
  110. pulumi_oci/integration/_inputs.py +289 -2
  111. pulumi_oci/integration/get_integration_instance.py +65 -1
  112. pulumi_oci/integration/integration_instance.py +172 -0
  113. pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
  114. pulumi_oci/integration/outputs.py +587 -19
  115. pulumi_oci/loadbalancer/_inputs.py +20 -0
  116. pulumi_oci/loadbalancer/listener.py +4 -2
  117. pulumi_oci/loadbalancer/outputs.py +16 -2
  118. pulumi_oci/monitoring/_inputs.py +137 -16
  119. pulumi_oci/monitoring/alarm_suppression.py +164 -35
  120. pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
  121. pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
  122. pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
  123. pulumi_oci/monitoring/outputs.py +291 -18
  124. pulumi_oci/mysql/mysql_db_system.py +7 -7
  125. pulumi_oci/objectstorage/__init__.py +3 -0
  126. pulumi_oci/objectstorage/_inputs.py +97 -0
  127. pulumi_oci/objectstorage/get_object_versions.py +6 -6
  128. pulumi_oci/objectstorage/get_objects.py +6 -6
  129. pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
  130. pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
  131. pulumi_oci/objectstorage/outputs.py +258 -0
  132. pulumi_oci/objectstorage/private_endpoint.py +630 -0
  133. pulumi_oci/objectstorage/storage_object.py +7 -7
  134. pulumi_oci/opsi/_inputs.py +268 -114
  135. pulumi_oci/opsi/database_insight.py +162 -21
  136. pulumi_oci/opsi/exadata_insight.py +44 -0
  137. pulumi_oci/opsi/get_database_insight.py +40 -1
  138. pulumi_oci/opsi/get_host_insights.py +2 -2
  139. pulumi_oci/opsi/host_insight.py +0 -48
  140. pulumi_oci/opsi/outputs.py +405 -109
  141. pulumi_oci/pulumi-plugin.json +1 -1
  142. pulumi_oci/securityattribute/__init__.py +15 -0
  143. pulumi_oci/securityattribute/_inputs.py +209 -0
  144. pulumi_oci/securityattribute/get_security_attribute.py +262 -0
  145. pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
  146. pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
  147. pulumi_oci/securityattribute/get_security_attributes.py +169 -0
  148. pulumi_oci/securityattribute/outputs.py +466 -0
  149. pulumi_oci/securityattribute/security_attribute.py +588 -0
  150. pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
  151. pulumi_oci/stackmonitoring/__init__.py +5 -0
  152. pulumi_oci/stackmonitoring/_inputs.py +330 -0
  153. pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
  154. pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
  155. pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
  156. pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
  157. pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
  158. pulumi_oci/stackmonitoring/outputs.py +603 -0
  159. pulumi_oci/zpr/__init__.py +14 -0
  160. pulumi_oci/zpr/_inputs.py +79 -0
  161. pulumi_oci/zpr/configuration.py +516 -0
  162. pulumi_oci/zpr/get_configuration.py +230 -0
  163. pulumi_oci/zpr/get_zpr_policies.py +191 -0
  164. pulumi_oci/zpr/get_zpr_policy.py +264 -0
  165. pulumi_oci/zpr/outputs.py +203 -0
  166. pulumi_oci/zpr/zpr_policy.py +614 -0
  167. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
  168. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
  169. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
  170. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/top_level.txt +0 -0
@@ -27,6 +27,10 @@ __all__ = [
27
27
  'DesktopPoolImageArgsDict',
28
28
  'DesktopPoolNetworkConfigurationArgs',
29
29
  'DesktopPoolNetworkConfigurationArgsDict',
30
+ 'DesktopPoolPrivateAccessDetailsArgs',
31
+ 'DesktopPoolPrivateAccessDetailsArgsDict',
32
+ 'DesktopPoolShapeConfigArgs',
33
+ 'DesktopPoolShapeConfigArgsDict',
30
34
  'GetDesktopPoolDesktopsFilterArgs',
31
35
  'GetDesktopPoolDesktopsFilterArgsDict',
32
36
  'GetDesktopPoolVolumesFilterArgs',
@@ -344,6 +348,10 @@ if not MYPY:
344
348
  """
345
349
  The name of the desktop image.
346
350
  """
351
+ operating_system: NotRequired[pulumi.Input[str]]
352
+ """
353
+ The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
354
+ """
347
355
  elif False:
348
356
  DesktopPoolImageArgsDict: TypeAlias = Mapping[str, Any]
349
357
 
@@ -351,13 +359,17 @@ elif False:
351
359
  class DesktopPoolImageArgs:
352
360
  def __init__(__self__, *,
353
361
  image_id: pulumi.Input[str],
354
- image_name: pulumi.Input[str]):
362
+ image_name: pulumi.Input[str],
363
+ operating_system: Optional[pulumi.Input[str]] = None):
355
364
  """
356
365
  :param pulumi.Input[str] image_id: The OCID of the desktop image.
357
366
  :param pulumi.Input[str] image_name: The name of the desktop image.
367
+ :param pulumi.Input[str] operating_system: The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
358
368
  """
359
369
  pulumi.set(__self__, "image_id", image_id)
360
370
  pulumi.set(__self__, "image_name", image_name)
371
+ if operating_system is not None:
372
+ pulumi.set(__self__, "operating_system", operating_system)
361
373
 
362
374
  @property
363
375
  @pulumi.getter(name="imageId")
@@ -383,16 +395,28 @@ class DesktopPoolImageArgs:
383
395
  def image_name(self, value: pulumi.Input[str]):
384
396
  pulumi.set(self, "image_name", value)
385
397
 
398
+ @property
399
+ @pulumi.getter(name="operatingSystem")
400
+ def operating_system(self) -> Optional[pulumi.Input[str]]:
401
+ """
402
+ The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
403
+ """
404
+ return pulumi.get(self, "operating_system")
405
+
406
+ @operating_system.setter
407
+ def operating_system(self, value: Optional[pulumi.Input[str]]):
408
+ pulumi.set(self, "operating_system", value)
409
+
386
410
 
387
411
  if not MYPY:
388
412
  class DesktopPoolNetworkConfigurationArgsDict(TypedDict):
389
413
  subnet_id: pulumi.Input[str]
390
414
  """
391
- The OCID of the subnet to use for the desktop pool.
415
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in the customer VCN where the connectivity will be established.
392
416
  """
393
417
  vcn_id: pulumi.Input[str]
394
418
  """
395
- The OCID of the VCN used by the desktop pool.
419
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
396
420
  """
397
421
  elif False:
398
422
  DesktopPoolNetworkConfigurationArgsDict: TypeAlias = Mapping[str, Any]
@@ -403,8 +427,8 @@ class DesktopPoolNetworkConfigurationArgs:
403
427
  subnet_id: pulumi.Input[str],
404
428
  vcn_id: pulumi.Input[str]):
405
429
  """
406
- :param pulumi.Input[str] subnet_id: The OCID of the subnet to use for the desktop pool.
407
- :param pulumi.Input[str] vcn_id: The OCID of the VCN used by the desktop pool.
430
+ :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in the customer VCN where the connectivity will be established.
431
+ :param pulumi.Input[str] vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
408
432
  """
409
433
  pulumi.set(__self__, "subnet_id", subnet_id)
410
434
  pulumi.set(__self__, "vcn_id", vcn_id)
@@ -413,7 +437,7 @@ class DesktopPoolNetworkConfigurationArgs:
413
437
  @pulumi.getter(name="subnetId")
414
438
  def subnet_id(self) -> pulumi.Input[str]:
415
439
  """
416
- The OCID of the subnet to use for the desktop pool.
440
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in the customer VCN where the connectivity will be established.
417
441
  """
418
442
  return pulumi.get(self, "subnet_id")
419
443
 
@@ -425,7 +449,7 @@ class DesktopPoolNetworkConfigurationArgs:
425
449
  @pulumi.getter(name="vcnId")
426
450
  def vcn_id(self) -> pulumi.Input[str]:
427
451
  """
428
- The OCID of the VCN used by the desktop pool.
452
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
429
453
  """
430
454
  return pulumi.get(self, "vcn_id")
431
455
 
@@ -434,6 +458,198 @@ class DesktopPoolNetworkConfigurationArgs:
434
458
  pulumi.set(self, "vcn_id", value)
435
459
 
436
460
 
461
+ if not MYPY:
462
+ class DesktopPoolPrivateAccessDetailsArgsDict(TypedDict):
463
+ subnet_id: pulumi.Input[str]
464
+ """
465
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in the customer VCN where the connectivity will be established.
466
+ """
467
+ endpoint_fqdn: NotRequired[pulumi.Input[str]]
468
+ """
469
+ The three-label FQDN to use for the private endpoint. The customer VCN's DNS records are updated with this FQDN. This enables the customer to use the FQDN instead of the private endpoint's private IP address to access the service (for example, xyz.oraclecloud.com).
470
+ """
471
+ nsg_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
472
+ """
473
+ A list of network security groups for the private access.
474
+ """
475
+ private_ip: NotRequired[pulumi.Input[str]]
476
+ """
477
+ The IPv4 address from the provided Oracle Cloud Infrastructure subnet which needs to be assigned to the VNIC. If not provided, it will be auto-assigned with an available IPv4 address from the subnet.
478
+ """
479
+ vcn_id: NotRequired[pulumi.Input[str]]
480
+ """
481
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
482
+ """
483
+ elif False:
484
+ DesktopPoolPrivateAccessDetailsArgsDict: TypeAlias = Mapping[str, Any]
485
+
486
+ @pulumi.input_type
487
+ class DesktopPoolPrivateAccessDetailsArgs:
488
+ def __init__(__self__, *,
489
+ subnet_id: pulumi.Input[str],
490
+ endpoint_fqdn: Optional[pulumi.Input[str]] = None,
491
+ nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
492
+ private_ip: Optional[pulumi.Input[str]] = None,
493
+ vcn_id: Optional[pulumi.Input[str]] = None):
494
+ """
495
+ :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in the customer VCN where the connectivity will be established.
496
+ :param pulumi.Input[str] endpoint_fqdn: The three-label FQDN to use for the private endpoint. The customer VCN's DNS records are updated with this FQDN. This enables the customer to use the FQDN instead of the private endpoint's private IP address to access the service (for example, xyz.oraclecloud.com).
497
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: A list of network security groups for the private access.
498
+ :param pulumi.Input[str] private_ip: The IPv4 address from the provided Oracle Cloud Infrastructure subnet which needs to be assigned to the VNIC. If not provided, it will be auto-assigned with an available IPv4 address from the subnet.
499
+ :param pulumi.Input[str] vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
500
+ """
501
+ pulumi.set(__self__, "subnet_id", subnet_id)
502
+ if endpoint_fqdn is not None:
503
+ pulumi.set(__self__, "endpoint_fqdn", endpoint_fqdn)
504
+ if nsg_ids is not None:
505
+ pulumi.set(__self__, "nsg_ids", nsg_ids)
506
+ if private_ip is not None:
507
+ pulumi.set(__self__, "private_ip", private_ip)
508
+ if vcn_id is not None:
509
+ pulumi.set(__self__, "vcn_id", vcn_id)
510
+
511
+ @property
512
+ @pulumi.getter(name="subnetId")
513
+ def subnet_id(self) -> pulumi.Input[str]:
514
+ """
515
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in the customer VCN where the connectivity will be established.
516
+ """
517
+ return pulumi.get(self, "subnet_id")
518
+
519
+ @subnet_id.setter
520
+ def subnet_id(self, value: pulumi.Input[str]):
521
+ pulumi.set(self, "subnet_id", value)
522
+
523
+ @property
524
+ @pulumi.getter(name="endpointFqdn")
525
+ def endpoint_fqdn(self) -> Optional[pulumi.Input[str]]:
526
+ """
527
+ The three-label FQDN to use for the private endpoint. The customer VCN's DNS records are updated with this FQDN. This enables the customer to use the FQDN instead of the private endpoint's private IP address to access the service (for example, xyz.oraclecloud.com).
528
+ """
529
+ return pulumi.get(self, "endpoint_fqdn")
530
+
531
+ @endpoint_fqdn.setter
532
+ def endpoint_fqdn(self, value: Optional[pulumi.Input[str]]):
533
+ pulumi.set(self, "endpoint_fqdn", value)
534
+
535
+ @property
536
+ @pulumi.getter(name="nsgIds")
537
+ def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
538
+ """
539
+ A list of network security groups for the private access.
540
+ """
541
+ return pulumi.get(self, "nsg_ids")
542
+
543
+ @nsg_ids.setter
544
+ def nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
545
+ pulumi.set(self, "nsg_ids", value)
546
+
547
+ @property
548
+ @pulumi.getter(name="privateIp")
549
+ def private_ip(self) -> Optional[pulumi.Input[str]]:
550
+ """
551
+ The IPv4 address from the provided Oracle Cloud Infrastructure subnet which needs to be assigned to the VNIC. If not provided, it will be auto-assigned with an available IPv4 address from the subnet.
552
+ """
553
+ return pulumi.get(self, "private_ip")
554
+
555
+ @private_ip.setter
556
+ def private_ip(self, value: Optional[pulumi.Input[str]]):
557
+ pulumi.set(self, "private_ip", value)
558
+
559
+ @property
560
+ @pulumi.getter(name="vcnId")
561
+ def vcn_id(self) -> Optional[pulumi.Input[str]]:
562
+ """
563
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
564
+ """
565
+ return pulumi.get(self, "vcn_id")
566
+
567
+ @vcn_id.setter
568
+ def vcn_id(self, value: Optional[pulumi.Input[str]]):
569
+ pulumi.set(self, "vcn_id", value)
570
+
571
+
572
+ if not MYPY:
573
+ class DesktopPoolShapeConfigArgsDict(TypedDict):
574
+ baseline_ocpu_utilization: NotRequired[pulumi.Input[str]]
575
+ """
576
+ The baseline OCPU utilization for a subcore burstable VM instance used for each desktop compute instance in the desktop pool. Leave this attribute blank for a non-burstable instance, or explicitly specify non-burstable with `BASELINE_1_1`. The following values are supported:
577
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
578
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
579
+ * `BASELINE_1_1` - baseline usage is the entire OCPU. This represents a non-burstable instance.
580
+ """
581
+ memory_in_gbs: NotRequired[pulumi.Input[str]]
582
+ """
583
+ The total amount of memory available in gigabytes for each desktop compute instance in the desktop pool.
584
+ """
585
+ ocpus: NotRequired[pulumi.Input[str]]
586
+ """
587
+ The total number of OCPUs available for each desktop compute instance in the desktop pool.
588
+ """
589
+ elif False:
590
+ DesktopPoolShapeConfigArgsDict: TypeAlias = Mapping[str, Any]
591
+
592
+ @pulumi.input_type
593
+ class DesktopPoolShapeConfigArgs:
594
+ def __init__(__self__, *,
595
+ baseline_ocpu_utilization: Optional[pulumi.Input[str]] = None,
596
+ memory_in_gbs: Optional[pulumi.Input[str]] = None,
597
+ ocpus: Optional[pulumi.Input[str]] = None):
598
+ """
599
+ :param pulumi.Input[str] baseline_ocpu_utilization: The baseline OCPU utilization for a subcore burstable VM instance used for each desktop compute instance in the desktop pool. Leave this attribute blank for a non-burstable instance, or explicitly specify non-burstable with `BASELINE_1_1`. The following values are supported:
600
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
601
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
602
+ * `BASELINE_1_1` - baseline usage is the entire OCPU. This represents a non-burstable instance.
603
+ :param pulumi.Input[str] memory_in_gbs: The total amount of memory available in gigabytes for each desktop compute instance in the desktop pool.
604
+ :param pulumi.Input[str] ocpus: The total number of OCPUs available for each desktop compute instance in the desktop pool.
605
+ """
606
+ if baseline_ocpu_utilization is not None:
607
+ pulumi.set(__self__, "baseline_ocpu_utilization", baseline_ocpu_utilization)
608
+ if memory_in_gbs is not None:
609
+ pulumi.set(__self__, "memory_in_gbs", memory_in_gbs)
610
+ if ocpus is not None:
611
+ pulumi.set(__self__, "ocpus", ocpus)
612
+
613
+ @property
614
+ @pulumi.getter(name="baselineOcpuUtilization")
615
+ def baseline_ocpu_utilization(self) -> Optional[pulumi.Input[str]]:
616
+ """
617
+ The baseline OCPU utilization for a subcore burstable VM instance used for each desktop compute instance in the desktop pool. Leave this attribute blank for a non-burstable instance, or explicitly specify non-burstable with `BASELINE_1_1`. The following values are supported:
618
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
619
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
620
+ * `BASELINE_1_1` - baseline usage is the entire OCPU. This represents a non-burstable instance.
621
+ """
622
+ return pulumi.get(self, "baseline_ocpu_utilization")
623
+
624
+ @baseline_ocpu_utilization.setter
625
+ def baseline_ocpu_utilization(self, value: Optional[pulumi.Input[str]]):
626
+ pulumi.set(self, "baseline_ocpu_utilization", value)
627
+
628
+ @property
629
+ @pulumi.getter(name="memoryInGbs")
630
+ def memory_in_gbs(self) -> Optional[pulumi.Input[str]]:
631
+ """
632
+ The total amount of memory available in gigabytes for each desktop compute instance in the desktop pool.
633
+ """
634
+ return pulumi.get(self, "memory_in_gbs")
635
+
636
+ @memory_in_gbs.setter
637
+ def memory_in_gbs(self, value: Optional[pulumi.Input[str]]):
638
+ pulumi.set(self, "memory_in_gbs", value)
639
+
640
+ @property
641
+ @pulumi.getter
642
+ def ocpus(self) -> Optional[pulumi.Input[str]]:
643
+ """
644
+ The total number of OCPUs available for each desktop compute instance in the desktop pool.
645
+ """
646
+ return pulumi.get(self, "ocpus")
647
+
648
+ @ocpus.setter
649
+ def ocpus(self, value: Optional[pulumi.Input[str]]):
650
+ pulumi.set(self, "ocpus", value)
651
+
652
+
437
653
  if not MYPY:
438
654
  class GetDesktopPoolDesktopsFilterArgsDict(TypedDict):
439
655
  name: str