pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.13.0__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 (220) hide show
  1. pulumi_oci/__init__.py +169 -19
  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/containerengine/_inputs.py +341 -0
  6. pulumi_oci/containerengine/cluster.py +64 -0
  7. pulumi_oci/containerengine/get_cluster.py +12 -1
  8. pulumi_oci/containerengine/outputs.py +582 -0
  9. pulumi_oci/core/_inputs.py +947 -196
  10. pulumi_oci/core/boot_volume.py +90 -5
  11. pulumi_oci/core/cluster_network.py +7 -7
  12. pulumi_oci/core/get_block_volume_replica.py +15 -1
  13. pulumi_oci/core/get_boot_volume.py +15 -4
  14. pulumi_oci/core/get_boot_volume_replica.py +15 -1
  15. pulumi_oci/core/get_instance.py +29 -1
  16. pulumi_oci/core/get_vcn.py +15 -1
  17. pulumi_oci/core/get_vnic.py +15 -1
  18. pulumi_oci/core/get_volume.py +18 -4
  19. pulumi_oci/core/instance.py +87 -0
  20. pulumi_oci/core/instance_configuration.py +16 -0
  21. pulumi_oci/core/ipsec.py +183 -23
  22. pulumi_oci/core/network_security_group_security_rule.py +2 -2
  23. pulumi_oci/core/outputs.py +1282 -153
  24. pulumi_oci/core/service_gateway.py +13 -7
  25. pulumi_oci/core/vcn.py +65 -23
  26. pulumi_oci/core/virtual_network.py +35 -1
  27. pulumi_oci/core/vnic_attachment.py +2 -0
  28. pulumi_oci/core/volume.py +110 -12
  29. pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
  30. pulumi_oci/core/volume_group.py +56 -5
  31. pulumi_oci/database/_inputs.py +905 -27
  32. pulumi_oci/database/autonomous_database.py +48 -28
  33. pulumi_oci/database/autonomous_database_backup.py +12 -12
  34. pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
  35. pulumi_oci/database/autonomous_vm_cluster.py +2 -0
  36. pulumi_oci/database/backup.py +12 -12
  37. pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
  38. pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
  39. pulumi_oci/database/cloud_vm_cluster.py +71 -0
  40. pulumi_oci/database/database.py +15 -15
  41. pulumi_oci/database/database_upgrade.py +12 -12
  42. pulumi_oci/database/db_system.py +9 -9
  43. pulumi_oci/database/exadata_infrastructure.py +2 -0
  44. pulumi_oci/database/get_autonomous_container_database.py +1 -1
  45. pulumi_oci/database/get_autonomous_database.py +18 -4
  46. pulumi_oci/database/get_autonomous_database_backup.py +3 -3
  47. pulumi_oci/database/get_autonomous_databases.py +88 -5
  48. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  49. pulumi_oci/database/get_database.py +3 -3
  50. pulumi_oci/database/get_pluggable_database.py +12 -1
  51. pulumi_oci/database/get_vm_cluster.py +15 -1
  52. pulumi_oci/database/outputs.py +1431 -74
  53. pulumi_oci/database/pluggable_database.py +34 -0
  54. pulumi_oci/database/vm_cluster.py +71 -0
  55. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  56. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  57. pulumi_oci/datasafe/__init__.py +13 -0
  58. pulumi_oci/datasafe/_inputs.py +441 -0
  59. pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
  60. pulumi_oci/datasafe/get_reports.py +23 -1
  61. pulumi_oci/datasafe/get_sql_collection.py +392 -0
  62. pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
  63. pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
  64. pulumi_oci/datasafe/get_sql_collections.py +364 -0
  65. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
  66. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
  67. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
  68. pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
  69. pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
  70. pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
  71. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
  72. pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
  73. pulumi_oci/datasafe/outputs.py +1808 -2
  74. pulumi_oci/desktops/_inputs.py +395 -17
  75. pulumi_oci/desktops/desktop_pool.py +253 -21
  76. pulumi_oci/desktops/get_desktop_pool.py +62 -5
  77. pulumi_oci/desktops/outputs.py +807 -25
  78. pulumi_oci/dns/__init__.py +2 -0
  79. pulumi_oci/dns/_inputs.py +1157 -12
  80. pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
  81. pulumi_oci/dns/get_records.py +45 -13
  82. pulumi_oci/dns/get_resolver.py +8 -6
  83. pulumi_oci/dns/get_resolver_endpoint.py +8 -6
  84. pulumi_oci/dns/get_resolver_endpoints.py +2 -2
  85. pulumi_oci/dns/get_resolvers.py +12 -12
  86. pulumi_oci/dns/get_rrset.py +16 -16
  87. pulumi_oci/dns/get_rrsets.py +12 -10
  88. pulumi_oci/dns/get_view.py +8 -4
  89. pulumi_oci/dns/get_views.py +12 -12
  90. pulumi_oci/dns/get_zones.py +33 -13
  91. pulumi_oci/dns/outputs.py +1388 -79
  92. pulumi_oci/dns/record.py +12 -12
  93. pulumi_oci/dns/resolver.py +7 -7
  94. pulumi_oci/dns/resolver_endpoint.py +2 -2
  95. pulumi_oci/dns/rrset.py +50 -41
  96. pulumi_oci/dns/zone.py +176 -17
  97. pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
  98. pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
  99. pulumi_oci/fleetappsmanagement/__init__.py +43 -0
  100. pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
  101. pulumi_oci/fleetappsmanagement/fleet.py +955 -0
  102. pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
  103. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  104. pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
  105. pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
  106. pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
  107. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
  108. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
  109. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
  110. pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
  111. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
  112. pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
  113. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
  114. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
  115. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
  116. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  117. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
  118. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
  119. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
  120. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
  121. pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
  122. pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
  123. pulumi_oci/fleetappsmanagement/get_property.py +323 -0
  124. pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
  125. pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
  126. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
  127. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
  128. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
  129. pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
  130. pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
  131. pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
  132. pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
  133. pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
  134. pulumi_oci/fleetappsmanagement/property.py +697 -0
  135. pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
  136. pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
  137. pulumi_oci/functions/outputs.py +11 -0
  138. pulumi_oci/fusionapps/_inputs.py +21 -20
  139. pulumi_oci/fusionapps/fusion_environment.py +2 -2
  140. pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
  141. pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
  142. pulumi_oci/fusionapps/outputs.py +11 -10
  143. pulumi_oci/goldengate/__init__.py +1 -0
  144. pulumi_oci/goldengate/_inputs.py +165 -0
  145. pulumi_oci/goldengate/connection.py +49 -35
  146. pulumi_oci/goldengate/database_registration.py +7 -7
  147. pulumi_oci/goldengate/deployment.py +79 -4
  148. pulumi_oci/goldengate/get_deployment.py +30 -2
  149. pulumi_oci/goldengate/get_deployment_environments.py +144 -0
  150. pulumi_oci/goldengate/outputs.py +409 -2
  151. pulumi_oci/integration/__init__.py +1 -0
  152. pulumi_oci/integration/_inputs.py +289 -2
  153. pulumi_oci/integration/get_integration_instance.py +65 -1
  154. pulumi_oci/integration/integration_instance.py +172 -0
  155. pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
  156. pulumi_oci/integration/outputs.py +587 -19
  157. pulumi_oci/loadbalancer/_inputs.py +20 -0
  158. pulumi_oci/loadbalancer/listener.py +4 -2
  159. pulumi_oci/loadbalancer/outputs.py +16 -2
  160. pulumi_oci/monitoring/_inputs.py +137 -16
  161. pulumi_oci/monitoring/alarm_suppression.py +164 -35
  162. pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
  163. pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
  164. pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
  165. pulumi_oci/monitoring/outputs.py +291 -18
  166. pulumi_oci/mysql/mysql_db_system.py +7 -7
  167. pulumi_oci/objectstorage/__init__.py +3 -0
  168. pulumi_oci/objectstorage/_inputs.py +97 -0
  169. pulumi_oci/objectstorage/get_object_versions.py +6 -6
  170. pulumi_oci/objectstorage/get_objects.py +6 -6
  171. pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
  172. pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
  173. pulumi_oci/objectstorage/outputs.py +258 -0
  174. pulumi_oci/objectstorage/private_endpoint.py +630 -0
  175. pulumi_oci/objectstorage/storage_object.py +7 -7
  176. pulumi_oci/opsi/_inputs.py +268 -114
  177. pulumi_oci/opsi/database_insight.py +162 -21
  178. pulumi_oci/opsi/exadata_insight.py +44 -0
  179. pulumi_oci/opsi/get_database_insight.py +40 -1
  180. pulumi_oci/opsi/get_host_insights.py +2 -2
  181. pulumi_oci/opsi/host_insight.py +0 -48
  182. pulumi_oci/opsi/outputs.py +405 -109
  183. pulumi_oci/pulumi-plugin.json +1 -1
  184. pulumi_oci/securityattribute/__init__.py +15 -0
  185. pulumi_oci/securityattribute/_inputs.py +209 -0
  186. pulumi_oci/securityattribute/get_security_attribute.py +262 -0
  187. pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
  188. pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
  189. pulumi_oci/securityattribute/get_security_attributes.py +169 -0
  190. pulumi_oci/securityattribute/outputs.py +466 -0
  191. pulumi_oci/securityattribute/security_attribute.py +588 -0
  192. pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
  193. pulumi_oci/stackmonitoring/__init__.py +5 -0
  194. pulumi_oci/stackmonitoring/_inputs.py +330 -0
  195. pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
  196. pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
  197. pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
  198. pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
  199. pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
  200. pulumi_oci/stackmonitoring/outputs.py +603 -0
  201. pulumi_oci/{globallydistributeddatabase → zpr}/__init__.py +5 -6
  202. pulumi_oci/zpr/_inputs.py +79 -0
  203. pulumi_oci/zpr/configuration.py +516 -0
  204. pulumi_oci/zpr/get_configuration.py +230 -0
  205. pulumi_oci/zpr/get_zpr_policies.py +191 -0
  206. pulumi_oci/zpr/get_zpr_policy.py +264 -0
  207. pulumi_oci/zpr/outputs.py +203 -0
  208. pulumi_oci/zpr/zpr_policy.py +614 -0
  209. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/METADATA +1 -1
  210. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/RECORD +212 -142
  211. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/WHEEL +1 -1
  212. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
  213. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
  214. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
  215. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
  216. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
  217. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
  218. pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
  219. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
  220. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/top_level.txt +0 -0
