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
@@ -22,6 +22,8 @@ __all__ = [
22
22
  'DesktopPoolDevicePolicy',
23
23
  'DesktopPoolImage',
24
24
  'DesktopPoolNetworkConfiguration',
25
+ 'DesktopPoolPrivateAccessDetails',
26
+ 'DesktopPoolShapeConfig',
25
27
  'GetDesktopDevicePolicyResult',
26
28
  'GetDesktopHostingOptionResult',
27
29
  'GetDesktopHostingOptionImageResult',
@@ -34,6 +36,8 @@ __all__ = [
34
36
  'GetDesktopPoolDevicePolicyResult',
35
37
  'GetDesktopPoolImageResult',
36
38
  'GetDesktopPoolNetworkConfigurationResult',
39
+ 'GetDesktopPoolPrivateAccessDetailResult',
40
+ 'GetDesktopPoolShapeConfigResult',
37
41
  'GetDesktopPoolVolumesDesktopPoolVolumeCollectionResult',
38
42
  'GetDesktopPoolVolumesDesktopPoolVolumeCollectionItemResult',
39
43
  'GetDesktopPoolVolumesFilterResult',
@@ -45,6 +49,8 @@ __all__ = [
45
49
  'GetDesktopPoolsDesktopPoolCollectionItemDevicePolicyResult',
46
50
  'GetDesktopPoolsDesktopPoolCollectionItemImageResult',
47
51
  'GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult',
52
+ 'GetDesktopPoolsDesktopPoolCollectionItemPrivateAccessDetailResult',
53
+ 'GetDesktopPoolsDesktopPoolCollectionItemShapeConfigResult',
48
54
  'GetDesktopPoolsFilterResult',
49
55
  'GetDesktopsDesktopCollectionResult',
50
56
  'GetDesktopsDesktopCollectionItemResult',
@@ -313,6 +319,8 @@ class DesktopPoolImage(dict):
313
319
  suggest = "image_id"
314
320
  elif key == "imageName":
315
321
  suggest = "image_name"
322
+ elif key == "operatingSystem":
323
+ suggest = "operating_system"
316
324
 
317
325
  if suggest:
318
326
  pulumi.log.warn(f"Key '{key}' not found in DesktopPoolImage. Access the value via the '{suggest}' property getter instead.")
@@ -327,13 +335,17 @@ class DesktopPoolImage(dict):
327
335
 
328
336
  def __init__(__self__, *,
329
337
  image_id: str,
330
- image_name: str):
338
+ image_name: str,
339
+ operating_system: Optional[str] = None):
331
340
  """
332
341
  :param str image_id: The OCID of the desktop image.
333
342
  :param str image_name: The name of the desktop image.
343
+ :param str operating_system: The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
334
344
  """
335
345
  pulumi.set(__self__, "image_id", image_id)
336
346
  pulumi.set(__self__, "image_name", image_name)
347
+ if operating_system is not None:
348
+ pulumi.set(__self__, "operating_system", operating_system)
337
349
 
338
350
  @property
339
351
  @pulumi.getter(name="imageId")
@@ -351,6 +363,14 @@ class DesktopPoolImage(dict):
351
363
  """
352
364
  return pulumi.get(self, "image_name")
353
365
 
366
+ @property
367
+ @pulumi.getter(name="operatingSystem")
368
+ def operating_system(self) -> Optional[str]:
369
+ """
370
+ The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
371
+ """
372
+ return pulumi.get(self, "operating_system")
373
+
354
374
 
355
375
  @pulumi.output_type
356
376
  class DesktopPoolNetworkConfiguration(dict):
@@ -377,8 +397,8 @@ class DesktopPoolNetworkConfiguration(dict):
377
397
  subnet_id: str,
378
398
  vcn_id: str):
379
399
  """
380
- :param str subnet_id: The OCID of the subnet to use for the desktop pool.
381
- :param str vcn_id: The OCID of the VCN used by the desktop pool.
400
+ :param 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.
401
+ :param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
382
402
  """
383
403
  pulumi.set(__self__, "subnet_id", subnet_id)
384
404
  pulumi.set(__self__, "vcn_id", vcn_id)
@@ -387,7 +407,7 @@ class DesktopPoolNetworkConfiguration(dict):
387
407
  @pulumi.getter(name="subnetId")
388
408
  def subnet_id(self) -> str:
389
409
  """
390
- The OCID of the subnet to use for the desktop pool.
410
+ 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.
391
411
  """
392
412
  return pulumi.get(self, "subnet_id")
393
413
 
@@ -395,11 +415,170 @@ class DesktopPoolNetworkConfiguration(dict):
395
415
  @pulumi.getter(name="vcnId")
396
416
  def vcn_id(self) -> str:
397
417
  """
398
- The OCID of the VCN used by the desktop pool.
418
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
419
+ """
420
+ return pulumi.get(self, "vcn_id")
421
+
422
+
423
+ @pulumi.output_type
424
+ class DesktopPoolPrivateAccessDetails(dict):
425
+ @staticmethod
426
+ def __key_warning(key: str):
427
+ suggest = None
428
+ if key == "subnetId":
429
+ suggest = "subnet_id"
430
+ elif key == "endpointFqdn":
431
+ suggest = "endpoint_fqdn"
432
+ elif key == "nsgIds":
433
+ suggest = "nsg_ids"
434
+ elif key == "privateIp":
435
+ suggest = "private_ip"
436
+ elif key == "vcnId":
437
+ suggest = "vcn_id"
438
+
439
+ if suggest:
440
+ pulumi.log.warn(f"Key '{key}' not found in DesktopPoolPrivateAccessDetails. Access the value via the '{suggest}' property getter instead.")
441
+
442
+ def __getitem__(self, key: str) -> Any:
443
+ DesktopPoolPrivateAccessDetails.__key_warning(key)
444
+ return super().__getitem__(key)
445
+
446
+ def get(self, key: str, default = None) -> Any:
447
+ DesktopPoolPrivateAccessDetails.__key_warning(key)
448
+ return super().get(key, default)
449
+
450
+ def __init__(__self__, *,
451
+ subnet_id: str,
452
+ endpoint_fqdn: Optional[str] = None,
453
+ nsg_ids: Optional[Sequence[str]] = None,
454
+ private_ip: Optional[str] = None,
455
+ vcn_id: Optional[str] = None):
456
+ """
457
+ :param 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.
458
+ :param 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).
459
+ :param Sequence[str] nsg_ids: A list of network security groups for the private access.
460
+ :param 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.
461
+ :param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
462
+ """
463
+ pulumi.set(__self__, "subnet_id", subnet_id)
464
+ if endpoint_fqdn is not None:
465
+ pulumi.set(__self__, "endpoint_fqdn", endpoint_fqdn)
466
+ if nsg_ids is not None:
467
+ pulumi.set(__self__, "nsg_ids", nsg_ids)
468
+ if private_ip is not None:
469
+ pulumi.set(__self__, "private_ip", private_ip)
470
+ if vcn_id is not None:
471
+ pulumi.set(__self__, "vcn_id", vcn_id)
472
+
473
+ @property
474
+ @pulumi.getter(name="subnetId")
475
+ def subnet_id(self) -> str:
476
+ """
477
+ 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.
478
+ """
479
+ return pulumi.get(self, "subnet_id")
480
+
481
+ @property
482
+ @pulumi.getter(name="endpointFqdn")
483
+ def endpoint_fqdn(self) -> Optional[str]:
484
+ """
485
+ 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).
486
+ """
487
+ return pulumi.get(self, "endpoint_fqdn")
488
+
489
+ @property
490
+ @pulumi.getter(name="nsgIds")
491
+ def nsg_ids(self) -> Optional[Sequence[str]]:
492
+ """
493
+ A list of network security groups for the private access.
494
+ """
495
+ return pulumi.get(self, "nsg_ids")
496
+
497
+ @property
498
+ @pulumi.getter(name="privateIp")
499
+ def private_ip(self) -> Optional[str]:
500
+ """
501
+ 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.
502
+ """
503
+ return pulumi.get(self, "private_ip")
504
+
505
+ @property
506
+ @pulumi.getter(name="vcnId")
507
+ def vcn_id(self) -> Optional[str]:
508
+ """
509
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
399
510
  """
400
511
  return pulumi.get(self, "vcn_id")
401
512
 
402
513
 
514
+ @pulumi.output_type
515
+ class DesktopPoolShapeConfig(dict):
516
+ @staticmethod
517
+ def __key_warning(key: str):
518
+ suggest = None
519
+ if key == "baselineOcpuUtilization":
520
+ suggest = "baseline_ocpu_utilization"
521
+ elif key == "memoryInGbs":
522
+ suggest = "memory_in_gbs"
523
+
524
+ if suggest:
525
+ pulumi.log.warn(f"Key '{key}' not found in DesktopPoolShapeConfig. Access the value via the '{suggest}' property getter instead.")
526
+
527
+ def __getitem__(self, key: str) -> Any:
528
+ DesktopPoolShapeConfig.__key_warning(key)
529
+ return super().__getitem__(key)
530
+
531
+ def get(self, key: str, default = None) -> Any:
532
+ DesktopPoolShapeConfig.__key_warning(key)
533
+ return super().get(key, default)
534
+
535
+ def __init__(__self__, *,
536
+ baseline_ocpu_utilization: Optional[str] = None,
537
+ memory_in_gbs: Optional[str] = None,
538
+ ocpus: Optional[str] = None):
539
+ """
540
+ :param 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:
541
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
542
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
543
+ * `BASELINE_1_1` - baseline usage is the entire OCPU. This represents a non-burstable instance.
544
+ :param str memory_in_gbs: The total amount of memory available in gigabytes for each desktop compute instance in the desktop pool.
545
+ :param str ocpus: The total number of OCPUs available for each desktop compute instance in the desktop pool.
546
+ """
547
+ if baseline_ocpu_utilization is not None:
548
+ pulumi.set(__self__, "baseline_ocpu_utilization", baseline_ocpu_utilization)
549
+ if memory_in_gbs is not None:
550
+ pulumi.set(__self__, "memory_in_gbs", memory_in_gbs)
551
+ if ocpus is not None:
552
+ pulumi.set(__self__, "ocpus", ocpus)
553
+
554
+ @property
555
+ @pulumi.getter(name="baselineOcpuUtilization")
556
+ def baseline_ocpu_utilization(self) -> Optional[str]:
557
+ """
558
+ 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:
559
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
560
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
561
+ * `BASELINE_1_1` - baseline usage is the entire OCPU. This represents a non-burstable instance.
562
+ """
563
+ return pulumi.get(self, "baseline_ocpu_utilization")
564
+
565
+ @property
566
+ @pulumi.getter(name="memoryInGbs")
567
+ def memory_in_gbs(self) -> Optional[str]:
568
+ """
569
+ The total amount of memory available in gigabytes for each desktop compute instance in the desktop pool.
570
+ """
571
+ return pulumi.get(self, "memory_in_gbs")
572
+
573
+ @property
574
+ @pulumi.getter
575
+ def ocpus(self) -> Optional[str]:
576
+ """
577
+ The total number of OCPUs available for each desktop compute instance in the desktop pool.
578
+ """
579
+ return pulumi.get(self, "ocpus")
580
+
581
+
403
582
  @pulumi.output_type
404
583
  class GetDesktopDevicePolicyResult(dict):
405
584
  def __init__(__self__, *,
@@ -517,13 +696,16 @@ class GetDesktopHostingOptionResult(dict):
517
696
  class GetDesktopHostingOptionImageResult(dict):
518
697
  def __init__(__self__, *,
519
698
  image_id: str,
520
- image_name: str):
699
+ image_name: str,
700
+ operating_system: str):
521
701
  """
