pulumi-oci 2.9.0a1724479778__py3-none-any.whl → 2.10.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 (123) 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 +64 -24
  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 +195 -66
  19. pulumi_oci/database/vm_cluster_network.py +7 -20
  20. pulumi_oci/databasemanagement/__init__.py +1 -0
  21. pulumi_oci/databasemanagement/_inputs.py +873 -10
  22. pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
  23. pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
  24. pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
  25. pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
  26. pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
  27. pulumi_oci/databasemanagement/get_managed_database.py +47 -3
  28. pulumi_oci/databasemanagement/managed_database.py +56 -0
  29. pulumi_oci/databasemanagement/outputs.py +3331 -1397
  30. pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
  31. pulumi_oci/datasafe/__init__.py +6 -0
  32. pulumi_oci/datasafe/_inputs.py +18 -0
  33. pulumi_oci/datasafe/database_security_config_management.py +244 -2
  34. pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
  35. pulumi_oci/datasafe/masking_report_management.py +693 -0
  36. pulumi_oci/datasafe/outputs.py +18 -0
  37. pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
  38. pulumi_oci/datasafe/security_policy_management.py +172 -2
  39. pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
  40. pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
  41. pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
  42. pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
  43. pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
  44. pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
  45. pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
  46. pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
  47. pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
  48. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
  49. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
  50. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
  51. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
  52. pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
  53. pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
  54. pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
  55. pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
  56. pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
  57. pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
  58. pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
  59. pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
  60. pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
  61. pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
  62. pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
  63. pulumi_oci/desktops/_inputs.py +483 -0
  64. pulumi_oci/desktops/desktop_pool.py +1348 -0
  65. pulumi_oci/desktops/get_desktop.py +223 -0
  66. pulumi_oci/desktops/get_desktop_pool.py +418 -0
  67. pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
  68. pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
  69. pulumi_oci/desktops/get_desktop_pools.py +203 -0
  70. pulumi_oci/desktops/get_desktops.py +214 -0
  71. pulumi_oci/desktops/outputs.py +1738 -0
  72. pulumi_oci/filestorage/mount_target.py +143 -38
  73. pulumi_oci/filestorage/outputs.py +44 -0
  74. pulumi_oci/identity/domains_group.py +34 -0
  75. pulumi_oci/identity/domains_user.py +34 -0
  76. pulumi_oci/identity/get_domains_group.py +11 -1
  77. pulumi_oci/identity/get_domains_user.py +11 -1
  78. pulumi_oci/identity/outputs.py +14 -0
  79. pulumi_oci/kms/_inputs.py +10 -10
  80. pulumi_oci/kms/get_vault.py +14 -1
  81. pulumi_oci/kms/outputs.py +41 -30
  82. pulumi_oci/kms/vault.py +28 -0
  83. pulumi_oci/loadbalancer/load_balancer.py +224 -0
  84. pulumi_oci/loadbalancer/outputs.py +22 -0
  85. pulumi_oci/managementagent/_inputs.py +44 -0
  86. pulumi_oci/managementagent/management_agent.py +45 -21
  87. pulumi_oci/managementagent/outputs.py +44 -0
  88. pulumi_oci/mysql/_inputs.py +23 -0
  89. pulumi_oci/mysql/get_mysql_db_system.py +15 -2
  90. pulumi_oci/mysql/mysql_db_system.py +53 -0
  91. pulumi_oci/mysql/outputs.py +74 -6
  92. pulumi_oci/ocvp/get_cluster.py +2 -2
  93. pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
  94. pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
  95. pulumi_oci/ocvp/outputs.py +2 -2
  96. pulumi_oci/pulumi-plugin.json +1 -1
  97. pulumi_oci/recoverymod/_inputs.py +0 -8
  98. pulumi_oci/recoverymod/get_protected_database.py +14 -1
  99. pulumi_oci/recoverymod/get_protection_policy.py +14 -1
  100. pulumi_oci/recoverymod/outputs.py +22 -8
  101. pulumi_oci/recoverymod/protected_database.py +80 -3
  102. pulumi_oci/recoverymod/protection_policy.py +49 -0
  103. pulumi_oci/waf/_inputs.py +29 -16
  104. pulumi_oci/waf/outputs.py +33 -10
  105. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/METADATA +1 -1
  106. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/RECORD +108 -90
  107. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/WHEEL +1 -1
  108. pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
  109. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
  110. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
  111. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
  112. pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
  113. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
  114. pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
  115. pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
  116. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  117. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
  118. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
  119. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
  120. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
  121. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
  122. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
  123. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/top_level.txt +0 -0