@@ -22,6 +22,11 @@ __all__ = [
22
22
  'DesktopPoolDevicePolicy',
23
23
  'DesktopPoolImage',
24
24
  'DesktopPoolNetworkConfiguration',
25
+ 'DesktopPoolPrivateAccessDetails',
26
+ 'DesktopPoolSessionLifecycleActions',
27
+ 'DesktopPoolSessionLifecycleActionsDisconnect',
28
+ 'DesktopPoolSessionLifecycleActionsInactivity',
29
+ 'DesktopPoolShapeConfig',
25
30
  'GetDesktopDevicePolicyResult',
26
31
  'GetDesktopHostingOptionResult',
27
32
  'GetDesktopHostingOptionImageResult',
@@ -34,6 +39,11 @@ __all__ = [
34
39
  'GetDesktopPoolDevicePolicyResult',
35
40
  'GetDesktopPoolImageResult',
36
41
  'GetDesktopPoolNetworkConfigurationResult',
42
+ 'GetDesktopPoolPrivateAccessDetailResult',
43
+ 'GetDesktopPoolSessionLifecycleActionResult',
44
+ 'GetDesktopPoolSessionLifecycleActionDisconnectResult',
45
+ 'GetDesktopPoolSessionLifecycleActionInactivityResult',
46
+ 'GetDesktopPoolShapeConfigResult',
37
47
  'GetDesktopPoolVolumesDesktopPoolVolumeCollectionResult',
38
48
  'GetDesktopPoolVolumesDesktopPoolVolumeCollectionItemResult',
39
49
  'GetDesktopPoolVolumesFilterResult',
@@ -45,6 +55,11 @@ __all__ = [
45
55
  'GetDesktopPoolsDesktopPoolCollectionItemDevicePolicyResult',
46
56
  'GetDesktopPoolsDesktopPoolCollectionItemImageResult',
47
57
  'GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult',
58
+ 'GetDesktopPoolsDesktopPoolCollectionItemPrivateAccessDetailResult',
59
+ 'GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionResult',
60
+ 'GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionDisconnectResult',
61
+ 'GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionInactivityResult',
62
+ 'GetDesktopPoolsDesktopPoolCollectionItemShapeConfigResult',
48
63
  'GetDesktopPoolsFilterResult',
49
64
  'GetDesktopsDesktopCollectionResult',
50
65
  'GetDesktopsDesktopCollectionItemResult',
@@ -73,18 +88,20 @@ class DesktopPoolAvailabilityPolicy(dict):
73
88
  return super().get(key, default)
74
89
 
75
90
  def __init__(__self__, *,
76
- start_schedule: 'outputs.DesktopPoolAvailabilityPolicyStartSchedule',
77
- stop_schedule: 'outputs.DesktopPoolAvailabilityPolicyStopSchedule'):
91
+ start_schedule: Optional['outputs.DesktopPoolAvailabilityPolicyStartSchedule'] = None,
92
+ stop_schedule: Optional['outputs.DesktopPoolAvailabilityPolicyStopSchedule'] = None):
78
93
  """
79
94
  :param 'DesktopPoolAvailabilityPolicyStartScheduleArgs' start_schedule: (Updatable) Provides the schedule information for a desktop.
80
95
  :param 'DesktopPoolAvailabilityPolicyStopScheduleArgs' stop_schedule: (Updatable) Provides the schedule information for a desktop.
81
96
  """
82
- pulumi.set(__self__, "start_schedule", start_schedule)
83
- pulumi.set(__self__, "stop_schedule", stop_schedule)
97
+ if start_schedule is not None:
98
+ pulumi.set(__self__, "start_schedule", start_schedule)
99
+ if stop_schedule is not None:
100
+ pulumi.set(__self__, "stop_schedule", stop_schedule)
84
101
 
85
102
  @property
86
103
  @pulumi.getter(name="startSchedule")
87
- def start_schedule(self) -> 'outputs.DesktopPoolAvailabilityPolicyStartSchedule':
104
+ def start_schedule(self) -> Optional['outputs.DesktopPoolAvailabilityPolicyStartSchedule']:
88
105
  """
89
106
  (Updatable) Provides the schedule information for a desktop.
90
107
  """
@@ -92,7 +109,7 @@ class DesktopPoolAvailabilityPolicy(dict):
92
109
 
93
110
  @property
94
111
  @pulumi.getter(name="stopSchedule")
95
- def stop_schedule(self) -> 'outputs.DesktopPoolAvailabilityPolicyStopSchedule':
112
+ def stop_schedule(self) -> Optional['outputs.DesktopPoolAvailabilityPolicyStopSchedule']:
96
113
  """
97
114
  (Updatable) Provides the schedule information for a desktop.
98
115
  """
@@ -313,6 +330,8 @@ class DesktopPoolImage(dict):
313
330
  suggest = "image_id"
314
331
  elif key == "imageName":
315
332
  suggest = "image_name"
333
+ elif key == "operatingSystem":
334
+ suggest = "operating_system"
316
335
 
317
336
  if suggest:
318
337
  pulumi.log.warn(f"Key '{key}' not found in DesktopPoolImage. Access the value via the '{suggest}' property getter instead.")
@@ -327,13 +346,17 @@ class DesktopPoolImage(dict):
327
346
 
328
347
  def __init__(__self__, *,
329
348
  image_id: str,
330
- image_name: str):
349
+ image_name: str,
350
+ operating_system: Optional[str] = None):
331
351
  """
332
352
  :param str image_id: The OCID of the desktop image.
333
353
  :param str image_name: The name of the desktop image.
354
+ :param str operating_system: The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
334
355
  """
335
356
  pulumi.set(__self__, "image_id", image_id)
336
357
  pulumi.set(__self__, "image_name", image_name)
358
+ if operating_system is not None:
359
+ pulumi.set(__self__, "operating_system", operating_system)
337
360
 
338
361
  @property
339
362
  @pulumi.getter(name="imageId")
@@ -351,6 +374,14 @@ class DesktopPoolImage(dict):
351
374
  """
352
375
  return pulumi.get(self, "image_name")
353
376
 
377
+ @property
378
+ @pulumi.getter(name="operatingSystem")
379
+ def operating_system(self) -> Optional[str]:
380
+ """
381
+ The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
382
+ """
383
+ return pulumi.get(self, "operating_system")
384
+
354
385
 
355
386
  @pulumi.output_type
356
387
  class DesktopPoolNetworkConfiguration(dict):
@@ -377,8 +408,8 @@ class DesktopPoolNetworkConfiguration(dict):
377
408
  subnet_id: str,
378
409
  vcn_id: str):
379
410
  """
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.
411
+ :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.
412
+ :param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
382
413
  """
383
414
  pulumi.set(__self__, "subnet_id", subnet_id)
384
415
  pulumi.set(__self__, "vcn_id", vcn_id)
@@ -387,7 +418,7 @@ class DesktopPoolNetworkConfiguration(dict):
387
418
  @pulumi.getter(name="subnetId")
388
419
  def subnet_id(self) -> str:
389
420
  """
390
- The OCID of the subnet to use for the desktop pool.
421
+ 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
422
  """
392
423
  return pulumi.get(self, "subnet_id")
393
424
 
@@ -395,11 +426,295 @@ class DesktopPoolNetworkConfiguration(dict):
395
426
  @pulumi.getter(name="vcnId")
396
427
  def vcn_id(self) -> str:
397
428
  """
398
- The OCID of the VCN used by the desktop pool.
429
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
399
430
  """
400
431
  return pulumi.get(self, "vcn_id")
401
432
 
402
433
 
434
+ @pulumi.output_type
435
+ class DesktopPoolPrivateAccessDetails(dict):
436
+ @staticmethod
437
+ def __key_warning(key: str):
438
+ suggest = None
439
+ if key == "subnetId":
440
+ suggest = "subnet_id"
441
+ elif key == "endpointFqdn":
442
+ suggest = "endpoint_fqdn"
443
+ elif key == "nsgIds":
444
+ suggest = "nsg_ids"
445
+ elif key == "privateIp":
446
+ suggest = "private_ip"
447
+ elif key == "vcnId":
448
+ suggest = "vcn_id"
449
+
450
+ if suggest:
451
+ pulumi.log.warn(f"Key '{key}' not found in DesktopPoolPrivateAccessDetails. Access the value via the '{suggest}' property getter instead.")
452
+
453
+ def __getitem__(self, key: str) -> Any:
454
+ DesktopPoolPrivateAccessDetails.__key_warning(key)
455
+ return super().__getitem__(key)
456
+
457
+ def get(self, key: str, default = None) -> Any:
458
+ DesktopPoolPrivateAccessDetails.__key_warning(key)
459
+ return super().get(key, default)
460
+
461
+ def __init__(__self__, *,
462
+ subnet_id: str,
463
+ endpoint_fqdn: Optional[str] = None,
464
+ nsg_ids: Optional[Sequence[str]] = None,
465
+ private_ip: Optional[str] = None,
466
+ vcn_id: Optional[str] = None):
467
+ """
468
+ :param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
469
+ :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).
470
+ :param Sequence[str] nsg_ids: A list of network security groups for the private access.
471
+ :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.
472
+ :param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
473
+ """
474
+ pulumi.set(__self__, "subnet_id", subnet_id)
475
+ if endpoint_fqdn is not None:
476
+ pulumi.set(__self__, "endpoint_fqdn", endpoint_fqdn)
477
+ if nsg_ids is not None:
478
+ pulumi.set(__self__, "nsg_ids", nsg_ids)
479
+ if private_ip is not None:
480
+ pulumi.set(__self__, "private_ip", private_ip)
481
+ if vcn_id is not None:
482
+ pulumi.set(__self__, "vcn_id", vcn_id)
483
+
484
+ @property
485
+ @pulumi.getter(name="subnetId")
486
+ def subnet_id(self) -> str:
487
+ """
488
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
489
+ """
490
+ return pulumi.get(self, "subnet_id")
491
+
492
+ @property
493
+ @pulumi.getter(name="endpointFqdn")
494
+ def endpoint_fqdn(self) -> Optional[str]:
495
+ """
496
+ 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
+ """
498
+ return pulumi.get(self, "endpoint_fqdn")
499
+
500
+ @property
501
+ @pulumi.getter(name="nsgIds")
502
+ def nsg_ids(self) -> Optional[Sequence[str]]:
503
+ """
504
+ A list of network security groups for the private access.
505
+ """
506
+ return pulumi.get(self, "nsg_ids")
507
+
508
+ @property
509
+ @pulumi.getter(name="privateIp")
510
+ def private_ip(self) -> Optional[str]:
511
+ """
512
+ 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.
513
+ """
514
+ return pulumi.get(self, "private_ip")
515
+
516
+ @property
517
+ @pulumi.getter(name="vcnId")
518
+ def vcn_id(self) -> Optional[str]:
519
+ """
520
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
521
+ """
522
+ return pulumi.get(self, "vcn_id")
523
+
524
+
525
+ @pulumi.output_type
526
+ class DesktopPoolSessionLifecycleActions(dict):
527
+ def __init__(__self__, *,
528
+ disconnect: Optional['outputs.DesktopPoolSessionLifecycleActionsDisconnect'] = None,
529
+ inactivity: Optional['outputs.DesktopPoolSessionLifecycleActionsInactivity'] = None):
530
+ """
531
+ :param 'DesktopPoolSessionLifecycleActionsDisconnectArgs' disconnect: (Updatable) Action and grace period for disconnect
532
+ :param 'DesktopPoolSessionLifecycleActionsInactivityArgs' inactivity: (Updatable) Action and grace period for inactivity
533
+ """
534
+ if disconnect is not None:
535
+ pulumi.set(__self__, "disconnect", disconnect)
536
+ if inactivity is not None:
537
+ pulumi.set(__self__, "inactivity", inactivity)
538
+
539
+ @property
540
+ @pulumi.getter
541
+ def disconnect(self) -> Optional['outputs.DesktopPoolSessionLifecycleActionsDisconnect']:
542
+ """
543
+ (Updatable) Action and grace period for disconnect
544
+ """
545
+ return pulumi.get(self, "disconnect")
546
+
547
+ @property
548
+ @pulumi.getter
549
+ def inactivity(self) -> Optional['outputs.DesktopPoolSessionLifecycleActionsInactivity']:
550
+ """
551
+ (Updatable) Action and grace period for inactivity
552
+ """
553
+ return pulumi.get(self, "inactivity")
554
+
555
+
556
+ @pulumi.output_type
557
+ class DesktopPoolSessionLifecycleActionsDisconnect(dict):
558
+ @staticmethod
559
+ def __key_warning(key: str):
560
+ suggest = None
561
+ if key == "gracePeriodInMinutes":
562
+ suggest = "grace_period_in_minutes"
563
+
564
+ if suggest:
565
+ pulumi.log.warn(f"Key '{key}' not found in DesktopPoolSessionLifecycleActionsDisconnect. Access the value via the '{suggest}' property getter instead.")
566
+
567
+ def __getitem__(self, key: str) -> Any:
568
+ DesktopPoolSessionLifecycleActionsDisconnect.__key_warning(key)
569
+ return super().__getitem__(key)
570
+
571
+ def get(self, key: str, default = None) -> Any:
572
+ DesktopPoolSessionLifecycleActionsDisconnect.__key_warning(key)
573
+ return super().get(key, default)
574
+
575
+ def __init__(__self__, *,
576
+ action: str,
577
+ grace_period_in_minutes: Optional[int] = None):
578
+ """
579
+ :param str action: (Updatable) a disconnect action to be triggered
580
+ :param int grace_period_in_minutes: (Updatable) The period of time (in minutes) after disconnect before any action occurs. If the value is not provided, a default value is used.
581
+ """
582
+ pulumi.set(__self__, "action", action)
583
+ if grace_period_in_minutes is not None:
584
+ pulumi.set(__self__, "grace_period_in_minutes", grace_period_in_minutes)
585
+
586
+ @property
587
+ @pulumi.getter
588
+ def action(self) -> str:
589
+ """
590
+ (Updatable) a disconnect action to be triggered
591
+ """
592
+ return pulumi.get(self, "action")
593
+
594
+ @property
595
+ @pulumi.getter(name="gracePeriodInMinutes")
596
+ def grace_period_in_minutes(self) -> Optional[int]:
597
+ """
598
+ (Updatable) The period of time (in minutes) after disconnect before any action occurs. If the value is not provided, a default value is used.
599
+ """
600
+ return pulumi.get(self, "grace_period_in_minutes")
601
+
602
+
603
+ @pulumi.output_type
604
+ class DesktopPoolSessionLifecycleActionsInactivity(dict):
605
+ @staticmethod
606
+ def __key_warning(key: str):
607
+ suggest = None
608
+ if key == "gracePeriodInMinutes":
609
+ suggest = "grace_period_in_minutes"
610
+
611
+ if suggest:
612
+ pulumi.log.warn(f"Key '{key}' not found in DesktopPoolSessionLifecycleActionsInactivity. Access the value via the '{suggest}' property getter instead.")
613
+
614
+ def __getitem__(self, key: str) -> Any:
615
+ DesktopPoolSessionLifecycleActionsInactivity.__key_warning(key)
616
+ return super().__getitem__(key)
617
+
618
+ def get(self, key: str, default = None) -> Any:
619
+ DesktopPoolSessionLifecycleActionsInactivity.__key_warning(key)
620
+ return super().get(key, default)
621
+
622
+ def __init__(__self__, *,
623
+ action: str,
624
+ grace_period_in_minutes: Optional[int] = None):
625
+ """
626
+ :param str action: (Updatable) an inactivity action to be triggered
627
+ :param int grace_period_in_minutes: (Updatable) The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
628
+ """
629
+ pulumi.set(__self__, "action", action)
630
+ if grace_period_in_minutes is not None:
631
+ pulumi.set(__self__, "grace_period_in_minutes", grace_period_in_minutes)
632
+
633
+ @property
634
+ @pulumi.getter
635
+ def action(self) -> str:
636
+ """
637
+ (Updatable) an inactivity action to be triggered
638
+ """
639
+ return pulumi.get(self, "action")
640
+
641
+ @property
642
+ @pulumi.getter(name="gracePeriodInMinutes")
643
+ def grace_period_in_minutes(self) -> Optional[int]:
644
+ """
645
+ (Updatable) The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
646
+ """
647
+ return pulumi.get(self, "grace_period_in_minutes")
648
+
649
+
650
+ @pulumi.output_type
651
+ class DesktopPoolShapeConfig(dict):
652
+ @staticmethod
653
+ def __key_warning(key: str):
654
+ suggest = None
655
+ if key == "baselineOcpuUtilization":
656
+ suggest = "baseline_ocpu_utilization"
657
+ elif key == "memoryInGbs":
658
+ suggest = "memory_in_gbs"
659
+
660
+ if suggest:
661
+ pulumi.log.warn(f"Key '{key}' not found in DesktopPoolShapeConfig. Access the value via the '{suggest}' property getter instead.")
662
+
663
+ def __getitem__(self, key: str) -> Any:
664
+ DesktopPoolShapeConfig.__key_warning(key)
665
+ return super().__getitem__(key)
666
+
667
+ def get(self, key: str, default = None) -> Any:
668
+ DesktopPoolShapeConfig.__key_warning(key)
669
+ return super().get(key, default)
670
+
671
+ def __init__(__self__, *,
672
+ baseline_ocpu_utilization: Optional[str] = None,
673
+ memory_in_gbs: Optional[str] = None,
674
+ ocpus: Optional[str] = None):
675
+ """
676
+ :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:
677
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
678
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
679
+ * `BASELINE_1_1` - baseline usage is the entire OCPU. This represents a non-burstable instance.
680
+ :param str memory_in_gbs: The total amount of memory available in gigabytes for each desktop compute instance in the desktop pool.
681
+ :param str ocpus: The total number of OCPUs available for each desktop compute instance in the desktop pool.
682
+ """
683
+ if baseline_ocpu_utilization is not None:
684
+ pulumi.set(__self__, "baseline_ocpu_utilization", baseline_ocpu_utilization)
685
+ if memory_in_gbs is not None:
686
+ pulumi.set(__self__, "memory_in_gbs", memory_in_gbs)
687
+ if ocpus is not None:
688
+ pulumi.set(__self__, "ocpus", ocpus)
689
+
690
+ @property
691
+ @pulumi.getter(name="baselineOcpuUtilization")
692
+ def baseline_ocpu_utilization(self) -> Optional[str]:
693
+ """
694
+ 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:
695
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
696
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
697
+ * `BASELINE_1_1` - baseline usage is the entire OCPU. This represents a non-burstable instance.
698
+ """
699
+ return pulumi.get(self, "baseline_ocpu_utilization")
700
+
701
+ @property
702
+ @pulumi.getter(name="memoryInGbs")
703
+ def memory_in_gbs(self) -> Optional[str]:
704
+ """
705
+ The total amount of memory available in gigabytes for each desktop compute instance in the desktop pool.
706
+ """
707
+ return pulumi.get(self, "memory_in_gbs")
708
+
709
+ @property
710
+ @pulumi.getter
711
+ def ocpus(self) -> Optional[str]:
712
+ """
713
+ The total number of OCPUs available for each desktop compute instance in the desktop pool.
714
+ """
715
+ return pulumi.get(self, "ocpus")
716
+
717
+
403
718
  @pulumi.output_type
404
719
  class GetDesktopDevicePolicyResult(dict):
405
720
  def __init__(__self__, *,
@@ -517,13 +832,16 @@ class GetDesktopHostingOptionResult(dict):
517
832
  class GetDesktopHostingOptionImageResult(dict):
518
833
  def __init__(__self__, *,
519
834
  image_id: str,
520
- image_name: str):
835
+ image_name: str,
836
+ operating_system: str):
521
837
  """