522
702
  :param str image_id: The OCID of the desktop image.
523
703
  :param str image_name: The name of the desktop image.
704
+ :param str operating_system: The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
524
705
  """
525
706
  pulumi.set(__self__, "image_id", image_id)
526
707
  pulumi.set(__self__, "image_name", image_name)
708
+ pulumi.set(__self__, "operating_system", operating_system)
527
709
 
528
710
  @property
529
711
  @pulumi.getter(name="imageId")
@@ -541,6 +723,14 @@ class GetDesktopHostingOptionImageResult(dict):
541
723
  """
542
724
  return pulumi.get(self, "image_name")
543
725
 
726
+ @property
727
+ @pulumi.getter(name="operatingSystem")
728
+ def operating_system(self) -> str:
729
+ """
730
+ The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
731
+ """
732
+ return pulumi.get(self, "operating_system")
733
+
544
734
 
545
735
  @pulumi.output_type
546
736
  class GetDesktopPoolAvailabilityPolicyResult(dict):
@@ -857,13 +1047,16 @@ class GetDesktopPoolDevicePolicyResult(dict):
857
1047
  class GetDesktopPoolImageResult(dict):
858
1048
  def __init__(__self__, *,
859
1049
  image_id: str,
860
- image_name: str):
1050
+ image_name: str,
1051
+ operating_system: str):
861
1052
  """
862
1053
  :param str image_id: The OCID of the desktop image.
863
1054
  :param str image_name: The name of the desktop image.
1055
+ :param str operating_system: The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
864
1056
  """