@@ -22,6 +22,12 @@ class SecurityPolicyManagementArgs:
22
22
  target_id: Optional[pulumi.Input[str]] = None):
23
23
  """
24
24
  The set of arguments for constructing a SecurityPolicyManagement resource.
25
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the security policy.
26
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) 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"}`
27
+ :param pulumi.Input[str] description: (Updatable) The description of the security policy.
28
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the security policy. The name does not have to be unique, and it is changeable.
29
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
30
+ :param pulumi.Input[str] target_id: Unique target identifier.
25
31
  """
26
32
  if compartment_id is not None:
27
33
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -39,6 +45,9 @@ class SecurityPolicyManagementArgs:
39
45
  @property
40
46
  @pulumi.getter(name="compartmentId")
41
47
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
48
+ """
49
+ (Updatable) The OCID of the compartment containing the security policy.
50
+ """
42
51
  return pulumi.get(self, "compartment_id")
43
52
 
44
53
  @compartment_id.setter
@@ -48,6 +57,9 @@ class SecurityPolicyManagementArgs:
48
57
  @property
49
58
  @pulumi.getter(name="definedTags")
50
59
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
60
+ """
61
+ (Updatable) 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"}`
62
+ """
51
63
  return pulumi.get(self, "defined_tags")
52
64
 
53
65
  @defined_tags.setter
@@ -57,6 +69,9 @@ class SecurityPolicyManagementArgs:
57
69
  @property
58
70
  @pulumi.getter
59
71
  def description(self) -> Optional[pulumi.Input[str]]:
72
+ """
73
+ (Updatable) The description of the security policy.
74
+ """
60
75
  return pulumi.get(self, "description")
61
76
 
62
77
  @description.setter
@@ -66,6 +81,9 @@ class SecurityPolicyManagementArgs:
66
81
  @property
67
82
  @pulumi.getter(name="displayName")
68
83
  def display_name(self) -> Optional[pulumi.Input[str]]:
84
+ """
85
+ (Updatable) The display name of the security policy. The name does not have to be unique, and it is changeable.
86
+ """
69
87
  return pulumi.get(self, "display_name")
70
88
 
71
89
  @display_name.setter
@@ -75,6 +93,9 @@ class SecurityPolicyManagementArgs:
75
93
  @property
76
94
  @pulumi.getter(name="freeformTags")
77
95
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
96
+ """
97
+ (Updatable) 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"}`
98
+ """
78
99
  return pulumi.get(self, "freeform_tags")
79
100
 
80
101
  @freeform_tags.setter
@@ -84,6 +105,9 @@ class SecurityPolicyManagementArgs:
84
105
  @property
85
106
  @pulumi.getter(name="targetId")
86
107
  def target_id(self) -> Optional[pulumi.Input[str]]:
108
+ """
109
+ Unique target identifier.
110
+ """
87
111
  return pulumi.get(self, "target_id")
88
112
 
89
113
  @target_id.setter
@@ -107,6 +131,17 @@ class _SecurityPolicyManagementState:
107
131
  time_updated: Optional[pulumi.Input[str]] = None):