522
838
  :param str image_id: The OCID of the desktop image.
523
839
  :param str image_name: The name of the desktop image.
840
+ :param str operating_system: The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
524
841
  """
525
842
  pulumi.set(__self__, "image_id", image_id)
526
843
  pulumi.set(__self__, "image_name", image_name)
844
+ pulumi.set(__self__, "operating_system", operating_system)
527
845
 
528
846
  @property
529
847
  @pulumi.getter(name="imageId")
@@ -541,6 +859,14 @@ class GetDesktopHostingOptionImageResult(dict):
541
859
  """
542
860
  return pulumi.get(self, "image_name")
543
861
 
862
+ @property
863
+ @pulumi.getter(name="operatingSystem")
864
+ def operating_system(self) -> str:
865
+ """
866
+ The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
867
+ """
868
+ return pulumi.get(self, "operating_system")
869
+
544
870
 
545
871
  @pulumi.output_type
546
872
  class GetDesktopPoolAvailabilityPolicyResult(dict):
@@ -857,13 +1183,16 @@ class GetDesktopPoolDevicePolicyResult(dict):
857
1183
  class GetDesktopPoolImageResult(dict):
858
1184
  def __init__(__self__, *,
859
1185
  image_id: str,
860
- image_name: str):
1186
+ image_name: str,
1187
+ operating_system: str):
861
1188
  """
862
1189
  :param str image_id: The OCID of the desktop image.
863
1190
  :param str image_name: The name of the desktop image.
1191
+ :param str operating_system: The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
864
1192
  """