865
1057
  pulumi.set(__self__, "image_id", image_id)
866
1058
  pulumi.set(__self__, "image_name", image_name)
1059
+ pulumi.set(__self__, "operating_system", operating_system)
867
1060
 
868
1061
  @property
869
1062
  @pulumi.getter(name="imageId")
@@ -881,6 +1074,14 @@ class GetDesktopPoolImageResult(dict):
881
1074
  """
882
1075
  return pulumi.get(self, "image_name")
883
1076
 
1077
+ @property
1078
+ @pulumi.getter(name="operatingSystem")
1079
+ def operating_system(self) -> str:
1080
+ """
1081
+ The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
1082
+ """
1083
+ return pulumi.get(self, "operating_system")
1084
+
884
1085
 
885
1086
  @pulumi.output_type
886
1087
  class GetDesktopPoolNetworkConfigurationResult(dict):
@@ -888,17 +1089,79 @@ class GetDesktopPoolNetworkConfigurationResult(dict):
888
1089
  subnet_id: str,
889
1090
  vcn_id: str):
890
1091
  """
891
- :param str subnet_id: The OCID of the subnet to use for the desktop pool.
892
- :param str vcn_id: The OCID of the VCN used by the desktop pool.
1092
+ :param 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.
1093
+ :param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
1094
+ """
1095
+ pulumi.set(__self__, "subnet_id", subnet_id)
1096
+ pulumi.set(__self__, "vcn_id", vcn_id)
1097
+
1098
+ @property
1099
+ @pulumi.getter(name="subnetId")
1100
+ def subnet_id(self) -> str:
1101
+ """
1102
+ 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.
1103
+ """
1104
+ return pulumi.get(self, "subnet_id")
1105
+
1106
+ @property
1107
+ @pulumi.getter(name="vcnId")
1108
+ def vcn_id(self) -> str:
1109
+ """
1110
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
1111
+ """
1112
+ return pulumi.get(self, "vcn_id")
1113
+
1114
+
1115
+ @pulumi.output_type
1116
+ class GetDesktopPoolPrivateAccessDetailResult(dict):
1117
+ def __init__(__self__, *,
1118
+ endpoint_fqdn: str,
1119
+ nsg_ids: Sequence[str],
1120
+ private_ip: str,
1121
+ subnet_id: str,
1122
+ vcn_id: str):
1123
+ """
1124
+ :param 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).
1125
+ :param Sequence[str] nsg_ids: A list of network security groups for the private access.
1126
+ :param 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.
1127
+ :param 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.
1128
+ :param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
893
1129
  """
1130
+ pulumi.set(__self__, "endpoint_fqdn", endpoint_fqdn)
1131
+ pulumi.set(__self__, "nsg_ids", nsg_ids)
1132
+ pulumi.set(__self__, "private_ip", private_ip)
894
1133
  pulumi.set(__self__, "subnet_id", subnet_id)
895
1134
  pulumi.set(__self__, "vcn_id", vcn_id)
896
1135
 
1136
+ @property
1137
+ @pulumi.getter(name="endpointFqdn")
1138
+ def endpoint_fqdn(self) -> str:
1139
+ """
1140
+ 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).
1141
+ """
1142
+ return pulumi.get(self, "endpoint_fqdn")
1143
+
1144
+ @property
1145
+ @pulumi.getter(name="nsgIds")
1146
+ def nsg_ids(self) -> Sequence[str]:
1147
+ """
1148
+ A list of network security groups for the private access.
1149
+ """
1150
+ return pulumi.get(self, "nsg_ids")
1151
+
1152
+ @property
1153
+ @pulumi.getter(name="privateIp")
1154
+ def private_ip(self) -> str:
1155
+ """
1156
+ 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.
1157
+ """
1158
+ return pulumi.get(self, "private_ip")
1159
+
897
1160
  @property
898
1161
  @pulumi.getter(name="subnetId")
899
1162
  def subnet_id(self) -> str:
900
1163
  """