108
132
  """
109
133
  Input properties used for looking up and filtering SecurityPolicyManagement resources.
134
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the security policy.
135
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) 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"}`
136
+ :param pulumi.Input[str] description: (Updatable) The description of the security policy.
137
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the security policy. The name does not have to be unique, and it is changeable.
138
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
139
+ :param pulumi.Input[str] lifecycle_details: Details about the current state of the security policy in Data Safe.
140
+ :param pulumi.Input[str] state: The current state of the security policy.
141
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
142
+ :param pulumi.Input[str] target_id: Unique target identifier.
143
+ :param pulumi.Input[str] time_created: The time that the security policy was created, in the format defined by RFC3339.
144
+ :param pulumi.Input[str] time_updated: The last date and time the security policy was updated, in the format defined by RFC3339.
110
145
  """
111
146
  if compartment_id is not None:
112
147
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -134,6 +169,9 @@ class _SecurityPolicyManagementState:
134
169
  @property
135
170
  @pulumi.getter(name="compartmentId")
136
171
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
172
+ """
173
+ (Updatable) The OCID of the compartment containing the security policy.
174
+ """
137
175
  return pulumi.get(self, "compartment_id")
138
176
 
139
177
  @compartment_id.setter
@@ -143,6 +181,9 @@ class _SecurityPolicyManagementState:
143
181
  @property
144
182
  @pulumi.getter(name="definedTags")
145
183
  def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
184
+ """
185
+ (Updatable) 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"}`
186
+ """
146
187
  return pulumi.get(self, "defined_tags")
147
188
 
148
189
  @defined_tags.setter
@@ -152,6 +193,9 @@ class _SecurityPolicyManagementState:
152
193
  @property
153
194
  @pulumi.getter
154
195
  def description(self) -> Optional[pulumi.Input[str]]:
196
+ """
197
+ (Updatable) The description of the security policy.
198
+ """
155
199
  return pulumi.get(self, "description")
156
200
 
157
201
  @description.setter
@@ -161,6 +205,9 @@ class _SecurityPolicyManagementState:
161
205
  @property
162
206
  @pulumi.getter(name="displayName")
163
207
  def display_name(self) -> Optional[pulumi.Input[str]]:
208
+ """
209
+ (Updatable) The display name of the security policy. The name does not have to be unique, and it is changeable.
210
+ """
164
211
  return pulumi.get(self, "display_name")
165
212
 
166
213
  @display_name.setter
@@ -170,6 +217,9 @@ class _SecurityPolicyManagementState:
170
217
  @property
171
218
  @pulumi.getter(name="freeformTags")
172
219
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
220
+ """
221
+ (Updatable) 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"}`
222
+ """
173
223
  return pulumi.get(self, "freeform_tags")
174
224
 
175
225
  @freeform_tags.setter
@@ -179,6 +229,9 @@ class _SecurityPolicyManagementState:
179
229
  @property
180
230
  @pulumi.getter(name="lifecycleDetails")
181
231
  def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
232
+ """
233
+ Details about the current state of the security policy in Data Safe.
234
+ """
182
235
  return pulumi.get(self, "lifecycle_details")
183
236
 
184
237
  @lifecycle_details.setter
@@ -188,6 +241,9 @@ class _SecurityPolicyManagementState:
188
241
  @property
189
242
  @pulumi.getter
190
243
  def state(self) -> Optional[pulumi.Input[str]]:
244
+ """
245
+ The current state of the security policy.
246
+ """
191
247
  return pulumi.get(self, "state")
192
248
 
193
249
  @state.setter
@@ -197,6 +253,9 @@ class _SecurityPolicyManagementState:
197
253
  @property
198
254
  @pulumi.getter(name="systemTags")
199
255
  def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
256
+ """
257
+ System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
258
+ """
200
259
  return pulumi.get(self, "system_tags")
201
260
 
202
261
  @system_tags.setter
@@ -206,6 +265,9 @@ class _SecurityPolicyManagementState:
206
265
  @property
207
266
  @pulumi.getter(name="targetId")
208
267
  def target_id(self) -> Optional[pulumi.Input[str]]:
268
+ """
269
+ Unique target identifier.
270
+ """
209
271
  return pulumi.get(self, "target_id")
210
272
 
211
273
  @target_id.setter
@@ -215,6 +277,9 @@ class _SecurityPolicyManagementState:
215
277
  @property