865
1193
  pulumi.set(__self__, "image_id", image_id)
866
1194
  pulumi.set(__self__, "image_name", image_name)
1195
+ pulumi.set(__self__, "operating_system", operating_system)
867
1196
 
868
1197
  @property
869
1198
  @pulumi.getter(name="imageId")
@@ -881,6 +1210,14 @@ class GetDesktopPoolImageResult(dict):
881
1210
  """
882
1211
  return pulumi.get(self, "image_name")
883
1212
 
1213
+ @property
1214
+ @pulumi.getter(name="operatingSystem")
1215
+ def operating_system(self) -> str:
1216
+ """
1217
+ The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
1218
+ """
1219
+ return pulumi.get(self, "operating_system")
1220
+
884
1221
 
885
1222
  @pulumi.output_type
886
1223
  class GetDesktopPoolNetworkConfigurationResult(dict):
@@ -888,8 +1225,8 @@ class GetDesktopPoolNetworkConfigurationResult(dict):
888
1225
  subnet_id: str,
889
1226
  vcn_id: str):
890
1227
  """
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.
1228
+ :param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
1229
+ :param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
893
1230
  """
894
1231
  pulumi.set(__self__, "subnet_id", subnet_id)
895
1232
  pulumi.set(__self__, "vcn_id", vcn_id)
@@ -898,7 +1235,69 @@ class GetDesktopPoolNetworkConfigurationResult(dict):
898
1235
  @pulumi.getter(name="subnetId")
899
1236
  def subnet_id(self) -> str:
900
1237
  """