901
- The OCID of the subnet to use for the desktop pool.
1164
+ 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.
902
1165
  """
903
1166
  return pulumi.get(self, "subnet_id")
904
1167
 
@@ -906,11 +1169,57 @@ class GetDesktopPoolNetworkConfigurationResult(dict):
906
1169
  @pulumi.getter(name="vcnId")
907
1170
  def vcn_id(self) -> str:
908
1171
  """
909
- The OCID of the VCN used by the desktop pool.
1172
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
910
1173
  """
911
1174
  return pulumi.get(self, "vcn_id")
912
1175
 
913
1176
 
1177
+ @pulumi.output_type
1178
+ class GetDesktopPoolShapeConfigResult(dict):
1179
+ def __init__(__self__, *,
1180
+ baseline_ocpu_utilization: str,
1181
+ memory_in_gbs: str,
1182
+ ocpus: str):
1183
+ """
1184
+ :param 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:
1185
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
1186
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
1187
+ * `BASELINE_1_1` - baseline usage is the entire OCPU. This represents a non-burstable instance.
1188
+ :param str memory_in_gbs: The total amount of memory available in gigabytes for each desktop compute instance in the desktop pool.
1189
+ :param str ocpus: The total number of OCPUs available for each desktop compute instance in the desktop pool.
1190
+ """
1191
+ pulumi.set(__self__, "baseline_ocpu_utilization", baseline_ocpu_utilization)
1192
+ pulumi.set(__self__, "memory_in_gbs", memory_in_gbs)
1193
+ pulumi.set(__self__, "ocpus", ocpus)
1194
+
1195
+ @property
1196
+ @pulumi.getter(name="baselineOcpuUtilization")
1197
+ def baseline_ocpu_utilization(self) -> str:
1198
+ """
1199
+ 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:
1200
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
1201
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
1202
+ * `BASELINE_1_1` - baseline usage is the entire OCPU. This represents a non-burstable instance.
1203
+ """
1204
+ return pulumi.get(self, "baseline_ocpu_utilization")
1205
+
1206
+ @property
1207
+ @pulumi.getter(name="memoryInGbs")
1208
+ def memory_in_gbs(self) -> str:
1209
+ """
1210
+ The total amount of memory available in gigabytes for each desktop compute instance in the desktop pool.
1211
+ """
1212
+ return pulumi.get(self, "memory_in_gbs")
1213
+
1214
+ @property
1215
+ @pulumi.getter
1216
+ def ocpus(self) -> str:
1217
+ """
1218
+ The total number of OCPUs available for each desktop compute instance in the desktop pool.
1219
+ """
1220
+ return pulumi.get(self, "ocpus")
1221
+
1222
+
914
1223
  @pulumi.output_type
915
1224
  class GetDesktopPoolVolumesDesktopPoolVolumeCollectionResult(dict):
916
1225
  def __init__(__self__, *,
@@ -1089,6 +1398,8 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
1089
1398
  maximum_size: int,
1090
1399
  network_configurations: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult'],
1091
1400
  nsg_ids: Sequence[str],
1401
+ private_access_details: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemPrivateAccessDetailResult'],
1402
+ shape_configs: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemShapeConfigResult'],
1092
1403
  shape_name: str,
1093
1404
  standby_size: int,
1094
1405
  state: str,
@@ -1096,7 +1407,8 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
1096
1407
  storage_size_in_gbs: int,
1097
1408
  time_created: str,
1098
1409
  time_start_scheduled: str,
1099
- time_stop_scheduled: str):
1410
+ time_stop_scheduled: str,
1411
+ use_dedicated_vm_host: str):
1100
1412
  """