216
278
  @pulumi.getter(name="timeCreated")
217
279
  def time_created(self) -> Optional[pulumi.Input[str]]:
280
+ """
281
+ The time that the security policy was created, in the format defined by RFC3339.
282
+ """
218
283
  return pulumi.get(self, "time_created")
219
284
 
220
285
  @time_created.setter
@@ -224,6 +289,9 @@ class _SecurityPolicyManagementState:
224
289
  @property
225
290
  @pulumi.getter(name="timeUpdated")
226
291
  def time_updated(self) -> Optional[pulumi.Input[str]]:
292
+ """
293
+ The last date and time the security policy was updated, in the format defined by RFC3339.
294
+ """
227
295
  return pulumi.get(self, "time_updated")
228
296
 
229
297
  @time_updated.setter
@@ -244,9 +312,41 @@ class SecurityPolicyManagement(pulumi.CustomResource):
244
312
  target_id: Optional[pulumi.Input[str]] = None,
245
313
  __props__=None):
246
314
  """
247
- Create a SecurityPolicyManagement resource with the given unique name, props, and options.
315
+ This resource provides the Security Policy Management resource in Oracle Cloud Infrastructure Data Safe service.
316
+
317
+ Updates the security policy.
318
+
319
+ ## Example Usage
320
+
321
+ ```python
322
+ import pulumi
323
+ import pulumi_oci as oci
324
+
325
+ test_security_policy_management = oci.data_safe.SecurityPolicyManagement("test_security_policy_management",
326
+ compartment_id=compartment_id,
327
+ target_id=test_target_database["id"],
328
+ defined_tags={
329
+ "Operations.CostCenter": "42",
330
+ },
331
+ description=security_policy_management_description,
332
+ display_name=security_policy_management_display_name,
333
+ freeform_tags={
334
+ "Department": "Finance",
335
+ })
336
+ ```
337
+
338
+ ## Import
339
+
340
+ Import is not supported for this resource.
341
+
248
342
  :param str resource_name: The name of the resource.
249
343
  :param pulumi.ResourceOptions opts: Options for the resource.
344
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the security policy.
345
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) 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"}`
346
+ :param pulumi.Input[str] description: (Updatable) The description of the security policy.
347
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the security policy. The name does not have to be unique, and it is changeable.
348
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
349
+ :param pulumi.Input[str] target_id: Unique target identifier.
250
350
  """
251
351
  ...
252
352
  @overload
@@ -255,7 +355,33 @@ class SecurityPolicyManagement(pulumi.CustomResource):
255
355
  args: Optional[SecurityPolicyManagementArgs] = None,
256
356
  opts: Optional[pulumi.ResourceOptions] = None):
257
357
  """
258
- Create a SecurityPolicyManagement resource with the given unique name, props, and options.
358
+ This resource provides the Security Policy Management resource in Oracle Cloud Infrastructure Data Safe service.
359
+
360
+ Updates the security policy.
361
+
362
+ ## Example Usage
363
+
364
+ ```python
365
+ import pulumi
366
+ import pulumi_oci as oci
367
+
368
+ test_security_policy_management = oci.data_safe.SecurityPolicyManagement("test_security_policy_management",
369
+ compartment_id=compartment_id,
370
+ target_id=test_target_database["id"],
371
+ defined_tags={
372
+ "Operations.CostCenter": "42",
373
+ },
374
+ description=security_policy_management_description,
375
+ display_name=security_policy_management_display_name,
376
+ freeform_tags={
377
+ "Department": "Finance",
378
+ })
379
+ ```
380
+
381
+ ## Import
382
+
383
+ Import is not supported for this resource.
384
+
259
385
  :param str resource_name: The name of the resource.
260
386
  :param SecurityPolicyManagementArgs args: The arguments to use to populate this resource's properties.
261
387
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -325,6 +451,17 @@ class SecurityPolicyManagement(pulumi.CustomResource):
325
451
  :param str resource_name: The unique name of the resulting resource.
326
452
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
327
453
  :param pulumi.ResourceOptions opts: Options for the resource.
454
+ :param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the security policy.
455
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) 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"}`
456
+ :param pulumi.Input[str] description: (Updatable) The description of the security policy.
457
+ :param pulumi.Input[str] display_name: (Updatable) The display name of the security policy. The name does not have to be unique, and it is changeable.
458
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
459
+ :param pulumi.Input[str] lifecycle_details: Details about the current state of the security policy in Data Safe.
460
+ :param pulumi.Input[str] state: The current state of the security policy.
461
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
462
+ :param pulumi.Input[str] target_id: Unique target identifier.
463
+ :param pulumi.Input[str] time_created: The time that the security policy was created, in the format defined by RFC3339.
464
+ :param pulumi.Input[str] time_updated: The last date and time the security policy was updated, in the format defined by RFC3339.
328
465
  """