901
- The OCID of the subnet to use for the desktop pool.
1238
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
1239
+ """
1240
+ return pulumi.get(self, "subnet_id")
1241
+
1242
+ @property
1243
+ @pulumi.getter(name="vcnId")
1244
+ def vcn_id(self) -> str:
1245
+ """
1246
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
1247
+ """
1248
+ return pulumi.get(self, "vcn_id")
1249
+
1250
+
1251
+ @pulumi.output_type
1252
+ class GetDesktopPoolPrivateAccessDetailResult(dict):
1253
+ def __init__(__self__, *,
1254
+ endpoint_fqdn: str,
1255
+ nsg_ids: Sequence[str],
1256
+ private_ip: str,
1257
+ subnet_id: str,
1258
+ vcn_id: str):
1259
+ """
1260
+ :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).
1261
+ :param Sequence[str] nsg_ids: A list of network security groups for the private access.
1262
+ :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.
1263
+ :param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
1264
+ :param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
1265
+ """
1266
+ pulumi.set(__self__, "endpoint_fqdn", endpoint_fqdn)
1267
+ pulumi.set(__self__, "nsg_ids", nsg_ids)
1268
+ pulumi.set(__self__, "private_ip", private_ip)
1269
+ pulumi.set(__self__, "subnet_id", subnet_id)
1270
+ pulumi.set(__self__, "vcn_id", vcn_id)
1271
+
1272
+ @property
1273
+ @pulumi.getter(name="endpointFqdn")
1274
+ def endpoint_fqdn(self) -> str:
1275
+ """
1276
+ 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).
1277
+ """
1278
+ return pulumi.get(self, "endpoint_fqdn")
1279
+
1280
+ @property
1281
+ @pulumi.getter(name="nsgIds")
1282
+ def nsg_ids(self) -> Sequence[str]:
1283
+ """
1284
+ A list of network security groups for the private access.
1285
+ """
1286
+ return pulumi.get(self, "nsg_ids")
1287
+
1288
+ @property
1289
+ @pulumi.getter(name="privateIp")
1290
+ def private_ip(self) -> str:
1291
+ """
1292
+ 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.
1293
+ """
1294
+ return pulumi.get(self, "private_ip")
1295
+
1296
+ @property
1297
+ @pulumi.getter(name="subnetId")
1298
+ def subnet_id(self) -> str:
1299
+ """
1300
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
902
1301
  """
903
1302
  return pulumi.get(self, "subnet_id")
904
1303
 
@@ -906,11 +1305,144 @@ class GetDesktopPoolNetworkConfigurationResult(dict):
906
1305
  @pulumi.getter(name="vcnId")
907
1306
  def vcn_id(self) -> str:
908
1307
  """