1101
1413
  :param int active_desktops: The number of active desktops in the desktop pool.
1102
1414
  :param bool are_privileged_users: Indicates whether desktop pool users have administrative privileges on their desktop.
@@ -1114,7 +1426,9 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
1114
1426
  :param bool is_storage_enabled: Indicates whether storage is enabled for the desktop pool.
1115
1427
  :param int maximum_size: The maximum number of desktops permitted in the desktop pool.
1116
1428
  :param Sequence['GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationArgs'] network_configurations: Provides information about the network configuration of the desktop pool.
1117
- :param Sequence[str] nsg_ids: A list of network security groups for the desktop pool.
1429
+ :param Sequence[str] nsg_ids: A list of network security groups for the private access.
1430
+ :param Sequence['GetDesktopPoolsDesktopPoolCollectionItemPrivateAccessDetailArgs'] private_access_details: The details of the desktop's private access network connectivity that were used to create the pool.
1431
+ :param Sequence['GetDesktopPoolsDesktopPoolCollectionItemShapeConfigArgs'] shape_configs: The shape configuration used for each desktop compute instance in the desktop pool.
1118
1432
  :param str shape_name: The shape of the desktop pool.
1119
1433
  :param int standby_size: The maximum number of standby desktops available in the desktop pool.
1120
1434
  :param str state: A filter to return only results with the given lifecycleState.