329
466
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
330
467
 
@@ -346,55 +483,88 @@ class SecurityPolicyManagement(pulumi.CustomResource):
346
483
  @property
347
484
  @pulumi.getter(name="compartmentId")
348
485
  def compartment_id(self) -> pulumi.Output[str]:
486
+ """
487
+ (Updatable) The OCID of the compartment containing the security policy.
488
+ """
349
489
  return pulumi.get(self, "compartment_id")
350
490
 
351
491
  @property
352
492
  @pulumi.getter(name="definedTags")
353
493
  def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
494
+ """
495
+ (Updatable) 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"}`
496
+ """
354
497
  return pulumi.get(self, "defined_tags")
355
498
 
356
499
  @property
357
500
  @pulumi.getter
358
501
  def description(self) -> pulumi.Output[str]:
502
+ """
503
+ (Updatable) The description of the security policy.
504
+ """
359
505
  return pulumi.get(self, "description")
360
506
 
361
507
  @property
362
508
  @pulumi.getter(name="displayName")
363
509
  def display_name(self) -> pulumi.Output[str]:
510
+ """
511
+ (Updatable) The display name of the security policy. The name does not have to be unique, and it is changeable.
512
+ """
364
513
  return pulumi.get(self, "display_name")
365
514
 
366
515
  @property
367
516
  @pulumi.getter(name="freeformTags")
368
517
  def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
518
+ """
519
+ (Updatable) 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"}`
520
+ """
369
521
  return pulumi.get(self, "freeform_tags")
370
522
 
371
523
  @property
372
524
  @pulumi.getter(name="lifecycleDetails")
373
525
  def lifecycle_details(self) -> pulumi.Output[str]:
526
+ """
527
+ Details about the current state of the security policy in Data Safe.
528
+ """
374
529
  return pulumi.get(self, "lifecycle_details")
375
530
 
376
531
  @property
377
532
  @pulumi.getter
378
533
  def state(self) -> pulumi.Output[str]:
534
+ """
535
+ The current state of the security policy.
536
+ """
379
537
  return pulumi.get(self, "state")
380
538
 
381
539
  @property
382
540
  @pulumi.getter(name="systemTags")
383
541
  def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
542
+ """
543
+ System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}`
544
+ """
384
545
  return pulumi.get(self, "system_tags")
385
546
 
386
547
  @property
387
548
  @pulumi.getter(name="targetId")
388
549
  def target_id(self) -> pulumi.Output[str]:
550
+ """
551
+ Unique target identifier.
552
+ """
389
553
  return pulumi.get(self, "target_id")
390
554
 
391
555
  @property
392
556
  @pulumi.getter(name="timeCreated")
393
557
  def time_created(self) -> pulumi.Output[str]:
558
+ """
559
+ The time that the security policy was created, in the format defined by RFC3339.
560
+ """
394
561
  return pulumi.get(self, "time_created")
395
562
 
396
563
  @property
397
564
  @pulumi.getter(name="timeUpdated")
398
565
  def time_updated(self) -> pulumi.Output[str]:
566
+ """
567
+ The last date and time the security policy was updated, in the format defined by RFC3339.
568
+ """
399
569
  return pulumi.get(self, "time_updated")
400
570