pulumi-oci 2.8.0a1724316519__py3-none-any.whl → 2.9.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 (119) hide show
  1. pulumi_oci/__init__.py +86 -38
  2. pulumi_oci/announcementsservice/__init__.py +1 -0
  3. pulumi_oci/announcementsservice/_inputs.py +46 -6
  4. pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
  5. pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
  6. pulumi_oci/announcementsservice/get_services.py +173 -0
  7. pulumi_oci/announcementsservice/outputs.py +195 -18
  8. pulumi_oci/bigdataservice/_inputs.py +1 -49
  9. pulumi_oci/bigdataservice/bds_instance.py +0 -128
  10. pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
  11. pulumi_oci/bigdataservice/outputs.py +3 -132
  12. pulumi_oci/database/_inputs.py +32 -0
  13. pulumi_oci/database/autonomous_database.py +28 -0
  14. pulumi_oci/database/data_guard_association.py +49 -0
  15. pulumi_oci/database/get_autonomous_database.py +14 -1
  16. pulumi_oci/database/get_autonomous_databases.py +32 -95
  17. pulumi_oci/database/get_data_guard_association.py +11 -1
  18. pulumi_oci/database/outputs.py +163 -42
  19. pulumi_oci/databasemanagement/__init__.py +1 -0
  20. pulumi_oci/databasemanagement/_inputs.py +873 -10
  21. pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
  22. pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
  23. pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
  24. pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
  25. pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
  26. pulumi_oci/databasemanagement/get_managed_database.py +47 -3
  27. pulumi_oci/databasemanagement/managed_database.py +56 -0
  28. pulumi_oci/databasemanagement/outputs.py +3331 -1397
  29. pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
  30. pulumi_oci/datasafe/__init__.py +6 -0
  31. pulumi_oci/datasafe/_inputs.py +18 -0
  32. pulumi_oci/datasafe/database_security_config_management.py +244 -2
  33. pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
  34. pulumi_oci/datasafe/masking_report_management.py +693 -0
  35. pulumi_oci/datasafe/outputs.py +18 -0
  36. pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
  37. pulumi_oci/datasafe/security_policy_management.py +172 -2
  38. pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
  39. pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
  40. pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
  41. pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
  42. pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
  43. pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
  44. pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
  45. pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
  46. pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
  47. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
  48. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
  49. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
  50. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
  51. pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
  52. pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
  53. pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
  54. pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
  55. pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
  56. pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
  57. pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
  58. pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
  59. pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
  60. pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
  61. pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
  62. pulumi_oci/desktops/_inputs.py +483 -0
  63. pulumi_oci/desktops/desktop_pool.py +1348 -0
  64. pulumi_oci/desktops/get_desktop.py +223 -0
  65. pulumi_oci/desktops/get_desktop_pool.py +418 -0
  66. pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
  67. pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
  68. pulumi_oci/desktops/get_desktop_pools.py +203 -0
  69. pulumi_oci/desktops/get_desktops.py +214 -0
  70. pulumi_oci/desktops/outputs.py +1738 -0
  71. pulumi_oci/filestorage/mount_target.py +143 -38
  72. pulumi_oci/filestorage/outputs.py +44 -0
  73. pulumi_oci/identity/domains_group.py +34 -0
  74. pulumi_oci/identity/domains_user.py +34 -0
  75. pulumi_oci/identity/get_domains_group.py +11 -1
  76. pulumi_oci/identity/get_domains_user.py +11 -1
  77. pulumi_oci/identity/outputs.py +14 -0
  78. pulumi_oci/kms/_inputs.py +10 -10
  79. pulumi_oci/kms/get_vault.py +14 -1
  80. pulumi_oci/kms/outputs.py +41 -30
  81. pulumi_oci/kms/vault.py +28 -0
  82. pulumi_oci/loadbalancer/load_balancer.py +224 -0
  83. pulumi_oci/loadbalancer/outputs.py +22 -0
  84. pulumi_oci/mysql/_inputs.py +23 -0
  85. pulumi_oci/mysql/get_mysql_db_system.py +15 -2
  86. pulumi_oci/mysql/mysql_db_system.py +53 -0
  87. pulumi_oci/mysql/outputs.py +74 -6
  88. pulumi_oci/ocvp/get_cluster.py +2 -2
  89. pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
  90. pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
  91. pulumi_oci/ocvp/outputs.py +2 -2
  92. pulumi_oci/pulumi-plugin.json +1 -1
  93. pulumi_oci/recoverymod/_inputs.py +0 -8
  94. pulumi_oci/recoverymod/get_protected_database.py +14 -1
  95. pulumi_oci/recoverymod/get_protection_policy.py +14 -1
  96. pulumi_oci/recoverymod/outputs.py +22 -8
  97. pulumi_oci/recoverymod/protected_database.py +80 -3
  98. pulumi_oci/recoverymod/protection_policy.py +49 -0
  99. pulumi_oci/waf/_inputs.py +29 -16
  100. pulumi_oci/waf/outputs.py +33 -10
  101. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/METADATA +1 -1
  102. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/RECORD +104 -86
  103. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/WHEEL +1 -1
  104. pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
  105. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
  106. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
  107. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
  108. pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
  109. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
  110. pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
  111. pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
  112. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  113. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
  114. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
  115. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
  116. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
  117. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
  118. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
  119. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1738 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'DesktopPoolAvailabilityPolicy',