@@ -1123,6 +1437,7 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
1123
1437
  :param str time_created: The date and time the resource was created.
1124
1438
  :param str time_start_scheduled: The start time of the desktop pool.
1125
1439
  :param str time_stop_scheduled: The stop time of the desktop pool.
1440
+ :param str use_dedicated_vm_host: Indicates whether the desktop pool uses dedicated virtual machine hosts.
1126
1441
  """
1127
1442
  pulumi.set(__self__, "active_desktops", active_desktops)
1128
1443
  pulumi.set(__self__, "are_privileged_users", are_privileged_users)
@@ -1141,6 +1456,8 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
1141
1456
  pulumi.set(__self__, "maximum_size", maximum_size)
1142
1457
  pulumi.set(__self__, "network_configurations", network_configurations)
1143
1458
  pulumi.set(__self__, "nsg_ids", nsg_ids)
1459
+ pulumi.set(__self__, "private_access_details", private_access_details)
1460
+ pulumi.set(__self__, "shape_configs", shape_configs)
1144
1461
  pulumi.set(__self__, "shape_name", shape_name)
1145
1462
  pulumi.set(__self__, "standby_size", standby_size)
1146
1463
  pulumi.set(__self__, "state", state)
@@ -1149,6 +1466,7 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
1149
1466
  pulumi.set(__self__, "time_created", time_created)
1150
1467
  pulumi.set(__self__, "time_start_scheduled", time_start_scheduled)
1151
1468
  pulumi.set(__self__, "time_stop_scheduled", time_stop_scheduled)
1469
+ pulumi.set(__self__, "use_dedicated_vm_host", use_dedicated_vm_host)
1152
1470
 
1153
1471
  @property
1154
1472
  @pulumi.getter(name="activeDesktops")
@@ -1282,10 +1600,26 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
1282
1600
  @pulumi.getter(name="nsgIds")
1283
1601
  def nsg_ids(self) -> Sequence[str]:
1284
1602
  """
1285
- A list of network security groups for the desktop pool.
1603
+ A list of network security groups for the private access.
1286
1604
  """
1287
1605
  return pulumi.get(self, "nsg_ids")
1288
1606
 
1607
+ @property
1608
+ @pulumi.getter(name="privateAccessDetails")
1609
+ def private_access_details(self) -> Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemPrivateAccessDetailResult']:
1610
+ """
1611
+ The details of the desktop's private access network connectivity that were used to create the pool.
1612
+ """
1613
+ return pulumi.get(self, "private_access_details")
1614
+
1615
+ @property
1616
+ @pulumi.getter(name="shapeConfigs")
1617
+ def shape_configs(self) -> Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemShapeConfigResult']:
1618
+ """
1619
+ The shape configuration used for each desktop compute instance in the desktop pool.
1620
+ """
1621
+ return pulumi.get(self, "shape_configs")
1622
+
1289
1623
  @property
1290
1624
  @pulumi.getter(name="shapeName")
1291
1625
  def shape_name(self) -> str:
@@ -1350,6 +1684,14 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
1350
1684
  """