909
- The OCID of the VCN used by the desktop pool.
1308
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
910
1309
  """
911
1310
  return pulumi.get(self, "vcn_id")
912
1311
 
913
1312
 
1313
+ @pulumi.output_type
1314
+ class GetDesktopPoolSessionLifecycleActionResult(dict):
1315
+ def __init__(__self__, *,
1316
+ disconnects: Sequence['outputs.GetDesktopPoolSessionLifecycleActionDisconnectResult'],
1317
+ inactivities: Sequence['outputs.GetDesktopPoolSessionLifecycleActionInactivityResult']):
1318
+ """
1319
+ :param Sequence['GetDesktopPoolSessionLifecycleActionDisconnectArgs'] disconnects: Action and grace period for disconnect
1320
+ :param Sequence['GetDesktopPoolSessionLifecycleActionInactivityArgs'] inactivities: Action and grace period for inactivity
1321
+ """
1322
+ pulumi.set(__self__, "disconnects", disconnects)
1323
+ pulumi.set(__self__, "inactivities", inactivities)
1324
+
1325
+ @property
1326
+ @pulumi.getter
1327
+ def disconnects(self) -> Sequence['outputs.GetDesktopPoolSessionLifecycleActionDisconnectResult']:
1328
+ """
1329
+ Action and grace period for disconnect
1330
+ """
1331
+ return pulumi.get(self, "disconnects")
1332
+
1333
+ @property
1334
+ @pulumi.getter
1335
+ def inactivities(self) -> Sequence['outputs.GetDesktopPoolSessionLifecycleActionInactivityResult']:
1336
+ """
1337
+ Action and grace period for inactivity
1338
+ """
1339
+ return pulumi.get(self, "inactivities")
1340
+
1341
+
1342
+ @pulumi.output_type
1343
+ class GetDesktopPoolSessionLifecycleActionDisconnectResult(dict):
1344
+ def __init__(__self__, *,
1345
+ action: str,
1346
+ grace_period_in_minutes: int):
1347
+ """
1348
+ :param str action: an inactivity action to be triggered
1349
+ :param int grace_period_in_minutes: The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
1350
+ """
1351
+ pulumi.set(__self__, "action", action)
1352
+ pulumi.set(__self__, "grace_period_in_minutes", grace_period_in_minutes)
1353
+
1354
+ @property
1355
+ @pulumi.getter
1356
+ def action(self) -> str:
1357
+ """
1358
+ an inactivity action to be triggered
1359
+ """
1360
+ return pulumi.get(self, "action")
1361
+
1362
+ @property
1363
+ @pulumi.getter(name="gracePeriodInMinutes")
1364
+ def grace_period_in_minutes(self) -> int:
1365
+ """
1366
+ The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
1367
+ """
1368
+ return pulumi.get(self, "grace_period_in_minutes")
1369
+
1370
+
1371
+ @pulumi.output_type
1372
+ class GetDesktopPoolSessionLifecycleActionInactivityResult(dict):
1373
+ def __init__(__self__, *,
1374
+ action: str,
1375
+ grace_period_in_minutes: int):
1376
+ """
1377
+ :param str action: an inactivity action to be triggered
1378
+ :param int grace_period_in_minutes: The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
1379
+ """
1380
+ pulumi.set(__self__, "action", action)
1381
+ pulumi.set(__self__, "grace_period_in_minutes", grace_period_in_minutes)
1382
+
1383
+ @property
1384
+ @pulumi.getter
1385
+ def action(self) -> str:
1386
+ """
1387
+ an inactivity action to be triggered
1388
+ """
1389
+ return pulumi.get(self, "action")
1390
+
1391
+ @property
1392
+ @pulumi.getter(name="gracePeriodInMinutes")
1393
+ def grace_period_in_minutes(self) -> int:
1394
+ """
1395
+ The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
1396
+ """
1397
+ return pulumi.get(self, "grace_period_in_minutes")
1398
+
1399
+
1400
+ @pulumi.output_type
1401
+ class GetDesktopPoolShapeConfigResult(dict):
1402
+ def __init__(__self__, *,
1403
+ baseline_ocpu_utilization: str,
1404
+ memory_in_gbs: str,
1405
+ ocpus: str):
1406
+ """
1407
+ :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:
1408
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
1409
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
1410
+ * `BASELINE_1_1` - baseline usage is the entire OCPU. This represents a non-burstable instance.
1411
+ :param str memory_in_gbs: The total amount of memory available in gigabytes for each desktop compute instance in the desktop pool.
1412
+ :param str ocpus: The total number of OCPUs available for each desktop compute instance in the desktop pool.
1413
+ """
1414
+ pulumi.set(__self__, "baseline_ocpu_utilization", baseline_ocpu_utilization)
1415
+ pulumi.set(__self__, "memory_in_gbs", memory_in_gbs)
1416
+ pulumi.set(__self__, "ocpus", ocpus)
1417
+
1418
+ @property
1419
+ @pulumi.getter(name="baselineOcpuUtilization")
1420
+ def baseline_ocpu_utilization(self) -> str:
1421
+ """
1422
+ 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:
1423
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
1424
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
1425
+ * `BASELINE_1_1` - baseline usage is the entire OCPU. This represents a non-burstable instance.
1426
+ """
1427
+ return pulumi.get(self, "baseline_ocpu_utilization")
1428
+
1429
+ @property
1430
+ @pulumi.getter(name="memoryInGbs")
1431
+ def memory_in_gbs(self) -> str:
1432
+ """
1433
+ The total amount of memory available in gigabytes for each desktop compute instance in the desktop pool.
1434
+ """
1435
+ return pulumi.get(self, "memory_in_gbs")
1436
+
1437
+ @property
1438
+ @pulumi.getter
1439
+ def ocpus(self) -> str:
1440
+ """
1441
+ The total number of OCPUs available for each desktop compute instance in the desktop pool.
1442
+ """
1443
+ return pulumi.get(self, "ocpus")
1444
+
1445
+
914
1446
  @pulumi.output_type
915
1447
  class GetDesktopPoolVolumesDesktopPoolVolumeCollectionResult(dict):
916
1448
  def __init__(__self__, *,
@@ -1089,6 +1621,9 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
1089
1621
  maximum_size: int,
1090
1622
  network_configurations: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult'],
1091
1623
  nsg_ids: Sequence[str],
1624
+ private_access_details: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemPrivateAccessDetailResult'],
1625
+ session_lifecycle_actions: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionResult'],
1626
+ shape_configs: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemShapeConfigResult'],
1092
1627
  shape_name: str,
1093
1628
  standby_size: int,
1094
1629
  state: str,
@@ -1096,7 +1631,8 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
1096
1631
  storage_size_in_gbs: int,
1097
1632
  time_created: str,
1098
1633
  time_start_scheduled: str,
1099
- time_stop_scheduled: str):
1634
+ time_stop_scheduled: str,
1635
+ use_dedicated_vm_host: str):
1100
1636
  """
1101
1637
  :param int active_desktops: The number of active desktops in the desktop pool.
1102
1638
  :param bool are_privileged_users: Indicates whether desktop pool users have administrative privileges on their desktop.
@@ -1114,7 +1650,10 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
1114
1650
  :param bool is_storage_enabled: Indicates whether storage is enabled for the desktop pool.
1115
1651
  :param int maximum_size: The maximum number of desktops permitted in the desktop pool.
1116
1652
  :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.
1653
+ :param Sequence[str] nsg_ids: A list of network security groups for the private access.
1654
+ :param Sequence['GetDesktopPoolsDesktopPoolCollectionItemPrivateAccessDetailArgs'] private_access_details: The details of the desktop's private access network connectivity that were used to create the pool.
1655
+ :param Sequence['GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionArgs'] session_lifecycle_actions: Action to be triggered on inactivity or disconnect
1656
+ :param Sequence['GetDesktopPoolsDesktopPoolCollectionItemShapeConfigArgs'] shape_configs: The shape configuration used for each desktop compute instance in the desktop pool.
1118
1657
  :param str shape_name: The shape of the desktop pool.
1119
1658
  :param int standby_size: The maximum number of standby desktops available in the desktop pool.