15
+ 'DesktopPoolAvailabilityPolicyStartSchedule',
16
+ 'DesktopPoolAvailabilityPolicyStopSchedule',
17
+ 'DesktopPoolDevicePolicy',
18
+ 'DesktopPoolImage',
19
+ 'DesktopPoolNetworkConfiguration',
20
+ 'GetDesktopDevicePolicyResult',
21
+ 'GetDesktopHostingOptionResult',
22
+ 'GetDesktopHostingOptionImageResult',
23
+ 'GetDesktopPoolAvailabilityPolicyResult',
24
+ 'GetDesktopPoolAvailabilityPolicyStartScheduleResult',
25
+ 'GetDesktopPoolAvailabilityPolicyStopScheduleResult',
26
+ 'GetDesktopPoolDesktopsDesktopPoolDesktopCollectionResult',
27
+ 'GetDesktopPoolDesktopsDesktopPoolDesktopCollectionItemResult',
28
+ 'GetDesktopPoolDesktopsFilterResult',
29
+ 'GetDesktopPoolDevicePolicyResult',
30
+ 'GetDesktopPoolImageResult',
31
+ 'GetDesktopPoolNetworkConfigurationResult',
32
+ 'GetDesktopPoolVolumesDesktopPoolVolumeCollectionResult',
33
+ 'GetDesktopPoolVolumesDesktopPoolVolumeCollectionItemResult',
34
+ 'GetDesktopPoolVolumesFilterResult',
35
+ 'GetDesktopPoolsDesktopPoolCollectionResult',
36
+ 'GetDesktopPoolsDesktopPoolCollectionItemResult',
37
+ 'GetDesktopPoolsDesktopPoolCollectionItemAvailabilityPolicyResult',
38
+ 'GetDesktopPoolsDesktopPoolCollectionItemAvailabilityPolicyStartScheduleResult',
39
+ 'GetDesktopPoolsDesktopPoolCollectionItemAvailabilityPolicyStopScheduleResult',
40
+ 'GetDesktopPoolsDesktopPoolCollectionItemDevicePolicyResult',
41
+ 'GetDesktopPoolsDesktopPoolCollectionItemImageResult',
42
+ 'GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult',
43
+ 'GetDesktopPoolsFilterResult',
44
+ 'GetDesktopsDesktopCollectionResult',
45
+ 'GetDesktopsDesktopCollectionItemResult',
46
+ 'GetDesktopsFilterResult',
47
+ ]
48
+
49
+ @pulumi.output_type
50
+ class DesktopPoolAvailabilityPolicy(dict):
51
+ @staticmethod
52
+ def __key_warning(key: str):
53
+ suggest = None
54
+ if key == "startSchedule":
55
+ suggest = "start_schedule"
56
+ elif key == "stopSchedule":
57
+ suggest = "stop_schedule"
58
+
59
+ if suggest:
60
+ pulumi.log.warn(f"Key '{key}' not found in DesktopPoolAvailabilityPolicy. Access the value via the '{suggest}' property getter instead.")
61
+
62
+ def __getitem__(self, key: str) -> Any:
63
+ DesktopPoolAvailabilityPolicy.__key_warning(key)
64
+ return super().__getitem__(key)
65
+
66
+ def get(self, key: str, default = None) -> Any:
67
+ DesktopPoolAvailabilityPolicy.__key_warning(key)
68
+ return super().get(key, default)
69
+
70
+ def __init__(__self__, *,
71
+ start_schedule: 'outputs.DesktopPoolAvailabilityPolicyStartSchedule',
72
+ stop_schedule: 'outputs.DesktopPoolAvailabilityPolicyStopSchedule'):
73
+ """
74
+ :param 'DesktopPoolAvailabilityPolicyStartScheduleArgs' start_schedule: (Updatable) Provides the schedule information for a desktop.
75
+ :param 'DesktopPoolAvailabilityPolicyStopScheduleArgs' stop_schedule: (Updatable) Provides the schedule information for a desktop.
76
+ """
77
+ pulumi.set(__self__, "start_schedule", start_schedule)
78
+ pulumi.set(__self__, "stop_schedule", stop_schedule)
79
+
80
+ @property
81
+ @pulumi.getter(name="startSchedule")
82
+ def start_schedule(self) -> 'outputs.DesktopPoolAvailabilityPolicyStartSchedule':
83
+ """
84
+ (Updatable) Provides the schedule information for a desktop.
85
+ """
86
+ return pulumi.get(self, "start_schedule")
87
+
88
+ @property
89
+ @pulumi.getter(name="stopSchedule")
90
+ def stop_schedule(self) -> 'outputs.DesktopPoolAvailabilityPolicyStopSchedule':
91
+ """
92
+ (Updatable) Provides the schedule information for a desktop.
93
+ """
94
+ return pulumi.get(self, "stop_schedule")
95
+
96
+
97
+ @pulumi.output_type
98
+ class DesktopPoolAvailabilityPolicyStartSchedule(dict):
99
+ @staticmethod
100
+ def __key_warning(key: str):
101
+ suggest = None
102
+ if key == "cronExpression":
103
+ suggest = "cron_expression"
104
+
105
+ if suggest:
106
+ pulumi.log.warn(f"Key '{key}' not found in DesktopPoolAvailabilityPolicyStartSchedule. Access the value via the '{suggest}' property getter instead.")
107
+
108
+ def __getitem__(self, key: str) -> Any:
109
+ DesktopPoolAvailabilityPolicyStartSchedule.__key_warning(key)
110
+ return super().__getitem__(key)
111
+
112
+ def get(self, key: str, default = None) -> Any:
113
+ DesktopPoolAvailabilityPolicyStartSchedule.__key_warning(key)
114
+ return super().get(key, default)
115
+
116
+ def __init__(__self__, *,
117
+ cron_expression: str,
118
+ timezone: str):
119
+ """
120
+ :param str cron_expression: (Updatable) A cron expression describing the desktop's schedule.
121
+ :param str timezone: (Updatable) The timezone of the desktop's schedule.
122
+ """
123
+ pulumi.set(__self__, "cron_expression", cron_expression)
124
+ pulumi.set(__self__, "timezone", timezone)
125
+
126
+ @property
127
+ @pulumi.getter(name="cronExpression")
128
+ def cron_expression(self) -> str:
129
+ """
130
+ (Updatable) A cron expression describing the desktop's schedule.
131
+ """
132
+ return pulumi.get(self, "cron_expression")
133
+
134
+ @property
135
+ @pulumi.getter
136
+ def timezone(self) -> str:
137
+ """
138
+ (Updatable) The timezone of the desktop's schedule.
139
+ """
140
+ return pulumi.get(self, "timezone")
141
+
142
+
143
+ @pulumi.output_type
144
+ class DesktopPoolAvailabilityPolicyStopSchedule(dict):
145
+ @staticmethod
146
+ def __key_warning(key: str):
147
+ suggest = None
148
+ if key == "cronExpression":
149
+ suggest = "cron_expression"
150
+
151
+ if suggest:
152
+ pulumi.log.warn(f"Key '{key}' not found in DesktopPoolAvailabilityPolicyStopSchedule. Access the value via the '{suggest}' property getter instead.")
153
+
154
+ def __getitem__(self, key: str) -> Any:
155
+ DesktopPoolAvailabilityPolicyStopSchedule.__key_warning(key)
156
+ return super().__getitem__(key)
157
+
158
+ def get(self, key: str, default = None) -> Any:
159
+ DesktopPoolAvailabilityPolicyStopSchedule.__key_warning(key)
160
+ return super().get(key, default)
161
+
162
+ def __init__(__self__, *,
163
+ cron_expression: str,
164
+ timezone: str):
165
+ """
166
+ :param str cron_expression: (Updatable) A cron expression describing the desktop's schedule.
167
+ :param str timezone: (Updatable) The timezone of the desktop's schedule.
168
+ """
169
+ pulumi.set(__self__, "cron_expression", cron_expression)
170
+ pulumi.set(__self__, "timezone", timezone)
171
+
172
+ @property
173
+ @pulumi.getter(name="cronExpression")
174
+ def cron_expression(self) -> str:
175
+ """
176
+ (Updatable) A cron expression describing the desktop's schedule.
177
+ """
178
+ return pulumi.get(self, "cron_expression")
179
+
180
+ @property
181
+ @pulumi.getter
182
+ def timezone(self) -> str:
183
+ """
184
+ (Updatable) The timezone of the desktop's schedule.
185
+ """
186
+ return pulumi.get(self, "timezone")
187
+
188
+
189
+ @pulumi.output_type
190
+ class DesktopPoolDevicePolicy(dict):
191
+ @staticmethod
192
+ def __key_warning(key: str):
193
+ suggest = None
194
+ if key == "audioMode":
195
+ suggest = "audio_mode"
196
+ elif key == "cdmMode":
197
+ suggest = "cdm_mode"
198
+ elif key == "clipboardMode":
199
+ suggest = "clipboard_mode"
200
+ elif key == "isDisplayEnabled":
201
+ suggest = "is_display_enabled"
202
+ elif key == "isKeyboardEnabled":
203
+ suggest = "is_keyboard_enabled"
204
+ elif key == "isPointerEnabled":
205
+ suggest = "is_pointer_enabled"
206
+ elif key == "isPrintingEnabled":
207
+ suggest = "is_printing_enabled"
208
+
209
+ if suggest:
210
+ pulumi.log.warn(f"Key '{key}' not found in DesktopPoolDevicePolicy. Access the value via the '{suggest}' property getter instead.")
211
+
212
+ def __getitem__(self, key: str) -> Any:
213
+ DesktopPoolDevicePolicy.__key_warning(key)
214
+ return super().__getitem__(key)
215
+
216
+ def get(self, key: str, default = None) -> Any:
217
+ DesktopPoolDevicePolicy.__key_warning(key)
218
+ return super().get(key, default)
219
+
220
+ def __init__(__self__, *,
221
+ audio_mode: str,
222
+ cdm_mode: str,
223
+ clipboard_mode: str,
224
+ is_display_enabled: bool,
225
+ is_keyboard_enabled: bool,
226
+ is_pointer_enabled: bool,
227
+ is_printing_enabled: bool):
228
+ """
229
+ :param str audio_mode: (Updatable) The audio mode. NONE: No access to the local audio devices is permitted. TODESKTOP: The user may record audio on their desktop. FROMDESKTOP: The user may play audio on their desktop. FULL: The user may play and record audio on their desktop.
230
+ :param str cdm_mode: (Updatable) The client local drive access mode. NONE: No access to local drives permitted. READONLY: The user may read from local drives on their desktop. FULL: The user may read from and write to their local drives on their desktop.
231
+ :param str clipboard_mode: (Updatable) The clipboard mode. NONE: No access to the local clipboard is permitted. TODESKTOP: The clipboard can be used to transfer data to the desktop only. FROMDESKTOP: The clipboard can be used to transfer data from the desktop only. FULL: The clipboard can be used to transfer data to and from the desktop.
232
+ :param bool is_display_enabled: (Updatable) Indicates whether the display is enabled.
233
+ :param bool is_keyboard_enabled: (Updatable) Indicates whether the keyboard is enabled.
234
+ :param bool is_pointer_enabled: (Updatable) Indicates whether the pointer is enabled.
235
+ :param bool is_printing_enabled: (Updatable) Indicates whether printing is enabled.
236
+ """
237
+ pulumi.set(__self__, "audio_mode", audio_mode)
238
+ pulumi.set(__self__, "cdm_mode", cdm_mode)
239
+ pulumi.set(__self__, "clipboard_mode", clipboard_mode)
240
+ pulumi.set(__self__, "is_display_enabled", is_display_enabled)
241
+ pulumi.set(__self__, "is_keyboard_enabled", is_keyboard_enabled)
242
+ pulumi.set(__self__, "is_pointer_enabled", is_pointer_enabled)
243
+ pulumi.set(__self__, "is_printing_enabled", is_printing_enabled)
244
+
245
+ @property
246
+ @pulumi.getter(name="audioMode")
247
+ def audio_mode(self) -> str:
248
+ """
249
+ (Updatable) The audio mode. NONE: No access to the local audio devices is permitted. TODESKTOP: The user may record audio on their desktop. FROMDESKTOP: The user may play audio on their desktop. FULL: The user may play and record audio on their desktop.
250
+ """
251
+ return pulumi.get(self, "audio_mode")
252
+
253
+ @property
254
+ @pulumi.getter(name="cdmMode")
255
+ def cdm_mode(self) -> str:
256
+ """
257
+ (Updatable) The client local drive access mode. NONE: No access to local drives permitted. READONLY: The user may read from local drives on their desktop. FULL: The user may read from and write to their local drives on their desktop.
258
+ """
259
+ return pulumi.get(self, "cdm_mode")
260
+
261
+ @property
262
+ @pulumi.getter(name="clipboardMode")
263
+ def clipboard_mode(self) -> str:
264
+ """
265
+ (Updatable) The clipboard mode. NONE: No access to the local clipboard is permitted. TODESKTOP: The clipboard can be used to transfer data to the desktop only. FROMDESKTOP: The clipboard can be used to transfer data from the desktop only. FULL: The clipboard can be used to transfer data to and from the desktop.
266
+ """
267
+ return pulumi.get(self, "clipboard_mode")
268
+
269
+ @property
270
+ @pulumi.getter(name="isDisplayEnabled")
271
+ def is_display_enabled(self) -> bool:
272
+ """
273
+ (Updatable) Indicates whether the display is enabled.
274
+ """
275
+ return pulumi.get(self, "is_display_enabled")
276
+
277
+ @property
278
+ @pulumi.getter(name="isKeyboardEnabled")
279
+ def is_keyboard_enabled(self) -> bool:
280
+ """
281
+ (Updatable) Indicates whether the keyboard is enabled.
282
+ """
283
+ return pulumi.get(self, "is_keyboard_enabled")
284
+
285
+ @property
286
+ @pulumi.getter(name="isPointerEnabled")
287
+ def is_pointer_enabled(self) -> bool:
288
+ """
289
+ (Updatable) Indicates whether the pointer is enabled.
290
+ """
291
+ return pulumi.get(self, "is_pointer_enabled")
292
+
293
+ @property
294
+ @pulumi.getter(name="isPrintingEnabled")
295
+ def is_printing_enabled(self) -> bool:
296
+ """
297
+ (Updatable) Indicates whether printing is enabled.
298
+ """
299
+ return pulumi.get(self, "is_printing_enabled")
300
+
301
+
302
+ @pulumi.output_type
303
+ class DesktopPoolImage(dict):
304
+ @staticmethod
305
+ def __key_warning(key: str):
306
+ suggest = None
307
+ if key == "imageId":
308
+ suggest = "image_id"
309
+ elif key == "imageName":
310
+ suggest = "image_name"
311
+
312
+ if suggest:
313
+ pulumi.log.warn(f"Key '{key}' not found in DesktopPoolImage. Access the value via the '{suggest}' property getter instead.")
314
+
315
+ def __getitem__(self, key: str) -> Any:
316
+ DesktopPoolImage.__key_warning(key)
317
+ return super().__getitem__(key)
318
+
319
+ def get(self, key: str, default = None) -> Any:
320
+ DesktopPoolImage.__key_warning(key)
321
+ return super().get(key, default)
322
+
323
+ def __init__(__self__, *,
324
+ image_id: str,
325
+ image_name: str):
326
+ """
327
+ :param str image_id: The OCID of the desktop image.
328
+ :param str image_name: The name of the desktop image.
329
+ """
330
+ pulumi.set(__self__, "image_id", image_id)
331
+ pulumi.set(__self__, "image_name", image_name)
332
+
333
+ @property
334
+ @pulumi.getter(name="imageId")
335
+ def image_id(self) -> str:
336
+ """
337
+ The OCID of the desktop image.
338
+ """
339
+ return pulumi.get(self, "image_id")
340
+
341
+ @property
342
+ @pulumi.getter(name="imageName")
343
+ def image_name(self) -> str:
344
+ """
345
+ The name of the desktop image.
346
+ """
347
+ return pulumi.get(self, "image_name")
348
+
349
+
350
+ @pulumi.output_type
351
+ class DesktopPoolNetworkConfiguration(dict):
352
+ @staticmethod
353
+ def __key_warning(key: str):
354
+ suggest = None
355
+ if key == "subnetId":
356
+ suggest = "subnet_id"
357
+ elif key == "vcnId":
358
+ suggest = "vcn_id"
359
+
360
+ if suggest:
361
+ pulumi.log.warn(f"Key '{key}' not found in DesktopPoolNetworkConfiguration. Access the value via the '{suggest}' property getter instead.")
362
+
363
+ def __getitem__(self, key: str) -> Any:
364
+ DesktopPoolNetworkConfiguration.__key_warning(key)
365
+ return super().__getitem__(key)
366
+
367
+ def get(self, key: str, default = None) -> Any:
368
+ DesktopPoolNetworkConfiguration.__key_warning(key)
369
+ return super().get(key, default)
370
+
371
+ def __init__(__self__, *,
372
+ subnet_id: str,
373
+ vcn_id: str):
374
+ """
375
+ :param str subnet_id: The OCID of the subnet to use for the desktop pool.
376
+ :param str vcn_id: The OCID of the VCN used by the desktop pool.
377
+ """
378
+ pulumi.set(__self__, "subnet_id", subnet_id)
379
+ pulumi.set(__self__, "vcn_id", vcn_id)
380
+
381
+ @property
382
+ @pulumi.getter(name="subnetId")
383
+ def subnet_id(self) -> str:
384
+ """
385
+ The OCID of the subnet to use for the desktop pool.
386
+ """
387
+ return pulumi.get(self, "subnet_id")
388
+
389
+ @property
390
+ @pulumi.getter(name="vcnId")
391
+ def vcn_id(self) -> str:
392
+ """
393
+ The OCID of the VCN used by the desktop pool.
394
+ """
395
+ return pulumi.get(self, "vcn_id")
396
+
397
+
398
+ @pulumi.output_type
399
+ class GetDesktopDevicePolicyResult(dict):
400
+ def __init__(__self__, *,
401
+ audio_mode: str,
402
+ cdm_mode: str,
403
+ clipboard_mode: str,
404
+ is_display_enabled: bool,
405
+ is_keyboard_enabled: bool,
406
+ is_pointer_enabled: bool,
407
+ is_printing_enabled: bool):
408
+ """
409
+ :param str audio_mode: The audio mode. NONE: No access to the local audio devices is permitted. TODESKTOP: The user may record audio on their desktop. FROMDESKTOP: The user may play audio on their desktop. FULL: The user may play and record audio on their desktop.
410
+ :param str cdm_mode: The client local drive access mode. NONE: No access to local drives permitted. READONLY: The user may read from local drives on their desktop. FULL: The user may read from and write to their local drives on their desktop.
411
+ :param str clipboard_mode: The clipboard mode. NONE: No access to the local clipboard is permitted. TODESKTOP: The clipboard can be used to transfer data to the desktop only. FROMDESKTOP: The clipboard can be used to transfer data from the desktop only. FULL: The clipboard can be used to transfer data to and from the desktop.
412
+ :param bool is_display_enabled: Indicates whether the display is enabled.
413
+ :param bool is_keyboard_enabled: Indicates whether the keyboard is enabled.
414
+ :param bool is_pointer_enabled: Indicates whether the pointer is enabled.
415
+ :param bool is_printing_enabled: Indicates whether printing is enabled.
416
+ """
417
+ pulumi.set(__self__, "audio_mode", audio_mode)
418
+ pulumi.set(__self__, "cdm_mode", cdm_mode)
419
+ pulumi.set(__self__, "clipboard_mode", clipboard_mode)
420
+ pulumi.set(__self__, "is_display_enabled", is_display_enabled)
421
+ pulumi.set(__self__, "is_keyboard_enabled", is_keyboard_enabled)
422
+ pulumi.set(__self__, "is_pointer_enabled", is_pointer_enabled)
423
+ pulumi.set(__self__, "is_printing_enabled", is_printing_enabled)
424
+
425
+ @property
426
+ @pulumi.getter(name="audioMode")
427
+ def audio_mode(self) -> str:
428
+ """
429
+ The audio mode. NONE: No access to the local audio devices is permitted. TODESKTOP: The user may record audio on their desktop. FROMDESKTOP: The user may play audio on their desktop. FULL: The user may play and record audio on their desktop.
430
+ """
431
+ return pulumi.get(self, "audio_mode")
432
+
433
+ @property
434
+ @pulumi.getter(name="cdmMode")
435
+ def cdm_mode(self) -> str:
436
+ """
437
+ The client local drive access mode. NONE: No access to local drives permitted. READONLY: The user may read from local drives on their desktop. FULL: The user may read from and write to their local drives on their desktop.
438
+ """
439
+ return pulumi.get(self, "cdm_mode")
440
+
441
+ @property
442
+ @pulumi.getter(name="clipboardMode")
443
+ def clipboard_mode(self) -> str:
444
+ """
445
+ The clipboard mode. NONE: No access to the local clipboard is permitted. TODESKTOP: The clipboard can be used to transfer data to the desktop only. FROMDESKTOP: The clipboard can be used to transfer data from the desktop only. FULL: The clipboard can be used to transfer data to and from the desktop.
446
+ """
447
+ return pulumi.get(self, "clipboard_mode")
448
+
449
+ @property
450
+ @pulumi.getter(name="isDisplayEnabled")
451
+ def is_display_enabled(self) -> bool:
452
+ """
453
+ Indicates whether the display is enabled.
454
+ """
455
+ return pulumi.get(self, "is_display_enabled")
456
+
457
+ @property
458
+ @pulumi.getter(name="isKeyboardEnabled")
459
+ def is_keyboard_enabled(self) -> bool:
460
+ """
461
+ Indicates whether the keyboard is enabled.
462
+ """
463
+ return pulumi.get(self, "is_keyboard_enabled")
464
+
465
+ @property
466
+ @pulumi.getter(name="isPointerEnabled")
467
+ def is_pointer_enabled(self) -> bool:
468
+ """
469
+ Indicates whether the pointer is enabled.
470
+ """
471
+ return pulumi.get(self, "is_pointer_enabled")
472
+
473
+ @property
474
+ @pulumi.getter(name="isPrintingEnabled")
475
+ def is_printing_enabled(self) -> bool:
476
+ """
477
+ Indicates whether printing is enabled.
478
+ """
479
+ return pulumi.get(self, "is_printing_enabled")
480
+
481
+
482
+ @pulumi.output_type
483
+ class GetDesktopHostingOptionResult(dict):
484
+ def __init__(__self__, *,
485
+ connect_address: str,
486
+ images: Sequence['outputs.GetDesktopHostingOptionImageResult']):
487
+ """
488
+ :param str connect_address: The connection address of the desktop.
489
+ :param Sequence['GetDesktopHostingOptionImageArgs'] images: Provides information about the desktop image.
490
+ """
491
+ pulumi.set(__self__, "connect_address", connect_address)
492
+ pulumi.set(__self__, "images", images)
493
+
494
+ @property
495
+ @pulumi.getter(name="connectAddress")
496
+ def connect_address(self) -> str:
497
+ """
498
+ The connection address of the desktop.
499
+ """
500
+ return pulumi.get(self, "connect_address")
501
+
502
+ @property
503
+ @pulumi.getter
504
+ def images(self) -> Sequence['outputs.GetDesktopHostingOptionImageResult']:
505
+ """
506
+ Provides information about the desktop image.
507
+ """
508
+ return pulumi.get(self, "images")
509
+
510
+
511
+ @pulumi.output_type
512
+ class GetDesktopHostingOptionImageResult(dict):
513
+ def __init__(__self__, *,
514
+ image_id: str,
515
+ image_name: str):
516
+ """
517
+ :param str image_id: The OCID of the desktop image.
518
+ :param str image_name: The name of the desktop image.
519
+ """
520
+ pulumi.set(__self__, "image_id", image_id)
521
+ pulumi.set(__self__, "image_name", image_name)
522
+
523
+ @property
524
+ @pulumi.getter(name="imageId")
525
+ def image_id(self) -> str:
526
+ """
527
+ The OCID of the desktop image.
528
+ """
529
+ return pulumi.get(self, "image_id")
530
+
531
+ @property
532
+ @pulumi.getter(name="imageName")
533
+ def image_name(self) -> str:
534
+ """
535
+ The name of the desktop image.
536
+ """
537
+ return pulumi.get(self, "image_name")
538
+
539
+
540
+ @pulumi.output_type
541
+ class GetDesktopPoolAvailabilityPolicyResult(dict):
542
+ def __init__(__self__, *,
543
+ start_schedules: Sequence['outputs.GetDesktopPoolAvailabilityPolicyStartScheduleResult'],
544
+ stop_schedules: Sequence['outputs.GetDesktopPoolAvailabilityPolicyStopScheduleResult']):
545
+ """
546
+ :param Sequence['GetDesktopPoolAvailabilityPolicyStartScheduleArgs'] start_schedules: Provides the schedule information for a desktop.
547
+ :param Sequence['GetDesktopPoolAvailabilityPolicyStopScheduleArgs'] stop_schedules: Provides the schedule information for a desktop.
548
+ """
549
+ pulumi.set(__self__, "start_schedules", start_schedules)
550
+ pulumi.set(__self__, "stop_schedules", stop_schedules)
551
+
552
+ @property
553
+ @pulumi.getter(name="startSchedules")
554
+ def start_schedules(self) -> Sequence['outputs.GetDesktopPoolAvailabilityPolicyStartScheduleResult']:
555
+ """
556
+ Provides the schedule information for a desktop.
557
+ """
558
+ return pulumi.get(self, "start_schedules")
559
+
560
+ @property
561
+ @pulumi.getter(name="stopSchedules")
562
+ def stop_schedules(self) -> Sequence['outputs.GetDesktopPoolAvailabilityPolicyStopScheduleResult']:
563
+ """
564
+ Provides the schedule information for a desktop.
565
+ """
566
+ return pulumi.get(self, "stop_schedules")
567
+
568
+
569
+ @pulumi.output_type
570
+ class GetDesktopPoolAvailabilityPolicyStartScheduleResult(dict):
571
+ def __init__(__self__, *,
572
+ cron_expression: str,
573
+ timezone: str):
574
+ """
575
+ :param str cron_expression: A cron expression describing the desktop's schedule.
576
+ :param str timezone: The timezone of the desktop's schedule.
577
+ """
578
+ pulumi.set(__self__, "cron_expression", cron_expression)
579
+ pulumi.set(__self__, "timezone", timezone)
580
+
581
+ @property
582
+ @pulumi.getter(name="cronExpression")
583
+ def cron_expression(self) -> str:
584
+ """
585
+ A cron expression describing the desktop's schedule.
586
+ """
587
+ return pulumi.get(self, "cron_expression")
588
+
589
+ @property
590
+ @pulumi.getter
591
+ def timezone(self) -> str:
592
+ """
593
+ The timezone of the desktop's schedule.
594
+ """
595
+ return pulumi.get(self, "timezone")
596
+
597
+
598
+ @pulumi.output_type
599
+ class GetDesktopPoolAvailabilityPolicyStopScheduleResult(dict):
600
+ def __init__(__self__, *,
601
+ cron_expression: str,
602
+ timezone: str):
603
+ """
604
+ :param str cron_expression: A cron expression describing the desktop's schedule.
605
+ :param str timezone: The timezone of the desktop's schedule.
606
+ """
607
+ pulumi.set(__self__, "cron_expression", cron_expression)
608
+ pulumi.set(__self__, "timezone", timezone)
609
+
610
+ @property
611
+ @pulumi.getter(name="cronExpression")
612
+ def cron_expression(self) -> str:
613
+ """
614
+ A cron expression describing the desktop's schedule.
615
+ """
616
+ return pulumi.get(self, "cron_expression")
617
+
618
+ @property
619
+ @pulumi.getter
620
+ def timezone(self) -> str:
621
+ """
622
+ The timezone of the desktop's schedule.
623
+ """
624
+ return pulumi.get(self, "timezone")
625
+
626
+
627
+ @pulumi.output_type
628
+ class GetDesktopPoolDesktopsDesktopPoolDesktopCollectionResult(dict):
629
+ def __init__(__self__, *,
630
+ items: Sequence['outputs.GetDesktopPoolDesktopsDesktopPoolDesktopCollectionItemResult']):
631
+ """
632
+ :param Sequence['GetDesktopPoolDesktopsDesktopPoolDesktopCollectionItemArgs'] items: A list of desktops.
633
+ """
634
+ pulumi.set(__self__, "items", items)
635
+
636
+ @property
637
+ @pulumi.getter
638
+ def items(self) -> Sequence['outputs.GetDesktopPoolDesktopsDesktopPoolDesktopCollectionItemResult']:
639
+ """
640
+ A list of desktops.
641
+ """
642
+ return pulumi.get(self, "items")
643
+
644
+
645
+ @pulumi.output_type
646
+ class GetDesktopPoolDesktopsDesktopPoolDesktopCollectionItemResult(dict):
647
+ def __init__(__self__, *,
648
+ defined_tags: Mapping[str, str],
649
+ desktop_id: str,
650
+ freeform_tags: Mapping[str, str],
651
+ instance_id: str,
652
+ is_assigned: bool,
653
+ state: str,
654
+ time_created: str,
655
+ user_name: str):
656
+ """
657
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
658
+ :param str desktop_id: The OCID of the desktop.
659
+ :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
660
+ :param str instance_id: The OCID of the compute resource used by this desktop.
661
+ :param bool is_assigned: Indicates whether the desktop is assigned to a user.
662
+ :param str state: A filter to return only results with the given lifecycleState.
663
+ :param str time_created: The date and time the resource was created.
664
+ :param str user_name: The owner of the desktop.
665
+ """
666
+ pulumi.set(__self__, "defined_tags", defined_tags)
667
+ pulumi.set(__self__, "desktop_id", desktop_id)
668
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
669
+ pulumi.set(__self__, "instance_id", instance_id)
670
+ pulumi.set(__self__, "is_assigned", is_assigned)
671
+ pulumi.set(__self__, "state", state)
672
+ pulumi.set(__self__, "time_created", time_created)
673
+ pulumi.set(__self__, "user_name", user_name)
674
+
675
+ @property
676
+ @pulumi.getter(name="definedTags")
677
+ def defined_tags(self) -> Mapping[str, str]:
678
+ """
679
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
680
+ """
681
+ return pulumi.get(self, "defined_tags")
682
+
683
+ @property
684
+ @pulumi.getter(name="desktopId")
685
+ def desktop_id(self) -> str:
686
+ """
687
+ The OCID of the desktop.
688
+ """
689
+ return pulumi.get(self, "desktop_id")
690
+
691
+ @property
692
+ @pulumi.getter(name="freeformTags")
693
+ def freeform_tags(self) -> Mapping[str, str]:
694
+ """
695
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
696
+ """
697
+ return pulumi.get(self, "freeform_tags")
698
+
699
+ @property
700
+ @pulumi.getter(name="instanceId")
701
+ def instance_id(self) -> str:
702
+ """
703
+ The OCID of the compute resource used by this desktop.
704
+ """
705
+ return pulumi.get(self, "instance_id")
706
+
707
+ @property
708
+ @pulumi.getter(name="isAssigned")
709
+ def is_assigned(self) -> bool:
710
+ """
711
+ Indicates whether the desktop is assigned to a user.
712
+ """
713
+ return pulumi.get(self, "is_assigned")
714
+
715
+ @property
716
+ @pulumi.getter
717
+ def state(self) -> str:
718
+ """
719
+ A filter to return only results with the given lifecycleState.
720
+ """
721
+ return pulumi.get(self, "state")
722
+
723
+ @property
724
+ @pulumi.getter(name="timeCreated")
725
+ def time_created(self) -> str:
726
+ """
727
+ The date and time the resource was created.
728
+ """
729
+ return pulumi.get(self, "time_created")
730
+
731
+ @property
732
+ @pulumi.getter(name="userName")
733
+ def user_name(self) -> str:
734
+ """
735
+ The owner of the desktop.
736
+ """
737
+ return pulumi.get(self, "user_name")
738
+
739
+
740
+ @pulumi.output_type
741
+ class GetDesktopPoolDesktopsFilterResult(dict):
742
+ def __init__(__self__, *,
743
+ name: str,
744
+ values: Sequence[str],
745
+ regex: Optional[bool] = None):
746
+ pulumi.set(__self__, "name", name)
747
+ pulumi.set(__self__, "values", values)
748
+ if regex is not None:
749
+ pulumi.set(__self__, "regex", regex)
750
+
751
+ @property
752
+ @pulumi.getter
753
+ def name(self) -> str:
754
+ return pulumi.get(self, "name")
755
+
756
+ @property
757
+ @pulumi.getter
758
+ def values(self) -> Sequence[str]:
759
+ return pulumi.get(self, "values")
760
+
761
+ @property
762
+ @pulumi.getter
763
+ def regex(self) -> Optional[bool]:
764
+ return pulumi.get(self, "regex")
765
+
766
+
767
+ @pulumi.output_type
768
+ class GetDesktopPoolDevicePolicyResult(dict):
769
+ def __init__(__self__, *,
770
+ audio_mode: str,
771
+ cdm_mode: str,
772
+ clipboard_mode: str,
773
+ is_display_enabled: bool,
774
+ is_keyboard_enabled: bool,
775
+ is_pointer_enabled: bool,
776
+ is_printing_enabled: bool):
777
+ """
778
+ :param str audio_mode: The audio mode. NONE: No access to the local audio devices is permitted. TODESKTOP: The user may record audio on their desktop. FROMDESKTOP: The user may play audio on their desktop. FULL: The user may play and record audio on their desktop.
779
+ :param str cdm_mode: The client local drive access mode. NONE: No access to local drives permitted. READONLY: The user may read from local drives on their desktop. FULL: The user may read from and write to their local drives on their desktop.
780
+ :param str clipboard_mode: The clipboard mode. NONE: No access to the local clipboard is permitted. TODESKTOP: The clipboard can be used to transfer data to the desktop only. FROMDESKTOP: The clipboard can be used to transfer data from the desktop only. FULL: The clipboard can be used to transfer data to and from the desktop.
781
+ :param bool is_display_enabled: Indicates whether the display is enabled.
782
+ :param bool is_keyboard_enabled: Indicates whether the keyboard is enabled.
783
+ :param bool is_pointer_enabled: Indicates whether the pointer is enabled.
784
+ :param bool is_printing_enabled: Indicates whether printing is enabled.
785
+ """
786
+ pulumi.set(__self__, "audio_mode", audio_mode)
787
+ pulumi.set(__self__, "cdm_mode", cdm_mode)
788
+ pulumi.set(__self__, "clipboard_mode", clipboard_mode)
789
+ pulumi.set(__self__, "is_display_enabled", is_display_enabled)
790
+ pulumi.set(__self__, "is_keyboard_enabled", is_keyboard_enabled)
791
+ pulumi.set(__self__, "is_pointer_enabled", is_pointer_enabled)
792
+ pulumi.set(__self__, "is_printing_enabled", is_printing_enabled)
793
+
794
+ @property
795
+ @pulumi.getter(name="audioMode")
796
+ def audio_mode(self) -> str:
797
+ """
798
+ The audio mode. NONE: No access to the local audio devices is permitted. TODESKTOP: The user may record audio on their desktop. FROMDESKTOP: The user may play audio on their desktop. FULL: The user may play and record audio on their desktop.
799
+ """
800
+ return pulumi.get(self, "audio_mode")
801
+
802
+ @property
803
+ @pulumi.getter(name="cdmMode")
804
+ def cdm_mode(self) -> str:
805
+ """
806
+ The client local drive access mode. NONE: No access to local drives permitted. READONLY: The user may read from local drives on their desktop. FULL: The user may read from and write to their local drives on their desktop.
807
+ """
808
+ return pulumi.get(self, "cdm_mode")
809
+
810
+ @property
811
+ @pulumi.getter(name="clipboardMode")
812
+ def clipboard_mode(self) -> str:
813
+ """
814
+ The clipboard mode. NONE: No access to the local clipboard is permitted. TODESKTOP: The clipboard can be used to transfer data to the desktop only. FROMDESKTOP: The clipboard can be used to transfer data from the desktop only. FULL: The clipboard can be used to transfer data to and from the desktop.
815
+ """
816
+ return pulumi.get(self, "clipboard_mode")
817
+
818
+ @property
819
+ @pulumi.getter(name="isDisplayEnabled")
820
+ def is_display_enabled(self) -> bool:
821
+ """
822
+ Indicates whether the display is enabled.
823
+ """
824
+ return pulumi.get(self, "is_display_enabled")
825
+
826
+ @property
827
+ @pulumi.getter(name="isKeyboardEnabled")
828
+ def is_keyboard_enabled(self) -> bool:
829
+ """
830
+ Indicates whether the keyboard is enabled.
831
+ """
832
+ return pulumi.get(self, "is_keyboard_enabled")
833
+
834
+ @property
835
+ @pulumi.getter(name="isPointerEnabled")
836
+ def is_pointer_enabled(self) -> bool:
837
+ """
838
+ Indicates whether the pointer is enabled.
839
+ """
840
+ return pulumi.get(self, "is_pointer_enabled")
841
+
842
+ @property
843
+ @pulumi.getter(name="isPrintingEnabled")
844
+ def is_printing_enabled(self) -> bool:
845
+ """
846
+ Indicates whether printing is enabled.
847
+ """
848
+ return pulumi.get(self, "is_printing_enabled")
849
+
850
+
851
+ @pulumi.output_type
852
+ class GetDesktopPoolImageResult(dict):
853
+ def __init__(__self__, *,
854
+ image_id: str,
855
+ image_name: str):
856
+ """
857
+ :param str image_id: The OCID of the desktop image.
858
+ :param str image_name: The name of the desktop image.
859
+ """
860
+ pulumi.set(__self__, "image_id", image_id)
861
+ pulumi.set(__self__, "image_name", image_name)
862
+
863
+ @property
864
+ @pulumi.getter(name="imageId")
865
+ def image_id(self) -> str:
866
+ """
867
+ The OCID of the desktop image.
868
+ """
869
+ return pulumi.get(self, "image_id")
870
+
871
+ @property
872
+ @pulumi.getter(name="imageName")
873
+ def image_name(self) -> str:
874
+ """
875
+ The name of the desktop image.
876
+ """
877
+ return pulumi.get(self, "image_name")
878
+
879
+
880
+ @pulumi.output_type
881
+ class GetDesktopPoolNetworkConfigurationResult(dict):
882
+ def __init__(__self__, *,
883
+ subnet_id: str,
884
+ vcn_id: str):
885
+ """
886
+ :param str subnet_id: The OCID of the subnet to use for the desktop pool.
887
+ :param str vcn_id: The OCID of the VCN used by the desktop pool.
888
+ """
889
+ pulumi.set(__self__, "subnet_id", subnet_id)
890
+ pulumi.set(__self__, "vcn_id", vcn_id)
891
+
892
+ @property
893
+ @pulumi.getter(name="subnetId")
894
+ def subnet_id(self) -> str:
895
+ """
896
+ The OCID of the subnet to use for the desktop pool.
897
+ """
898
+ return pulumi.get(self, "subnet_id")
899
+
900
+ @property
901
+ @pulumi.getter(name="vcnId")
902
+ def vcn_id(self) -> str:
903
+ """
904
+ The OCID of the VCN used by the desktop pool.
905
+ """
906
+ return pulumi.get(self, "vcn_id")
907
+
908
+
909
+ @pulumi.output_type
910
+ class GetDesktopPoolVolumesDesktopPoolVolumeCollectionResult(dict):
911
+ def __init__(__self__, *,
912
+ items: Sequence['outputs.GetDesktopPoolVolumesDesktopPoolVolumeCollectionItemResult']):
913
+ """
914
+ :param Sequence['GetDesktopPoolVolumesDesktopPoolVolumeCollectionItemArgs'] items: A list of desktop pool volumes.
915
+ """
916
+ pulumi.set(__self__, "items", items)
917
+
918
+ @property
919
+ @pulumi.getter
920
+ def items(self) -> Sequence['outputs.GetDesktopPoolVolumesDesktopPoolVolumeCollectionItemResult']:
921
+ """
922
+ A list of desktop pool volumes.
923
+ """
924
+ return pulumi.get(self, "items")
925
+
926
+
927
+ @pulumi.output_type
928
+ class GetDesktopPoolVolumesDesktopPoolVolumeCollectionItemResult(dict):
929
+ def __init__(__self__, *,
930
+ availability_domain: str,
931
+ defined_tags: Mapping[str, str],
932
+ freeform_tags: Mapping[str, str],
933
+ id: str,
934
+ name: str,
935
+ pool_id: str,
936
+ state: str,
937
+ user_name: str):
938
+ """
939
+ :param str availability_domain: The name of the availability domain.
940
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
941
+ :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
942
+ :param str id: A filter to return only results with the given OCID.
943
+ :param str name: The name of the desktop pool volume.
944
+ :param str pool_id: The OCID of the desktop pool to which this volume belongs.
945
+ :param str state: A filter to return only results with the given lifecycleState.
946
+ :param str user_name: The owner of the desktop pool volume.
947
+ """
948
+ pulumi.set(__self__, "availability_domain", availability_domain)
949
+ pulumi.set(__self__, "defined_tags", defined_tags)
950
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
951
+ pulumi.set(__self__, "id", id)
952
+ pulumi.set(__self__, "name", name)
953
+ pulumi.set(__self__, "pool_id", pool_id)
954
+ pulumi.set(__self__, "state", state)
955
+ pulumi.set(__self__, "user_name", user_name)
956
+
957
+ @property
958
+ @pulumi.getter(name="availabilityDomain")
959
+ def availability_domain(self) -> str:
960
+ """
961
+ The name of the availability domain.
962
+ """
963
+ return pulumi.get(self, "availability_domain")
964
+
965
+ @property
966
+ @pulumi.getter(name="definedTags")
967
+ def defined_tags(self) -> Mapping[str, str]:
968
+ """
969
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
970
+ """
971
+ return pulumi.get(self, "defined_tags")
972
+
973
+ @property
974
+ @pulumi.getter(name="freeformTags")
975
+ def freeform_tags(self) -> Mapping[str, str]:
976
+ """
977
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
978
+ """
979
+ return pulumi.get(self, "freeform_tags")
980
+
981
+ @property
982
+ @pulumi.getter
983
+ def id(self) -> str:
984
+ """
985
+ A filter to return only results with the given OCID.
986
+ """
987
+ return pulumi.get(self, "id")
988
+
989
+ @property
990
+ @pulumi.getter
991
+ def name(self) -> str:
992
+ """
993
+ The name of the desktop pool volume.
994
+ """
995
+ return pulumi.get(self, "name")
996
+
997
+ @property
998
+ @pulumi.getter(name="poolId")
999
+ def pool_id(self) -> str:
1000
+ """
1001
+ The OCID of the desktop pool to which this volume belongs.
1002
+ """
1003
+ return pulumi.get(self, "pool_id")
1004
+
1005
+ @property
1006
+ @pulumi.getter
1007
+ def state(self) -> str:
1008
+ """
1009
+ A filter to return only results with the given lifecycleState.
1010
+ """
1011
+ return pulumi.get(self, "state")
1012
+
1013
+ @property
1014
+ @pulumi.getter(name="userName")
1015
+ def user_name(self) -> str:
1016
+ """
1017
+ The owner of the desktop pool volume.
1018
+ """
1019
+ return pulumi.get(self, "user_name")
1020
+
1021
+
1022
+ @pulumi.output_type
1023
+ class GetDesktopPoolVolumesFilterResult(dict):
1024
+ def __init__(__self__, *,
1025
+ name: str,
1026
+ values: Sequence[str],
1027
+ regex: Optional[bool] = None):
1028
+ """
1029
+ :param str name: The name of the desktop pool volume.
1030
+ """
1031
+ pulumi.set(__self__, "name", name)
1032
+ pulumi.set(__self__, "values", values)
1033
+ if regex is not None:
1034
+ pulumi.set(__self__, "regex", regex)
1035
+
1036
+ @property
1037
+ @pulumi.getter
1038
+ def name(self) -> str:
1039
+ """
1040
+ The name of the desktop pool volume.
1041
+ """
1042
+ return pulumi.get(self, "name")
1043
+
1044
+ @property
1045
+ @pulumi.getter
1046
+ def values(self) -> Sequence[str]:
1047
+ return pulumi.get(self, "values")
1048
+
1049
+ @property
1050
+ @pulumi.getter
1051
+ def regex(self) -> Optional[bool]:
1052
+ return pulumi.get(self, "regex")
1053
+
1054
+
1055
+ @pulumi.output_type
1056
+ class GetDesktopPoolsDesktopPoolCollectionResult(dict):
1057
+ def __init__(__self__, *,
1058
+ items: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemResult']):
1059
+ pulumi.set(__self__, "items", items)
1060
+
1061
+ @property
1062
+ @pulumi.getter
1063
+ def items(self) -> Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemResult']:
1064
+ return pulumi.get(self, "items")
1065
+
1066
+
1067
+ @pulumi.output_type
1068
+ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
1069
+ def __init__(__self__, *,
1070
+ active_desktops: int,
1071
+ are_privileged_users: bool,
1072
+ availability_domain: str,
1073
+ availability_policies: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemAvailabilityPolicyResult'],
1074
+ compartment_id: str,
1075
+ contact_details: str,
1076
+ defined_tags: Mapping[str, str],
1077
+ description: str,
1078
+ device_policies: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemDevicePolicyResult'],
1079
+ display_name: str,
1080
+ freeform_tags: Mapping[str, str],
1081
+ id: str,
1082
+ images: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemImageResult'],
1083
+ is_storage_enabled: bool,
1084
+ maximum_size: int,
1085
+ network_configurations: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult'],
1086
+ nsg_ids: Sequence[str],
1087
+ shape_name: str,
1088
+ standby_size: int,
1089
+ state: str,
1090
+ storage_backup_policy_id: str,
1091
+ storage_size_in_gbs: int,
1092
+ time_created: str,
1093
+ time_start_scheduled: str,
1094
+ time_stop_scheduled: str):
1095
+ """
1096
+ :param int active_desktops: The number of active desktops in the desktop pool.
1097
+ :param bool are_privileged_users: Indicates whether desktop pool users have administrative privileges on their desktop.
1098
+ :param str availability_domain: The name of the availability domain.
1099
+ :param Sequence['GetDesktopPoolsDesktopPoolCollectionItemAvailabilityPolicyArgs'] availability_policies: Provides the start and stop schedule information for desktop availability of the desktop pool.
1100
+ :param str compartment_id: The OCID of the compartment of the desktop pool.
1101
+ :param str contact_details: Contact information of the desktop pool administrator. Avoid entering confidential information.
1102
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
1103
+ :param str description: A user friendly description providing additional information about the resource. Avoid entering confidential information.
1104
+ :param Sequence['GetDesktopPoolsDesktopPoolCollectionItemDevicePolicyArgs'] device_policies: Provides the settings for desktop and client device options, such as audio in and out, client drive mapping, and clipboard access.
1105
+ :param str display_name: A filter to return only results with the given displayName.
1106
+ :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
1107
+ :param str id: A filter to return only results with the given OCID.
1108
+ :param Sequence['GetDesktopPoolsDesktopPoolCollectionItemImageArgs'] images: Provides information about the desktop image.
1109
+ :param bool is_storage_enabled: Indicates whether storage is enabled for the desktop pool.
1110
+ :param int maximum_size: The maximum number of desktops permitted in the desktop pool.
1111
+ :param Sequence['GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationArgs'] network_configurations: Provides information about the network configuration of the desktop pool.
1112
+ :param Sequence[str] nsg_ids: A list of network security groups for the desktop pool.
1113
+ :param str shape_name: The shape of the desktop pool.
1114
+ :param int standby_size: The maximum number of standby desktops available in the desktop pool.
1115
+ :param str state: A filter to return only results with the given lifecycleState.
1116
+ :param str storage_backup_policy_id: The backup policy OCID of the storage.
1117
+ :param int storage_size_in_gbs: The size in GBs of the storage for the desktop pool.
1118
+ :param str time_created: The date and time the resource was created.
1119
+ :param str time_start_scheduled: The start time of the desktop pool.
1120
+ :param str time_stop_scheduled: The stop time of the desktop pool.
1121
+ """
1122
+ pulumi.set(__self__, "active_desktops", active_desktops)
1123
+ pulumi.set(__self__, "are_privileged_users", are_privileged_users)
1124
+ pulumi.set(__self__, "availability_domain", availability_domain)
1125
+ pulumi.set(__self__, "availability_policies", availability_policies)
1126
+ pulumi.set(__self__, "compartment_id", compartment_id)
1127
+ pulumi.set(__self__, "contact_details", contact_details)
1128
+ pulumi.set(__self__, "defined_tags", defined_tags)
1129
+ pulumi.set(__self__, "description", description)
1130
+ pulumi.set(__self__, "device_policies", device_policies)
1131
+ pulumi.set(__self__, "display_name", display_name)
1132
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
1133
+ pulumi.set(__self__, "id", id)
1134
+ pulumi.set(__self__, "images", images)
1135
+ pulumi.set(__self__, "is_storage_enabled", is_storage_enabled)
1136
+ pulumi.set(__self__, "maximum_size", maximum_size)
1137
+ pulumi.set(__self__, "network_configurations", network_configurations)
1138
+ pulumi.set(__self__, "nsg_ids", nsg_ids)
1139
+ pulumi.set(__self__, "shape_name", shape_name)
1140
+ pulumi.set(__self__, "standby_size", standby_size)
1141
+ pulumi.set(__self__, "state", state)
1142
+ pulumi.set(__self__, "storage_backup_policy_id", storage_backup_policy_id)
1143
+ pulumi.set(__self__, "storage_size_in_gbs", storage_size_in_gbs)
1144
+ pulumi.set(__self__, "time_created", time_created)
1145
+ pulumi.set(__self__, "time_start_scheduled", time_start_scheduled)
1146
+ pulumi.set(__self__, "time_stop_scheduled", time_stop_scheduled)
1147
+
1148
+ @property
1149
+ @pulumi.getter(name="activeDesktops")
1150
+ def active_desktops(self) -> int:
1151
+ """
1152
+ The number of active desktops in the desktop pool.
1153
+ """
1154
+ return pulumi.get(self, "active_desktops")
1155
+
1156
+ @property
1157
+ @pulumi.getter(name="arePrivilegedUsers")
1158
+ def are_privileged_users(self) -> bool:
1159
+ """
1160
+ Indicates whether desktop pool users have administrative privileges on their desktop.
1161
+ """
1162
+ return pulumi.get(self, "are_privileged_users")
1163
+
1164
+ @property
1165
+ @pulumi.getter(name="availabilityDomain")
1166
+ def availability_domain(self) -> str:
1167
+ """
1168
+ The name of the availability domain.
1169
+ """
1170
+ return pulumi.get(self, "availability_domain")
1171
+
1172
+ @property
1173
+ @pulumi.getter(name="availabilityPolicies")
1174
+ def availability_policies(self) -> Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemAvailabilityPolicyResult']:
1175
+ """
1176
+ Provides the start and stop schedule information for desktop availability of the desktop pool.
1177
+ """
1178
+ return pulumi.get(self, "availability_policies")
1179
+
1180
+ @property
1181
+ @pulumi.getter(name="compartmentId")
1182
+ def compartment_id(self) -> str:
1183
+ """
1184
+ The OCID of the compartment of the desktop pool.
1185
+ """
1186
+ return pulumi.get(self, "compartment_id")
1187
+
1188
+ @property
1189
+ @pulumi.getter(name="contactDetails")
1190
+ def contact_details(self) -> str:
1191
+ """
1192
+ Contact information of the desktop pool administrator. Avoid entering confidential information.
1193
+ """
1194
+ return pulumi.get(self, "contact_details")
1195
+
1196
+ @property
1197
+ @pulumi.getter(name="definedTags")
1198
+ def defined_tags(self) -> Mapping[str, str]:
1199
+ """
1200
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
1201
+ """
1202
+ return pulumi.get(self, "defined_tags")
1203
+
1204
+ @property
1205
+ @pulumi.getter
1206
+ def description(self) -> str:
1207
+ """
1208
+ A user friendly description providing additional information about the resource. Avoid entering confidential information.
1209
+ """
1210
+ return pulumi.get(self, "description")
1211
+
1212
+ @property
1213
+ @pulumi.getter(name="devicePolicies")
1214
+ def device_policies(self) -> Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemDevicePolicyResult']:
1215
+ """
1216
+ Provides the settings for desktop and client device options, such as audio in and out, client drive mapping, and clipboard access.
1217
+ """
1218
+ return pulumi.get(self, "device_policies")
1219
+
1220
+ @property
1221
+ @pulumi.getter(name="displayName")
1222
+ def display_name(self) -> str:
1223
+ """
1224
+ A filter to return only results with the given displayName.
1225
+ """
1226
+ return pulumi.get(self, "display_name")
1227
+
1228
+ @property
1229
+ @pulumi.getter(name="freeformTags")
1230
+ def freeform_tags(self) -> Mapping[str, str]:
1231
+ """
1232
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
1233
+ """
1234
+ return pulumi.get(self, "freeform_tags")
1235
+
1236
+ @property
1237
+ @pulumi.getter
1238
+ def id(self) -> str:
1239
+ """
1240
+ A filter to return only results with the given OCID.
1241
+ """
1242
+ return pulumi.get(self, "id")
1243
+
1244
+ @property
1245
+ @pulumi.getter
1246
+ def images(self) -> Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemImageResult']:
1247
+ """
1248
+ Provides information about the desktop image.
1249
+ """
1250
+ return pulumi.get(self, "images")
1251
+
1252
+ @property
1253
+ @pulumi.getter(name="isStorageEnabled")
1254
+ def is_storage_enabled(self) -> bool:
1255
+ """
1256
+ Indicates whether storage is enabled for the desktop pool.
1257
+ """
1258
+ return pulumi.get(self, "is_storage_enabled")
1259
+
1260
+ @property
1261
+ @pulumi.getter(name="maximumSize")
1262
+ def maximum_size(self) -> int:
1263
+ """
1264
+ The maximum number of desktops permitted in the desktop pool.
1265
+ """
1266
+ return pulumi.get(self, "maximum_size")
1267
+
1268
+ @property
1269
+ @pulumi.getter(name="networkConfigurations")
1270
+ def network_configurations(self) -> Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult']:
1271
+ """
1272
+ Provides information about the network configuration of the desktop pool.
1273
+ """
1274
+ return pulumi.get(self, "network_configurations")
1275
+
1276
+ @property
1277
+ @pulumi.getter(name="nsgIds")
1278
+ def nsg_ids(self) -> Sequence[str]:
1279
+ """
1280
+ A list of network security groups for the desktop pool.
1281
+ """
1282
+ return pulumi.get(self, "nsg_ids")
1283
+
1284
+ @property
1285
+ @pulumi.getter(name="shapeName")
1286
+ def shape_name(self) -> str:
1287
+ """
1288
+ The shape of the desktop pool.
1289
+ """
1290
+ return pulumi.get(self, "shape_name")
1291
+
1292
+ @property
1293
+ @pulumi.getter(name="standbySize")
1294
+ def standby_size(self) -> int:
1295
+ """
1296
+ The maximum number of standby desktops available in the desktop pool.
1297
+ """
1298
+ return pulumi.get(self, "standby_size")
1299
+
1300
+ @property
1301
+ @pulumi.getter
1302
+ def state(self) -> str:
1303
+ """
1304
+ A filter to return only results with the given lifecycleState.
1305
+ """
1306
+ return pulumi.get(self, "state")
1307
+
1308
+ @property
1309
+ @pulumi.getter(name="storageBackupPolicyId")
1310
+ def storage_backup_policy_id(self) -> str:
1311
+ """
1312
+ The backup policy OCID of the storage.
1313
+ """
1314
+ return pulumi.get(self, "storage_backup_policy_id")
1315
+
1316
+ @property
1317
+ @pulumi.getter(name="storageSizeInGbs")
1318
+ def storage_size_in_gbs(self) -> int:
1319
+ """
1320
+ The size in GBs of the storage for the desktop pool.
1321
+ """
1322
+ return pulumi.get(self, "storage_size_in_gbs")
1323
+
1324
+ @property
1325
+ @pulumi.getter(name="timeCreated")
1326
+ def time_created(self) -> str:
1327
+ """
1328
+ The date and time the resource was created.
1329
+ """
1330
+ return pulumi.get(self, "time_created")
1331
+
1332
+ @property
1333
+ @pulumi.getter(name="timeStartScheduled")
1334
+ def time_start_scheduled(self) -> str:
1335
+ """
1336
+ The start time of the desktop pool.
1337
+ """
1338
+ return pulumi.get(self, "time_start_scheduled")
1339
+
1340
+ @property
1341
+ @pulumi.getter(name="timeStopScheduled")
1342
+ def time_stop_scheduled(self) -> str:
1343
+ """
1344
+ The stop time of the desktop pool.
1345
+ """
1346
+ return pulumi.get(self, "time_stop_scheduled")
1347
+
1348
+
1349
+ @pulumi.output_type
1350
+ class GetDesktopPoolsDesktopPoolCollectionItemAvailabilityPolicyResult(dict):
1351
+ def __init__(__self__, *,
1352
+ start_schedules: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemAvailabilityPolicyStartScheduleResult'],
1353
+ stop_schedules: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemAvailabilityPolicyStopScheduleResult']):
1354
+ """
1355
+ :param Sequence['GetDesktopPoolsDesktopPoolCollectionItemAvailabilityPolicyStartScheduleArgs'] start_schedules: Provides the schedule information for a desktop.
1356
+ :param Sequence['GetDesktopPoolsDesktopPoolCollectionItemAvailabilityPolicyStopScheduleArgs'] stop_schedules: Provides the schedule information for a desktop.
1357
+ """
1358
+ pulumi.set(__self__, "start_schedules", start_schedules)
1359
+ pulumi.set(__self__, "stop_schedules", stop_schedules)
1360
+
1361
+ @property
1362
+ @pulumi.getter(name="startSchedules")
1363
+ def start_schedules(self) -> Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemAvailabilityPolicyStartScheduleResult']:
1364
+ """
1365
+ Provides the schedule information for a desktop.
1366
+ """
1367
+ return pulumi.get(self, "start_schedules")
1368
+
1369
+ @property
1370
+ @pulumi.getter(name="stopSchedules")
1371
+ def stop_schedules(self) -> Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemAvailabilityPolicyStopScheduleResult']:
1372
+ """
1373
+ Provides the schedule information for a desktop.
1374
+ """
1375
+ return pulumi.get(self, "stop_schedules")
1376
+
1377
+
1378
+ @pulumi.output_type
1379
+ class GetDesktopPoolsDesktopPoolCollectionItemAvailabilityPolicyStartScheduleResult(dict):
1380
+ def __init__(__self__, *,
1381
+ cron_expression: str,
1382
+ timezone: str):
1383
+ """
1384
+ :param str cron_expression: A cron expression describing the desktop's schedule.
1385
+ :param str timezone: The timezone of the desktop's schedule.
1386
+ """
1387
+ pulumi.set(__self__, "cron_expression", cron_expression)
1388
+ pulumi.set(__self__, "timezone", timezone)
1389
+
1390
+ @property
1391
+ @pulumi.getter(name="cronExpression")
1392
+ def cron_expression(self) -> str:
1393
+ """
1394
+ A cron expression describing the desktop's schedule.
1395
+ """
1396
+ return pulumi.get(self, "cron_expression")
1397
+
1398
+ @property
1399
+ @pulumi.getter
1400
+ def timezone(self) -> str:
1401
+ """
1402
+ The timezone of the desktop's schedule.
1403
+ """
1404
+ return pulumi.get(self, "timezone")
1405
+
1406
+
1407
+ @pulumi.output_type
1408
+ class GetDesktopPoolsDesktopPoolCollectionItemAvailabilityPolicyStopScheduleResult(dict):
1409
+ def __init__(__self__, *,
1410
+ cron_expression: str,
1411
+ timezone: str):
1412
+ """
1413
+ :param str cron_expression: A cron expression describing the desktop's schedule.
1414
+ :param str timezone: The timezone of the desktop's schedule.
1415
+ """
1416
+ pulumi.set(__self__, "cron_expression", cron_expression)
1417
+ pulumi.set(__self__, "timezone", timezone)
1418
+
1419
+ @property
1420
+ @pulumi.getter(name="cronExpression")
1421
+ def cron_expression(self) -> str:
1422
+ """
1423
+ A cron expression describing the desktop's schedule.
1424
+ """
1425
+ return pulumi.get(self, "cron_expression")
1426
+
1427
+ @property
1428
+ @pulumi.getter
1429
+ def timezone(self) -> str:
1430
+ """
1431
+ The timezone of the desktop's schedule.
1432
+ """
1433
+ return pulumi.get(self, "timezone")
1434
+
1435
+
1436
+ @pulumi.output_type
1437
+ class GetDesktopPoolsDesktopPoolCollectionItemDevicePolicyResult(dict):
1438
+ def __init__(__self__, *,
1439
+ audio_mode: str,
1440
+ cdm_mode: str,
1441
+ clipboard_mode: str,
1442
+ is_display_enabled: bool,
1443
+ is_keyboard_enabled: bool,
1444
+ is_pointer_enabled: bool,
1445
+ is_printing_enabled: bool):
1446
+ """
1447
+ :param str audio_mode: The audio mode. NONE: No access to the local audio devices is permitted. TODESKTOP: The user may record audio on their desktop. FROMDESKTOP: The user may play audio on their desktop. FULL: The user may play and record audio on their desktop.
1448
+ :param str cdm_mode: The client local drive access mode. NONE: No access to local drives permitted. READONLY: The user may read from local drives on their desktop. FULL: The user may read from and write to their local drives on their desktop.
1449
+ :param str clipboard_mode: The clipboard mode. NONE: No access to the local clipboard is permitted. TODESKTOP: The clipboard can be used to transfer data to the desktop only. FROMDESKTOP: The clipboard can be used to transfer data from the desktop only. FULL: The clipboard can be used to transfer data to and from the desktop.
1450
+ :param bool is_display_enabled: Indicates whether the display is enabled.
1451
+ :param bool is_keyboard_enabled: Indicates whether the keyboard is enabled.
1452
+ :param bool is_pointer_enabled: Indicates whether the pointer is enabled.
1453
+ :param bool is_printing_enabled: Indicates whether printing is enabled.
1454
+ """
1455
+ pulumi.set(__self__, "audio_mode", audio_mode)
1456
+ pulumi.set(__self__, "cdm_mode", cdm_mode)
1457
+ pulumi.set(__self__, "clipboard_mode", clipboard_mode)
1458
+ pulumi.set(__self__, "is_display_enabled", is_display_enabled)
1459
+ pulumi.set(__self__, "is_keyboard_enabled", is_keyboard_enabled)
1460
+ pulumi.set(__self__, "is_pointer_enabled", is_pointer_enabled)
1461
+ pulumi.set(__self__, "is_printing_enabled", is_printing_enabled)
1462
+
1463
+ @property
1464
+ @pulumi.getter(name="audioMode")
1465
+ def audio_mode(self) -> str:
1466
+ """
1467
+ The audio mode. NONE: No access to the local audio devices is permitted. TODESKTOP: The user may record audio on their desktop. FROMDESKTOP: The user may play audio on their desktop. FULL: The user may play and record audio on their desktop.
1468
+ """
1469
+ return pulumi.get(self, "audio_mode")
1470
+
1471
+ @property
1472
+ @pulumi.getter(name="cdmMode")
1473
+ def cdm_mode(self) -> str:
1474
+ """
1475
+ The client local drive access mode. NONE: No access to local drives permitted. READONLY: The user may read from local drives on their desktop. FULL: The user may read from and write to their local drives on their desktop.
1476
+ """
1477
+ return pulumi.get(self, "cdm_mode")
1478
+
1479
+ @property
1480
+ @pulumi.getter(name="clipboardMode")
1481
+ def clipboard_mode(self) -> str:
1482
+ """
1483
+ The clipboard mode. NONE: No access to the local clipboard is permitted. TODESKTOP: The clipboard can be used to transfer data to the desktop only. FROMDESKTOP: The clipboard can be used to transfer data from the desktop only. FULL: The clipboard can be used to transfer data to and from the desktop.
1484
+ """
1485
+ return pulumi.get(self, "clipboard_mode")
1486
+
1487
+ @property
1488
+ @pulumi.getter(name="isDisplayEnabled")
1489
+ def is_display_enabled(self) -> bool:
1490
+ """
1491
+ Indicates whether the display is enabled.
1492
+ """
1493
+ return pulumi.get(self, "is_display_enabled")
1494
+
1495
+ @property
1496
+ @pulumi.getter(name="isKeyboardEnabled")
1497
+ def is_keyboard_enabled(self) -> bool:
1498
+ """
1499
+ Indicates whether the keyboard is enabled.
1500
+ """
1501
+ return pulumi.get(self, "is_keyboard_enabled")
1502
+
1503
+ @property
1504
+ @pulumi.getter(name="isPointerEnabled")
1505
+ def is_pointer_enabled(self) -> bool:
1506
+ """
1507
+ Indicates whether the pointer is enabled.
1508
+ """
1509
+ return pulumi.get(self, "is_pointer_enabled")
1510
+
1511
+ @property
1512
+ @pulumi.getter(name="isPrintingEnabled")
1513
+ def is_printing_enabled(self) -> bool:
1514
+ """
1515
+ Indicates whether printing is enabled.
1516
+ """
1517
+ return pulumi.get(self, "is_printing_enabled")
1518
+
1519
+
1520
+ @pulumi.output_type
1521
+ class GetDesktopPoolsDesktopPoolCollectionItemImageResult(dict):
1522
+ def __init__(__self__, *,
1523
+ image_id: str,
1524
+ image_name: str):
1525
+ """
1526
+ :param str image_id: The OCID of the desktop image.
1527
+ :param str image_name: The name of the desktop image.
1528
+ """
1529
+ pulumi.set(__self__, "image_id", image_id)
1530
+ pulumi.set(__self__, "image_name", image_name)
1531
+
1532
+ @property
1533
+ @pulumi.getter(name="imageId")
1534
+ def image_id(self) -> str:
1535
+ """
1536
+ The OCID of the desktop image.
1537
+ """
1538
+ return pulumi.get(self, "image_id")
1539
+
1540
+ @property
1541
+ @pulumi.getter(name="imageName")
1542
+ def image_name(self) -> str:
1543
+ """
1544
+ The name of the desktop image.
1545
+ """
1546
+ return pulumi.get(self, "image_name")
1547
+
1548
+
1549
+ @pulumi.output_type
1550
+ class GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult(dict):
1551
+ def __init__(__self__, *,
1552
+ subnet_id: str,
1553
+ vcn_id: str):
1554
+ """
1555
+ :param str subnet_id: The OCID of the subnet to use for the desktop pool.
1556
+ :param str vcn_id: The OCID of the VCN used by the desktop pool.
1557
+ """
1558
+ pulumi.set(__self__, "subnet_id", subnet_id)
1559
+ pulumi.set(__self__, "vcn_id", vcn_id)
1560
+
1561
+ @property
1562
+ @pulumi.getter(name="subnetId")
1563
+ def subnet_id(self) -> str:
1564
+ """
1565
+ The OCID of the subnet to use for the desktop pool.
1566
+ """
1567
+ return pulumi.get(self, "subnet_id")
1568
+
1569
+ @property
1570
+ @pulumi.getter(name="vcnId")
1571
+ def vcn_id(self) -> str:
1572
+ """
1573
+ The OCID of the VCN used by the desktop pool.
1574
+ """
1575
+ return pulumi.get(self, "vcn_id")
1576
+
1577
+
1578
+ @pulumi.output_type
1579
+ class GetDesktopPoolsFilterResult(dict):
1580
+ def __init__(__self__, *,
1581
+ name: str,
1582
+ values: Sequence[str],
1583
+ regex: Optional[bool] = None):
1584
+ pulumi.set(__self__, "name", name)
1585
+ pulumi.set(__self__, "values", values)
1586
+ if regex is not None:
1587
+ pulumi.set(__self__, "regex", regex)
1588
+
1589
+ @property
1590
+ @pulumi.getter
1591
+ def name(self) -> str:
1592
+ return pulumi.get(self, "name")
1593
+
1594
+ @property
1595
+ @pulumi.getter
1596
+ def values(self) -> Sequence[str]:
1597
+ return pulumi.get(self, "values")
1598
+
1599
+ @property
1600
+ @pulumi.getter
1601
+ def regex(self) -> Optional[bool]:
1602
+ return pulumi.get(self, "regex")
1603
+
1604
+
1605
+ @pulumi.output_type
1606
+ class GetDesktopsDesktopCollectionResult(dict):
1607
+ def __init__(__self__, *,
1608
+ items: Sequence['outputs.GetDesktopsDesktopCollectionItemResult']):
1609
+ pulumi.set(__self__, "items", items)
1610
+
1611
+ @property
1612
+ @pulumi.getter
1613
+ def items(self) -> Sequence['outputs.GetDesktopsDesktopCollectionItemResult']:
1614
+ return pulumi.get(self, "items")
1615
+
1616
+
1617
+ @pulumi.output_type
1618
+ class GetDesktopsDesktopCollectionItemResult(dict):
1619
+ def __init__(__self__, *,
1620
+ defined_tags: Mapping[str, str],
1621
+ display_name: str,
1622
+ freeform_tags: Mapping[str, str],
1623
+ id: str,
1624
+ pool_id: str,
1625
+ state: str,
1626
+ time_created: str,
1627
+ user_name: str):
1628
+ """
1629
+ :param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
1630
+ :param str display_name: A filter to return only results with the given displayName.
1631
+ :param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
1632
+ :param str id: A filter to return only results with the given OCID.
1633
+ :param str pool_id: The OCID of the desktop pool the desktop is a member of.
1634
+ :param str state: A filter to return only results with the given lifecycleState.
1635
+ :param str time_created: The date and time the resource was created.
1636
+ :param str user_name: The owner of the desktop.
1637
+ """
1638
+ pulumi.set(__self__, "defined_tags", defined_tags)
1639
+ pulumi.set(__self__, "display_name", display_name)
1640
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
1641
+ pulumi.set(__self__, "id", id)
1642
+ pulumi.set(__self__, "pool_id", pool_id)
1643
+ pulumi.set(__self__, "state", state)
1644
+ pulumi.set(__self__, "time_created", time_created)
1645
+ pulumi.set(__self__, "user_name", user_name)
1646
+
1647
+ @property
1648
+ @pulumi.getter(name="definedTags")
1649
+ def defined_tags(self) -> Mapping[str, str]:
1650
+ """
1651
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
1652
+ """
1653
+ return pulumi.get(self, "defined_tags")
1654
+
1655
+ @property
1656
+ @pulumi.getter(name="displayName")
1657
+ def display_name(self) -> str:
1658
+ """
1659
+ A filter to return only results with the given displayName.
1660
+ """
1661
+ return pulumi.get(self, "display_name")
1662
+
1663
+ @property
1664
+ @pulumi.getter(name="freeformTags")
1665
+ def freeform_tags(self) -> Mapping[str, str]:
1666
+ """
1667
+ Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
1668
+ """
1669
+ return pulumi.get(self, "freeform_tags")
1670
+
1671
+ @property
1672
+ @pulumi.getter
1673
+ def id(self) -> str:
1674
+ """
1675
+ A filter to return only results with the given OCID.
1676
+ """
1677
+ return pulumi.get(self, "id")
1678
+
1679
+ @property
1680
+ @pulumi.getter(name="poolId")
1681
+ def pool_id(self) -> str:
1682
+ """
1683
+ The OCID of the desktop pool the desktop is a member of.
1684
+ """
1685
+ return pulumi.get(self, "pool_id")
1686
+
1687
+ @property
1688
+ @pulumi.getter
1689
+ def state(self) -> str:
1690
+ """
1691
+ A filter to return only results with the given lifecycleState.
1692
+ """
1693
+ return pulumi.get(self, "state")
1694
+
1695
+ @property
1696
+ @pulumi.getter(name="timeCreated")
1697
+ def time_created(self) -> str:
1698
+ """
1699
+ The date and time the resource was created.
1700
+ """
1701
+ return pulumi.get(self, "time_created")
1702
+
1703
+ @property
1704
+ @pulumi.getter(name="userName")
1705
+ def user_name(self) -> str:
1706
+ """
1707
+ The owner of the desktop.
1708
+ """
1709
+ return pulumi.get(self, "user_name")
1710
+
1711
+
1712
+ @pulumi.output_type
1713
+ class GetDesktopsFilterResult(dict):
1714
+ def __init__(__self__, *,
1715
+ name: str,
1716
+ values: Sequence[str],
1717
+ regex: Optional[bool] = None):
1718
+ pulumi.set(__self__, "name", name)
1719
+ pulumi.set(__self__, "values", values)
1720
+ if regex is not None:
1721
+ pulumi.set(__self__, "regex", regex)
1722
+
1723
+ @property
1724
+ @pulumi.getter
1725
+ def name(self) -> str:
1726
+ return pulumi.get(self, "name")
1727
+
1728
+ @property
1729
+ @pulumi.getter
1730
+ def values(self) -> Sequence[str]:
1731
+ return pulumi.get(self, "values")
1732
+
1733
+ @property
1734
+ @pulumi.getter
1735
+ def regex(self) -> Optional[bool]:
1736
+ return pulumi.get(self, "regex")
1737
+
1738
+