1351
1685
  return pulumi.get(self, "time_stop_scheduled")
1352
1686
 
1687
+ @property
1688
+ @pulumi.getter(name="useDedicatedVmHost")
1689
+ def use_dedicated_vm_host(self) -> str:
1690
+ """
1691
+ Indicates whether the desktop pool uses dedicated virtual machine hosts.
1692
+ """
1693
+ return pulumi.get(self, "use_dedicated_vm_host")
1694
+
1353
1695
 
1354
1696
  @pulumi.output_type
1355
1697
  class GetDesktopPoolsDesktopPoolCollectionItemAvailabilityPolicyResult(dict):
@@ -1526,13 +1868,16 @@ class GetDesktopPoolsDesktopPoolCollectionItemDevicePolicyResult(dict):
1526
1868
  class GetDesktopPoolsDesktopPoolCollectionItemImageResult(dict):
1527
1869
  def __init__(__self__, *,
1528
1870
  image_id: str,
1529
- image_name: str):
1871
+ image_name: str,
1872
+ operating_system: str):
1530
1873
  """
1531
1874
  :param str image_id: The OCID of the desktop image.
1532
1875
  :param str image_name: The name of the desktop image.
1876
+ :param str operating_system: The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
1533
1877
  """
1534
1878
  pulumi.set(__self__, "image_id", image_id)
1535
1879
  pulumi.set(__self__, "image_name", image_name)
1880
+ pulumi.set(__self__, "operating_system", operating_system)
1536
1881
 
1537
1882
  @property
1538
1883
  @pulumi.getter(name="imageId")
@@ -1550,6 +1895,14 @@ class GetDesktopPoolsDesktopPoolCollectionItemImageResult(dict):
1550
1895
  """
1551
1896
  return pulumi.get(self, "image_name")
1552
1897
 
1898
+ @property
1899
+ @pulumi.getter(name="operatingSystem")
1900
+ def operating_system(self) -> str:
1901
+ """
1902
+ The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
1903
+ """
1904
+ return pulumi.get(self, "operating_system")
1905
+
1553
1906
 
1554
1907
  @pulumi.output_type
1555
1908
  class GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult(dict):
@@ -1557,8 +1910,8 @@ class GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult(dict):
1557
1910
  subnet_id: str,
1558
1911
  vcn_id: str):
1559
1912
  """
1560
- :param str subnet_id: The OCID of the subnet to use for the desktop pool.
1561
- :param str vcn_id: The OCID of the VCN used by the desktop pool.
1913
+ :param 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.
1914
+ :param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
1562
1915
  """
1563
1916
  pulumi.set(__self__, "subnet_id", subnet_id)
1564
1917
  pulumi.set(__self__, "vcn_id", vcn_id)
@@ -1567,7 +1920,7 @@ class GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult(dict):
1567
1920
  @pulumi.getter(name="subnetId")
1568
1921
  def subnet_id(self) -> str:
1569
1922
  """
1570
- The OCID of the subnet to use for the desktop pool.
1923
+ 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.
1571
1924
  """
1572
1925
  return pulumi.get(self, "subnet_id")
1573
1926
 
@@ -1575,11 +1928,119 @@ class GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult(dict):
1575
1928
  @pulumi.getter(name="vcnId")
1576
1929
  def vcn_id(self) -> str:
1577
1930
  """