1120
1659
  :param str state: A filter to return only results with the given lifecycleState.
@@ -1123,6 +1662,7 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
1123
1662
  :param str time_created: The date and time the resource was created.
1124
1663
  :param str time_start_scheduled: The start time of the desktop pool.
1125
1664
  :param str time_stop_scheduled: The stop time of the desktop pool.
1665
+ :param str use_dedicated_vm_host: Indicates whether the desktop pool uses dedicated virtual machine hosts.
1126
1666
  """
1127
1667
  pulumi.set(__self__, "active_desktops", active_desktops)
1128
1668
  pulumi.set(__self__, "are_privileged_users", are_privileged_users)
@@ -1141,6 +1681,9 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
1141
1681
  pulumi.set(__self__, "maximum_size", maximum_size)
1142
1682
  pulumi.set(__self__, "network_configurations", network_configurations)
1143
1683
  pulumi.set(__self__, "nsg_ids", nsg_ids)
1684
+ pulumi.set(__self__, "private_access_details", private_access_details)
1685
+ pulumi.set(__self__, "session_lifecycle_actions", session_lifecycle_actions)
1686
+ pulumi.set(__self__, "shape_configs", shape_configs)
1144
1687
  pulumi.set(__self__, "shape_name", shape_name)
1145
1688
  pulumi.set(__self__, "standby_size", standby_size)
1146
1689
  pulumi.set(__self__, "state", state)
@@ -1149,6 +1692,7 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
1149
1692
  pulumi.set(__self__, "time_created", time_created)
1150
1693
  pulumi.set(__self__, "time_start_scheduled", time_start_scheduled)
1151
1694
  pulumi.set(__self__, "time_stop_scheduled", time_stop_scheduled)
1695
+ pulumi.set(__self__, "use_dedicated_vm_host", use_dedicated_vm_host)
1152
1696
 
1153
1697
  @property
1154
1698
  @pulumi.getter(name="activeDesktops")
@@ -1282,10 +1826,34 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
1282
1826
  @pulumi.getter(name="nsgIds")
1283
1827
  def nsg_ids(self) -> Sequence[str]:
1284
1828
  """
1285
- A list of network security groups for the desktop pool.
1829
+ A list of network security groups for the private access.
1286
1830
  """
1287
1831
  return pulumi.get(self, "nsg_ids")
1288
1832
 
1833
+ @property
1834
+ @pulumi.getter(name="privateAccessDetails")
1835
+ def private_access_details(self) -> Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemPrivateAccessDetailResult']:
1836
+ """
1837
+ The details of the desktop's private access network connectivity that were used to create the pool.
1838
+ """
1839
+ return pulumi.get(self, "private_access_details")
1840
+
1841
+ @property
1842
+ @pulumi.getter(name="sessionLifecycleActions")
1843
+ def session_lifecycle_actions(self) -> Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionResult']:
1844
+ """
1845
+ Action to be triggered on inactivity or disconnect
1846
+ """
1847
+ return pulumi.get(self, "session_lifecycle_actions")
1848
+
1849
+ @property
1850
+ @pulumi.getter(name="shapeConfigs")
1851
+ def shape_configs(self) -> Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemShapeConfigResult']:
1852
+ """
1853
+ The shape configuration used for each desktop compute instance in the desktop pool.
1854
+ """
1855
+ return pulumi.get(self, "shape_configs")
1856
+
1289
1857
  @property
1290
1858
  @pulumi.getter(name="shapeName")
1291
1859
  def shape_name(self) -> str:
@@ -1350,6 +1918,14 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
1350
1918
  """
1351
1919
  return pulumi.get(self, "time_stop_scheduled")
1352
1920
 
1921
+ @property
1922
+ @pulumi.getter(name="useDedicatedVmHost")
1923
+ def use_dedicated_vm_host(self) -> str:
1924
+ """
1925
+ Indicates whether the desktop pool uses dedicated virtual machine hosts.
1926
+ """
1927
+ return pulumi.get(self, "use_dedicated_vm_host")
1928
+
1353
1929
 
1354
1930
  @pulumi.output_type
1355
1931
  class GetDesktopPoolsDesktopPoolCollectionItemAvailabilityPolicyResult(dict):
@@ -1526,13 +2102,16 @@ class GetDesktopPoolsDesktopPoolCollectionItemDevicePolicyResult(dict):
1526
2102
  class GetDesktopPoolsDesktopPoolCollectionItemImageResult(dict):
1527
2103
  def __init__(__self__, *,
1528
2104
  image_id: str,
1529
- image_name: str):
2105
+ image_name: str,
2106
+ operating_system: str):
1530
2107
  """
1531
2108
  :param str image_id: The OCID of the desktop image.
1532
2109
  :param str image_name: The name of the desktop image.
2110
+ :param str operating_system: The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
1533
2111
  """
1534
2112
  pulumi.set(__self__, "image_id", image_id)
1535
2113
  pulumi.set(__self__, "image_name", image_name)
2114
+ pulumi.set(__self__, "operating_system", operating_system)
1536
2115
 
1537
2116
  @property
1538
2117
  @pulumi.getter(name="imageId")
@@ -1550,6 +2129,14 @@ class GetDesktopPoolsDesktopPoolCollectionItemImageResult(dict):
1550
2129
  """
1551
2130
  return pulumi.get(self, "image_name")
1552
2131
 
2132
+ @property
2133
+ @pulumi.getter(name="operatingSystem")
2134
+ def operating_system(self) -> str:
2135
+ """
2136
+ The operating system of the desktop image, e.g. "Oracle Linux", "Windows".
2137
+ """
2138
+ return pulumi.get(self, "operating_system")
2139
+
1553
2140
 
1554
2141
  @pulumi.output_type
1555
2142
  class GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult(dict):
@@ -1557,17 +2144,79 @@ class GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult(dict):
1557
2144
  subnet_id: str,
1558
2145
  vcn_id: str):
1559
2146
  """
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.
2147
+ :param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
2148
+ :param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
2149
+ """
2150
+ pulumi.set(__self__, "subnet_id", subnet_id)
2151
+ pulumi.set(__self__, "vcn_id", vcn_id)
2152
+
2153
+ @property
2154
+ @pulumi.getter(name="subnetId")
2155
+ def subnet_id(self) -> str:
2156
+ """
2157
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
2158
+ """
2159
+ return pulumi.get(self, "subnet_id")
2160
+
2161
+ @property
2162
+ @pulumi.getter(name="vcnId")
2163
+ def vcn_id(self) -> str:
2164
+ """
2165
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
2166
+ """
2167
+ return pulumi.get(self, "vcn_id")
2168
+
2169
+
2170
+ @pulumi.output_type
2171
+ class GetDesktopPoolsDesktopPoolCollectionItemPrivateAccessDetailResult(dict):
2172
+ def __init__(__self__, *,
2173
+ endpoint_fqdn: str,
2174
+ nsg_ids: Sequence[str],
2175
+ private_ip: str,
2176
+ subnet_id: str,
2177
+ vcn_id: str):
2178
+ """
2179
+ :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).
2180
+ :param Sequence[str] nsg_ids: A list of network security groups for the private access.
2181
+ :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.
2182
+ :param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
2183
+ :param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
1562
2184
  """
2185
+ pulumi.set(__self__, "endpoint_fqdn", endpoint_fqdn)
2186
+ pulumi.set(__self__, "nsg_ids", nsg_ids)
2187
+ pulumi.set(__self__, "private_ip", private_ip)
1563
2188
  pulumi.set(__self__, "subnet_id", subnet_id)
1564
2189
  pulumi.set(__self__, "vcn_id", vcn_id)
1565
2190
 
2191
+ @property
2192
+ @pulumi.getter(name="endpointFqdn")
2193
+ def endpoint_fqdn(self) -> str:
2194
+ """
2195
+ 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).
2196
+ """
2197
+ return pulumi.get(self, "endpoint_fqdn")
2198
+
2199
+ @property
2200
+ @pulumi.getter(name="nsgIds")
2201
+ def nsg_ids(self) -> Sequence[str]:
2202
+ """
2203
+ A list of network security groups for the private access.
2204
+ """
2205
+ return pulumi.get(self, "nsg_ids")
2206
+
2207
+ @property
2208
+ @pulumi.getter(name="privateIp")
2209
+ def private_ip(self) -> str:
2210
+ """
2211
+ 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.
2212
+ """
2213
+ return pulumi.get(self, "private_ip")
2214
+
1566
2215
  @property
1567
2216
  @pulumi.getter(name="subnetId")
1568
2217
  def subnet_id(self) -> str:
1569
2218
  """