1578
- The OCID of the VCN used by the desktop pool.
1931
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
1579
1932
  """
1580
1933
  return pulumi.get(self, "vcn_id")
1581
1934
 
1582
1935
 
1936
+ @pulumi.output_type
1937
+ class GetDesktopPoolsDesktopPoolCollectionItemPrivateAccessDetailResult(dict):
1938
+ def __init__(__self__, *,
1939
+ endpoint_fqdn: str,
1940
+ nsg_ids: Sequence[str],
1941
+ private_ip: str,
1942
+ subnet_id: str,
1943
+ vcn_id: str):
1944
+ """
1945
+ :param 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).
1946
+ :param Sequence[str] nsg_ids: A list of network security groups for the private access.
1947
+ :param 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.
1948
+ :param 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.
1949
+ :param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
1950
+ """
1951
+ pulumi.set(__self__, "endpoint_fqdn", endpoint_fqdn)
1952
+ pulumi.set(__self__, "nsg_ids", nsg_ids)
1953
+ pulumi.set(__self__, "private_ip", private_ip)
1954
+ pulumi.set(__self__, "subnet_id", subnet_id)
1955
+ pulumi.set(__self__, "vcn_id", vcn_id)
1956
+
1957
+ @property
1958
+ @pulumi.getter(name="endpointFqdn")
1959
+ def endpoint_fqdn(self) -> str:
1960
+ """
1961
+ 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).
1962
+ """
1963
+ return pulumi.get(self, "endpoint_fqdn")
1964
+
1965
+ @property
1966
+ @pulumi.getter(name="nsgIds")
1967
+ def nsg_ids(self) -> Sequence[str]:
1968
+ """
1969
+ A list of network security groups for the private access.
1970
+ """
1971
+ return pulumi.get(self, "nsg_ids")
1972
+
1973
+ @property
1974
+ @pulumi.getter(name="privateIp")
1975
+ def private_ip(self) -> str:
1976
+ """
1977
+ 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.
1978
+ """
1979
+ return pulumi.get(self, "private_ip")
1980
+
1981
+ @property
1982
+ @pulumi.getter(name="subnetId")
1983
+ def subnet_id(self) -> str:
1984
+ """
1985
+ 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.
1986
+ """
1987
+ return pulumi.get(self, "subnet_id")
1988
+
1989
+ @property
1990
+ @pulumi.getter(name="vcnId")
1991
+ def vcn_id(self) -> str:
1992
+ """
1993
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
1994
+ """
1995
+ return pulumi.get(self, "vcn_id")
1996
+
1997
+
1998
+ @pulumi.output_type
1999
+ class GetDesktopPoolsDesktopPoolCollectionItemShapeConfigResult(dict):
2000
+ def __init__(__self__, *,
2001
+ baseline_ocpu_utilization: str,
2002
+ memory_in_gbs: str,
2003
+ ocpus: str):
2004
+ """
2005
+ :param 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:
2006
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
2007
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
2008
+ * `BASELINE_1_1` - baseline usage is the entire OCPU. This represents a non-burstable instance.
2009
+ :param str memory_in_gbs: The total amount of memory available in gigabytes for each desktop compute instance in the desktop pool.
2010
+ :param str ocpus: The total number of OCPUs available for each desktop compute instance in the desktop pool.
2011
+ """
2012
+ pulumi.set(__self__, "baseline_ocpu_utilization", baseline_ocpu_utilization)
2013
+ pulumi.set(__self__, "memory_in_gbs", memory_in_gbs)
2014
+ pulumi.set(__self__, "ocpus", ocpus)
2015
+
2016
+ @property
2017
+ @pulumi.getter(name="baselineOcpuUtilization")
2018
+ def baseline_ocpu_utilization(self) -> str:
2019
+ """
2020
+ 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:
2021
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
2022
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
2023
+ * `BASELINE_1_1` - baseline usage is the entire OCPU. This represents a non-burstable instance.
2024
+ """
2025
+ return pulumi.get(self, "baseline_ocpu_utilization")
2026
+
2027
+ @property
2028
+ @pulumi.getter(name="memoryInGbs")
2029
+ def memory_in_gbs(self) -> str:
2030
+ """
2031
+ The total amount of memory available in gigabytes for each desktop compute instance in the desktop pool.
2032
+ """
2033
+ return pulumi.get(self, "memory_in_gbs")
2034
+
2035
+ @property
2036
+ @pulumi.getter
2037
+ def ocpus(self) -> str:
2038
+ """
2039
+ The total number of OCPUs available for each desktop compute instance in the desktop pool.
2040
+ """
2041
+ return pulumi.get(self, "ocpus")
2042
+
2043
+
1583
2044
  @pulumi.output_type
1584
2045
  class GetDesktopPoolsFilterResult(dict):
1585
2046
  def __init__(__self__, *,