1570
- The OCID of the subnet to use for the desktop pool.
2219
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
1571
2220
  """
1572
2221
  return pulumi.get(self, "subnet_id")
1573
2222
 
@@ -1575,11 +2224,144 @@ class GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult(dict):
1575
2224
  @pulumi.getter(name="vcnId")
1576
2225
  def vcn_id(self) -> str:
1577
2226
  """
1578
- The OCID of the VCN used by the desktop pool.
2227
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
1579
2228
  """
1580
2229
  return pulumi.get(self, "vcn_id")
1581
2230
 
1582
2231
 
2232
+ @pulumi.output_type
2233
+ class GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionResult(dict):
2234
+ def __init__(__self__, *,
2235
+ disconnects: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionDisconnectResult'],
2236
+ inactivities: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionInactivityResult']):
2237
+ """
2238
+ :param Sequence['GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionDisconnectArgs'] disconnects: Action and grace period for disconnect
2239
+ :param Sequence['GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionInactivityArgs'] inactivities: Action and grace period for inactivity
2240
+ """
2241
+ pulumi.set(__self__, "disconnects", disconnects)
2242
+ pulumi.set(__self__, "inactivities", inactivities)
2243
+
2244
+ @property
2245
+ @pulumi.getter
2246
+ def disconnects(self) -> Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionDisconnectResult']:
2247
+ """
2248
+ Action and grace period for disconnect
2249
+ """
2250
+ return pulumi.get(self, "disconnects")
2251
+
2252
+ @property
2253
+ @pulumi.getter
2254
+ def inactivities(self) -> Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionInactivityResult']:
2255
+ """
2256
+ Action and grace period for inactivity
2257
+ """
2258
+ return pulumi.get(self, "inactivities")
2259
+
2260
+
2261
+ @pulumi.output_type
2262
+ class GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionDisconnectResult(dict):
2263
+ def __init__(__self__, *,
2264
+ action: str,
2265
+ grace_period_in_minutes: int):
2266
+ """
2267
+ :param str action: an inactivity action to be triggered
2268
+ :param int grace_period_in_minutes: The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
2269
+ """
2270
+ pulumi.set(__self__, "action", action)
2271
+ pulumi.set(__self__, "grace_period_in_minutes", grace_period_in_minutes)
2272
+
2273
+ @property
2274
+ @pulumi.getter
2275
+ def action(self) -> str:
2276
+ """
2277
+ an inactivity action to be triggered
2278
+ """
2279
+ return pulumi.get(self, "action")
2280
+
2281
+ @property
2282
+ @pulumi.getter(name="gracePeriodInMinutes")
2283
+ def grace_period_in_minutes(self) -> int:
2284
+ """
2285
+ The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
2286
+ """
2287
+ return pulumi.get(self, "grace_period_in_minutes")
2288
+
2289
+
2290
+ @pulumi.output_type
2291
+ class GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionInactivityResult(dict):
2292
+ def __init__(__self__, *,
2293
+ action: str,
2294
+ grace_period_in_minutes: int):
2295
+ """
2296
+ :param str action: an inactivity action to be triggered
2297
+ :param int grace_period_in_minutes: The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
2298
+ """
2299
+ pulumi.set(__self__, "action", action)
2300
+ pulumi.set(__self__, "grace_period_in_minutes", grace_period_in_minutes)
2301
+
2302
+ @property
2303
+ @pulumi.getter
2304
+ def action(self) -> str:
2305
+ """
2306
+ an inactivity action to be triggered
2307
+ """
2308
+ return pulumi.get(self, "action")
2309
+
2310
+ @property
2311
+ @pulumi.getter(name="gracePeriodInMinutes")
2312
+ def grace_period_in_minutes(self) -> int:
2313
+ """
2314
+ The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
2315
+ """
2316
+ return pulumi.get(self, "grace_period_in_minutes")
2317
+
2318
+
2319
+ @pulumi.output_type
2320
+ class GetDesktopPoolsDesktopPoolCollectionItemShapeConfigResult(dict):
2321
+ def __init__(__self__, *,
2322
+ baseline_ocpu_utilization: str,
2323
+ memory_in_gbs: str,
2324
+ ocpus: str):
2325
+ """
2326
+ :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:
2327
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
2328
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
2329
+ * `BASELINE_1_1` - baseline usage is the entire OCPU. This represents a non-burstable instance.
2330
+ :param str memory_in_gbs: The total amount of memory available in gigabytes for each desktop compute instance in the desktop pool.
2331
+ :param str ocpus: The total number of OCPUs available for each desktop compute instance in the desktop pool.
2332
+ """
2333
+ pulumi.set(__self__, "baseline_ocpu_utilization", baseline_ocpu_utilization)
2334
+ pulumi.set(__self__, "memory_in_gbs", memory_in_gbs)
2335
+ pulumi.set(__self__, "ocpus", ocpus)
2336
+
2337
+ @property
2338
+ @pulumi.getter(name="baselineOcpuUtilization")
2339
+ def baseline_ocpu_utilization(self) -> str:
2340
+ """
2341
+ 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:
2342
+ * `BASELINE_1_8` - baseline usage is 1/8 of an OCPU.
2343
+ * `BASELINE_1_2` - baseline usage is 1/2 of an OCPU.
2344
+ * `BASELINE_1_1` - baseline usage is the entire OCPU. This represents a non-burstable instance.
2345
+ """
2346
+ return pulumi.get(self, "baseline_ocpu_utilization")
2347
+
2348
+ @property
2349
+ @pulumi.getter(name="memoryInGbs")
2350
+ def memory_in_gbs(self) -> str:
2351
+ """
2352
+ The total amount of memory available in gigabytes for each desktop compute instance in the desktop pool.
2353
+ """
2354
+ return pulumi.get(self, "memory_in_gbs")
2355
+
2356
+ @property
2357
+ @pulumi.getter
2358
+ def ocpus(self) -> str:
2359
+ """
2360
+ The total number of OCPUs available for each desktop compute instance in the desktop pool.
2361
+ """
2362
+ return pulumi.get(self, "ocpus")
2363
+
2364
+
1583
2365
  @pulumi.output_type
1584
2366
  class GetDesktopPoolsFilterResult(dict):
1585
2367
  def __init__(__self__, *,