pulumi-oci 2.9.0a1724479778__py3-none-any.whl → 2.9.0a1724836493__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.
- pulumi_oci/__init__.py +86 -38
- pulumi_oci/announcementsservice/__init__.py +1 -0
- pulumi_oci/announcementsservice/_inputs.py +46 -6
- pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
- pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
- pulumi_oci/announcementsservice/get_services.py +173 -0
- pulumi_oci/announcementsservice/outputs.py +195 -18
- pulumi_oci/bigdataservice/_inputs.py +1 -49
- pulumi_oci/bigdataservice/bds_instance.py +0 -128
- pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
- pulumi_oci/bigdataservice/outputs.py +3 -132
- pulumi_oci/database/_inputs.py +32 -0
- pulumi_oci/database/autonomous_database.py +28 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_databases.py +32 -95
- pulumi_oci/database/get_data_guard_association.py +11 -1
- pulumi_oci/database/outputs.py +163 -42
- pulumi_oci/databasemanagement/__init__.py +1 -0
- pulumi_oci/databasemanagement/_inputs.py +873 -10
- pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
- pulumi_oci/databasemanagement/get_managed_database.py +47 -3
- pulumi_oci/databasemanagement/managed_database.py +56 -0
- pulumi_oci/databasemanagement/outputs.py +3331 -1397
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
- pulumi_oci/datasafe/__init__.py +6 -0
- pulumi_oci/datasafe/_inputs.py +18 -0
- pulumi_oci/datasafe/database_security_config_management.py +244 -2
- pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/datasafe/outputs.py +18 -0
- pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
- pulumi_oci/datasafe/security_policy_management.py +172 -2
- pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
- pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
- pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
- pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
- pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
- pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
- pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
- pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
- pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
- pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
- pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
- pulumi_oci/desktops/_inputs.py +483 -0
- pulumi_oci/desktops/desktop_pool.py +1348 -0
- pulumi_oci/desktops/get_desktop.py +223 -0
- pulumi_oci/desktops/get_desktop_pool.py +418 -0
- pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
- pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
- pulumi_oci/desktops/get_desktop_pools.py +203 -0
- pulumi_oci/desktops/get_desktops.py +214 -0
- pulumi_oci/desktops/outputs.py +1738 -0
- pulumi_oci/filestorage/mount_target.py +143 -38
- pulumi_oci/filestorage/outputs.py +44 -0
- pulumi_oci/identity/domains_group.py +34 -0
- pulumi_oci/identity/domains_user.py +34 -0
- pulumi_oci/identity/get_domains_group.py +11 -1
- pulumi_oci/identity/get_domains_user.py +11 -1
- pulumi_oci/identity/outputs.py +14 -0
- pulumi_oci/kms/_inputs.py +10 -10
- pulumi_oci/kms/get_vault.py +14 -1
- pulumi_oci/kms/outputs.py +41 -30
- pulumi_oci/kms/vault.py +28 -0
- pulumi_oci/loadbalancer/load_balancer.py +224 -0
- pulumi_oci/loadbalancer/outputs.py +22 -0
- pulumi_oci/mysql/_inputs.py +23 -0
- pulumi_oci/mysql/get_mysql_db_system.py +15 -2
- pulumi_oci/mysql/mysql_db_system.py +53 -0
- pulumi_oci/mysql/outputs.py +74 -6
- pulumi_oci/ocvp/get_cluster.py +2 -2
- pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
- pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
- pulumi_oci/ocvp/outputs.py +2 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/recoverymod/_inputs.py +0 -8
- pulumi_oci/recoverymod/get_protected_database.py +14 -1
- pulumi_oci/recoverymod/get_protection_policy.py +14 -1
- pulumi_oci/recoverymod/outputs.py +22 -8
- pulumi_oci/recoverymod/protected_database.py +80 -3
- pulumi_oci/recoverymod/protection_policy.py +49 -0
- pulumi_oci/waf/_inputs.py +29 -16
- pulumi_oci/waf/outputs.py +33 -10
- {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.9.0a1724836493.dist-info}/METADATA +1 -1
- {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.9.0a1724836493.dist-info}/RECORD +104 -86
- {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.9.0a1724836493.dist-info}/WHEEL +1 -1
- pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
- pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
- {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.9.0a1724836493.dist-info}/top_level.txt +0 -0
@@ -26,6 +26,18 @@ class DatabaseSecurityConfigManagementArgs:
|
|
26
26
|
target_id: Optional[pulumi.Input[str]] = None):
|
27
27
|
"""
|
28
28
|
The set of arguments for constructing a DatabaseSecurityConfigManagement resource.
|
29
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the database security config.
|
30
|
+
: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"}`
|
31
|
+
:param pulumi.Input[str] description: (Updatable) The description of the security policy.
|
32
|
+
:param pulumi.Input[str] display_name: (Updatable) The display name of the database security config. The name does not have to be unique, and it is changeable.
|
33
|
+
: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"}`
|
34
|
+
:param pulumi.Input[bool] refresh_trigger: (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
35
|
+
|
36
|
+
|
37
|
+
** IMPORTANT **
|
38
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
39
|
+
:param pulumi.Input['DatabaseSecurityConfigManagementSqlFirewallConfigArgs'] sql_firewall_config: (Updatable) Details to update the SQL firewall config.
|
40
|
+
:param pulumi.Input[str] target_id: Unique target identifier.
|
29
41
|
"""
|
30
42
|
if compartment_id is not None:
|
31
43
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -47,6 +59,9 @@ class DatabaseSecurityConfigManagementArgs:
|
|
47
59
|
@property
|
48
60
|
@pulumi.getter(name="compartmentId")
|
49
61
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
62
|
+
"""
|
63
|
+
(Updatable) The OCID of the compartment containing the database security config.
|
64
|
+
"""
|
50
65
|
return pulumi.get(self, "compartment_id")
|
51
66
|
|
52
67
|
@compartment_id.setter
|
@@ -56,6 +71,9 @@ class DatabaseSecurityConfigManagementArgs:
|
|
56
71
|
@property
|
57
72
|
@pulumi.getter(name="definedTags")
|
58
73
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
74
|
+
"""
|
75
|
+
(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"}`
|
76
|
+
"""
|
59
77
|
return pulumi.get(self, "defined_tags")
|
60
78
|
|
61
79
|
@defined_tags.setter
|
@@ -65,6 +83,9 @@ class DatabaseSecurityConfigManagementArgs:
|
|
65
83
|
@property
|
66
84
|
@pulumi.getter
|
67
85
|
def description(self) -> Optional[pulumi.Input[str]]:
|
86
|
+
"""
|
87
|
+
(Updatable) The description of the security policy.
|
88
|
+
"""
|
68
89
|
return pulumi.get(self, "description")
|
69
90
|
|
70
91
|
@description.setter
|
@@ -74,6 +95,9 @@ class DatabaseSecurityConfigManagementArgs:
|
|
74
95
|
@property
|
75
96
|
@pulumi.getter(name="displayName")
|
76
97
|
def display_name(self) -> Optional[pulumi.Input[str]]:
|
98
|
+
"""
|
99
|
+
(Updatable) The display name of the database security config. The name does not have to be unique, and it is changeable.
|
100
|
+
"""
|
77
101
|
return pulumi.get(self, "display_name")
|
78
102
|
|
79
103
|
@display_name.setter
|
@@ -83,6 +107,9 @@ class DatabaseSecurityConfigManagementArgs:
|
|
83
107
|
@property
|
84
108
|
@pulumi.getter(name="freeformTags")
|
85
109
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
110
|
+
"""
|
111
|
+
(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"}`
|
112
|
+
"""
|
86
113
|
return pulumi.get(self, "freeform_tags")
|
87
114
|
|
88
115
|
@freeform_tags.setter
|
@@ -92,6 +119,13 @@ class DatabaseSecurityConfigManagementArgs:
|
|
92
119
|
@property
|
93
120
|
@pulumi.getter(name="refreshTrigger")
|
94
121
|
def refresh_trigger(self) -> Optional[pulumi.Input[bool]]:
|
122
|
+
"""
|
123
|
+
(Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
124
|
+
|
125
|
+
|
126
|
+
** IMPORTANT **
|
127
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
128
|
+
"""
|
95
129
|
return pulumi.get(self, "refresh_trigger")
|
96
130
|
|
97
131
|
@refresh_trigger.setter
|
@@ -101,6 +135,9 @@ class DatabaseSecurityConfigManagementArgs:
|
|
101
135
|
@property
|
102
136
|
@pulumi.getter(name="sqlFirewallConfig")
|
103
137
|
def sql_firewall_config(self) -> Optional[pulumi.Input['DatabaseSecurityConfigManagementSqlFirewallConfigArgs']]:
|
138
|
+
"""
|
139
|
+
(Updatable) Details to update the SQL firewall config.
|
140
|
+
"""
|
104
141
|
return pulumi.get(self, "sql_firewall_config")
|
105
142
|
|
106
143
|
@sql_firewall_config.setter
|
@@ -110,6 +147,9 @@ class DatabaseSecurityConfigManagementArgs:
|
|
110
147
|
@property
|
111
148
|
@pulumi.getter(name="targetId")
|
112
149
|
def target_id(self) -> Optional[pulumi.Input[str]]:
|
150
|
+
"""
|
151
|
+
Unique target identifier.
|
152
|
+
"""
|
113
153
|
return pulumi.get(self, "target_id")
|
114
154
|
|
115
155
|
@target_id.setter
|
@@ -136,6 +176,24 @@ class _DatabaseSecurityConfigManagementState:
|
|
136
176
|
time_updated: Optional[pulumi.Input[str]] = None):
|
137
177
|
"""
|
138
178
|
Input properties used for looking up and filtering DatabaseSecurityConfigManagement resources.
|
179
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the database security config.
|
180
|
+
: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"}`
|
181
|
+
:param pulumi.Input[str] description: (Updatable) The description of the security policy.
|
182
|
+
:param pulumi.Input[str] display_name: (Updatable) The display name of the database security config. The name does not have to be unique, and it is changeable.
|
183
|
+
: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"}`
|
184
|
+
:param pulumi.Input[str] lifecycle_details: Details about the current state of the database security config in Data Safe.
|
185
|
+
:param pulumi.Input[bool] refresh_trigger: (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
186
|
+
|
187
|
+
|
188
|
+
** IMPORTANT **
|
189
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
190
|
+
:param pulumi.Input['DatabaseSecurityConfigManagementSqlFirewallConfigArgs'] sql_firewall_config: (Updatable) Details to update the SQL firewall config.
|
191
|
+
:param pulumi.Input[str] state: The current state of the database security config.
|
192
|
+
: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"}`
|
193
|
+
:param pulumi.Input[str] target_id: Unique target identifier.
|
194
|
+
:param pulumi.Input[str] time_created: The time that the database security config was created, in the format defined by RFC3339.
|
195
|
+
:param pulumi.Input[str] time_last_refreshed: The last date and time the database security config was refreshed, in the format defined by RFC3339.
|
196
|
+
:param pulumi.Input[str] time_updated: The date and time the database security configuration was last updated, in the format defined by RFC3339.
|
139
197
|
"""
|
140
198
|
if compartment_id is not None:
|
141
199
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -169,6 +227,9 @@ class _DatabaseSecurityConfigManagementState:
|
|
169
227
|
@property
|
170
228
|
@pulumi.getter(name="compartmentId")
|
171
229
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
230
|
+
"""
|
231
|
+
(Updatable) The OCID of the compartment containing the database security config.
|
232
|
+
"""
|
172
233
|
return pulumi.get(self, "compartment_id")
|
173
234
|
|
174
235
|
@compartment_id.setter
|
@@ -178,6 +239,9 @@ class _DatabaseSecurityConfigManagementState:
|
|
178
239
|
@property
|
179
240
|
@pulumi.getter(name="definedTags")
|
180
241
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
242
|
+
"""
|
243
|
+
(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"}`
|
244
|
+
"""
|
181
245
|
return pulumi.get(self, "defined_tags")
|
182
246
|
|
183
247
|
@defined_tags.setter
|
@@ -187,6 +251,9 @@ class _DatabaseSecurityConfigManagementState:
|
|
187
251
|
@property
|
188
252
|
@pulumi.getter
|
189
253
|
def description(self) -> Optional[pulumi.Input[str]]:
|
254
|
+
"""
|
255
|
+
(Updatable) The description of the security policy.
|
256
|
+
"""
|
190
257
|
return pulumi.get(self, "description")
|
191
258
|
|
192
259
|
@description.setter
|
@@ -196,6 +263,9 @@ class _DatabaseSecurityConfigManagementState:
|
|
196
263
|
@property
|
197
264
|
@pulumi.getter(name="displayName")
|
198
265
|
def display_name(self) -> Optional[pulumi.Input[str]]:
|
266
|
+
"""
|
267
|
+
(Updatable) The display name of the database security config. The name does not have to be unique, and it is changeable.
|
268
|
+
"""
|
199
269
|
return pulumi.get(self, "display_name")
|
200
270
|
|
201
271
|
@display_name.setter
|
@@ -205,6 +275,9 @@ class _DatabaseSecurityConfigManagementState:
|
|
205
275
|
@property
|
206
276
|
@pulumi.getter(name="freeformTags")
|
207
277
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
278
|
+
"""
|
279
|
+
(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"}`
|
280
|
+
"""
|
208
281
|
return pulumi.get(self, "freeform_tags")
|
209
282
|
|
210
283
|
@freeform_tags.setter
|
@@ -214,6 +287,9 @@ class _DatabaseSecurityConfigManagementState:
|
|
214
287
|
@property
|
215
288
|
@pulumi.getter(name="lifecycleDetails")
|
216
289
|
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
290
|
+
"""
|
291
|
+
Details about the current state of the database security config in Data Safe.
|
292
|
+
"""
|
217
293
|
return pulumi.get(self, "lifecycle_details")
|
218
294
|
|
219
295
|
@lifecycle_details.setter
|
@@ -223,6 +299,13 @@ class _DatabaseSecurityConfigManagementState:
|
|
223
299
|
@property
|
224
300
|
@pulumi.getter(name="refreshTrigger")
|
225
301
|
def refresh_trigger(self) -> Optional[pulumi.Input[bool]]:
|
302
|
+
"""
|
303
|
+
(Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
304
|
+
|
305
|
+
|
306
|
+
** IMPORTANT **
|
307
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
308
|
+
"""
|
226
309
|
return pulumi.get(self, "refresh_trigger")
|
227
310
|
|
228
311
|
@refresh_trigger.setter
|
@@ -232,6 +315,9 @@ class _DatabaseSecurityConfigManagementState:
|
|
232
315
|
@property
|
233
316
|
@pulumi.getter(name="sqlFirewallConfig")
|
234
317
|
def sql_firewall_config(self) -> Optional[pulumi.Input['DatabaseSecurityConfigManagementSqlFirewallConfigArgs']]:
|
318
|
+
"""
|
319
|
+
(Updatable) Details to update the SQL firewall config.
|
320
|
+
"""
|
235
321
|
return pulumi.get(self, "sql_firewall_config")
|
236
322
|
|
237
323
|
@sql_firewall_config.setter
|
@@ -241,6 +327,9 @@ class _DatabaseSecurityConfigManagementState:
|
|
241
327
|
@property
|
242
328
|
@pulumi.getter
|
243
329
|
def state(self) -> Optional[pulumi.Input[str]]:
|
330
|
+
"""
|
331
|
+
The current state of the database security config.
|
332
|
+
"""
|
244
333
|
return pulumi.get(self, "state")
|
245
334
|
|
246
335
|
@state.setter
|
@@ -250,6 +339,9 @@ class _DatabaseSecurityConfigManagementState:
|
|
250
339
|
@property
|
251
340
|
@pulumi.getter(name="systemTags")
|
252
341
|
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
342
|
+
"""
|
343
|
+
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"}`
|
344
|
+
"""
|
253
345
|
return pulumi.get(self, "system_tags")
|
254
346
|
|
255
347
|
@system_tags.setter
|
@@ -259,6 +351,9 @@ class _DatabaseSecurityConfigManagementState:
|
|
259
351
|
@property
|
260
352
|
@pulumi.getter(name="targetId")
|
261
353
|
def target_id(self) -> Optional[pulumi.Input[str]]:
|
354
|
+
"""
|
355
|
+
Unique target identifier.
|
356
|
+
"""
|
262
357
|
return pulumi.get(self, "target_id")
|
263
358
|
|
264
359
|
@target_id.setter
|
@@ -268,6 +363,9 @@ class _DatabaseSecurityConfigManagementState:
|
|
268
363
|
@property
|
269
364
|
@pulumi.getter(name="timeCreated")
|
270
365
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
366
|
+
"""
|
367
|
+
The time that the database security config was created, in the format defined by RFC3339.
|
368
|
+
"""
|
271
369
|
return pulumi.get(self, "time_created")
|
272
370
|
|
273
371
|
@time_created.setter
|
@@ -277,6 +375,9 @@ class _DatabaseSecurityConfigManagementState:
|
|
277
375
|
@property
|
278
376
|
@pulumi.getter(name="timeLastRefreshed")
|
279
377
|
def time_last_refreshed(self) -> Optional[pulumi.Input[str]]:
|
378
|
+
"""
|
379
|
+
The last date and time the database security config was refreshed, in the format defined by RFC3339.
|
380
|
+
"""
|
280
381
|
return pulumi.get(self, "time_last_refreshed")
|
281
382
|
|
282
383
|
@time_last_refreshed.setter
|
@@ -286,6 +387,9 @@ class _DatabaseSecurityConfigManagementState:
|
|
286
387
|
@property
|
287
388
|
@pulumi.getter(name="timeUpdated")
|
288
389
|
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
390
|
+
"""
|
391
|
+
The date and time the database security configuration was last updated, in the format defined by RFC3339.
|
392
|
+
"""
|
289
393
|
return pulumi.get(self, "time_updated")
|
290
394
|
|
291
395
|
@time_updated.setter
|
@@ -308,9 +412,52 @@ class DatabaseSecurityConfigManagement(pulumi.CustomResource):
|
|
308
412
|
target_id: Optional[pulumi.Input[str]] = None,
|
309
413
|
__props__=None):
|
310
414
|
"""
|
311
|
-
|
415
|
+
This resource provides the Database Security Config Management resource in Oracle Cloud Infrastructure Data Safe service.
|
416
|
+
|
417
|
+
Updates the database security configuration.
|
418
|
+
|
419
|
+
## Example Usage
|
420
|
+
|
421
|
+
```python
|
422
|
+
import pulumi
|
423
|
+
import pulumi_oci as oci
|
424
|
+
|
425
|
+
test_database_security_config_management = oci.data_safe.DatabaseSecurityConfigManagement("test_database_security_config_management",
|
426
|
+
compartment_id=compartment_id,
|
427
|
+
target_id=test_target_database["id"],
|
428
|
+
defined_tags={
|
429
|
+
"Operations.CostCenter": "42",
|
430
|
+
},
|
431
|
+
description=database_security_config_management_description,
|
432
|
+
display_name=database_security_config_management_display_name,
|
433
|
+
freeform_tags={
|
434
|
+
"Department": "Finance",
|
435
|
+
},
|
436
|
+
sql_firewall_config={
|
437
|
+
"exclude_job": database_security_config_management_sql_firewall_config_exclude_job,
|
438
|
+
"status": database_security_config_management_sql_firewall_config_status,
|
439
|
+
"violation_log_auto_purge": database_security_config_management_sql_firewall_config_violation_log_auto_purge,
|
440
|
+
})
|
441
|
+
```
|
442
|
+
|
443
|
+
## Import
|
444
|
+
|
445
|
+
Import is not supported for this resource.
|
446
|
+
|
312
447
|
:param str resource_name: The name of the resource.
|
313
448
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
449
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the database security config.
|
450
|
+
: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"}`
|
451
|
+
:param pulumi.Input[str] description: (Updatable) The description of the security policy.
|
452
|
+
:param pulumi.Input[str] display_name: (Updatable) The display name of the database security config. The name does not have to be unique, and it is changeable.
|
453
|
+
: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"}`
|
454
|
+
:param pulumi.Input[bool] refresh_trigger: (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
455
|
+
|
456
|
+
|
457
|
+
** IMPORTANT **
|
458
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
459
|
+
:param pulumi.Input[Union['DatabaseSecurityConfigManagementSqlFirewallConfigArgs', 'DatabaseSecurityConfigManagementSqlFirewallConfigArgsDict']] sql_firewall_config: (Updatable) Details to update the SQL firewall config.
|
460
|
+
:param pulumi.Input[str] target_id: Unique target identifier.
|
314
461
|
"""
|
315
462
|
...
|
316
463
|
@overload
|
@@ -319,7 +466,38 @@ class DatabaseSecurityConfigManagement(pulumi.CustomResource):
|
|
319
466
|
args: Optional[DatabaseSecurityConfigManagementArgs] = None,
|
320
467
|
opts: Optional[pulumi.ResourceOptions] = None):
|
321
468
|
"""
|
322
|
-
|
469
|
+
This resource provides the Database Security Config Management resource in Oracle Cloud Infrastructure Data Safe service.
|
470
|
+
|
471
|
+
Updates the database security configuration.
|
472
|
+
|
473
|
+
## Example Usage
|
474
|
+
|
475
|
+
```python
|
476
|
+
import pulumi
|
477
|
+
import pulumi_oci as oci
|
478
|
+
|
479
|
+
test_database_security_config_management = oci.data_safe.DatabaseSecurityConfigManagement("test_database_security_config_management",
|
480
|
+
compartment_id=compartment_id,
|
481
|
+
target_id=test_target_database["id"],
|
482
|
+
defined_tags={
|
483
|
+
"Operations.CostCenter": "42",
|
484
|
+
},
|
485
|
+
description=database_security_config_management_description,
|
486
|
+
display_name=database_security_config_management_display_name,
|
487
|
+
freeform_tags={
|
488
|
+
"Department": "Finance",
|
489
|
+
},
|
490
|
+
sql_firewall_config={
|
491
|
+
"exclude_job": database_security_config_management_sql_firewall_config_exclude_job,
|
492
|
+
"status": database_security_config_management_sql_firewall_config_status,
|
493
|
+
"violation_log_auto_purge": database_security_config_management_sql_firewall_config_violation_log_auto_purge,
|
494
|
+
})
|
495
|
+
```
|
496
|
+
|
497
|
+
## Import
|
498
|
+
|
499
|
+
Import is not supported for this resource.
|
500
|
+
|
323
501
|
:param str resource_name: The name of the resource.
|
324
502
|
:param DatabaseSecurityConfigManagementArgs args: The arguments to use to populate this resource's properties.
|
325
503
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
@@ -397,6 +575,24 @@ class DatabaseSecurityConfigManagement(pulumi.CustomResource):
|
|
397
575
|
:param str resource_name: The unique name of the resulting resource.
|
398
576
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
399
577
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
578
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the database security config.
|
579
|
+
: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"}`
|
580
|
+
:param pulumi.Input[str] description: (Updatable) The description of the security policy.
|
581
|
+
:param pulumi.Input[str] display_name: (Updatable) The display name of the database security config. The name does not have to be unique, and it is changeable.
|
582
|
+
: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"}`
|
583
|
+
:param pulumi.Input[str] lifecycle_details: Details about the current state of the database security config in Data Safe.
|
584
|
+
:param pulumi.Input[bool] refresh_trigger: (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
585
|
+
|
586
|
+
|
587
|
+
** IMPORTANT **
|
588
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
589
|
+
:param pulumi.Input[Union['DatabaseSecurityConfigManagementSqlFirewallConfigArgs', 'DatabaseSecurityConfigManagementSqlFirewallConfigArgsDict']] sql_firewall_config: (Updatable) Details to update the SQL firewall config.
|
590
|
+
:param pulumi.Input[str] state: The current state of the database security config.
|
591
|
+
: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"}`
|
592
|
+
:param pulumi.Input[str] target_id: Unique target identifier.
|
593
|
+
:param pulumi.Input[str] time_created: The time that the database security config was created, in the format defined by RFC3339.
|
594
|
+
:param pulumi.Input[str] time_last_refreshed: The last date and time the database security config was refreshed, in the format defined by RFC3339.
|
595
|
+
:param pulumi.Input[str] time_updated: The date and time the database security configuration was last updated, in the format defined by RFC3339.
|
400
596
|
"""
|
401
597
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
402
598
|
|
@@ -421,70 +617,116 @@ class DatabaseSecurityConfigManagement(pulumi.CustomResource):
|
|
421
617
|
@property
|
422
618
|
@pulumi.getter(name="compartmentId")
|
423
619
|
def compartment_id(self) -> pulumi.Output[str]:
|
620
|
+
"""
|
621
|
+
(Updatable) The OCID of the compartment containing the database security config.
|
622
|
+
"""
|
424
623
|
return pulumi.get(self, "compartment_id")
|
425
624
|
|
426
625
|
@property
|
427
626
|
@pulumi.getter(name="definedTags")
|
428
627
|
def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
628
|
+
"""
|
629
|
+
(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"}`
|
630
|
+
"""
|
429
631
|
return pulumi.get(self, "defined_tags")
|
430
632
|
|
431
633
|
@property
|
432
634
|
@pulumi.getter
|
433
635
|
def description(self) -> pulumi.Output[str]:
|
636
|
+
"""
|
637
|
+
(Updatable) The description of the security policy.
|
638
|
+
"""
|
434
639
|
return pulumi.get(self, "description")
|
435
640
|
|
436
641
|
@property
|
437
642
|
@pulumi.getter(name="displayName")
|
438
643
|
def display_name(self) -> pulumi.Output[str]:
|
644
|
+
"""
|
645
|
+
(Updatable) The display name of the database security config. The name does not have to be unique, and it is changeable.
|
646
|
+
"""
|
439
647
|
return pulumi.get(self, "display_name")
|
440
648
|
|
441
649
|
@property
|
442
650
|
@pulumi.getter(name="freeformTags")
|
443
651
|
def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
652
|
+
"""
|
653
|
+
(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"}`
|
654
|
+
"""
|
444
655
|
return pulumi.get(self, "freeform_tags")
|
445
656
|
|
446
657
|
@property
|
447
658
|
@pulumi.getter(name="lifecycleDetails")
|
448
659
|
def lifecycle_details(self) -> pulumi.Output[str]:
|
660
|
+
"""
|
661
|
+
Details about the current state of the database security config in Data Safe.
|
662
|
+
"""
|
449
663
|
return pulumi.get(self, "lifecycle_details")
|
450
664
|
|
451
665
|
@property
|
452
666
|
@pulumi.getter(name="refreshTrigger")
|
453
667
|
def refresh_trigger(self) -> pulumi.Output[Optional[bool]]:
|
668
|
+
"""
|
669
|
+
(Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.
|
670
|
+
|
671
|
+
|
672
|
+
** IMPORTANT **
|
673
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
674
|
+
"""
|
454
675
|
return pulumi.get(self, "refresh_trigger")
|
455
676
|
|
456
677
|
@property
|
457
678
|
@pulumi.getter(name="sqlFirewallConfig")
|
458
679
|
def sql_firewall_config(self) -> pulumi.Output['outputs.DatabaseSecurityConfigManagementSqlFirewallConfig']:
|
680
|
+
"""
|
681
|
+
(Updatable) Details to update the SQL firewall config.
|
682
|
+
"""
|
459
683
|
return pulumi.get(self, "sql_firewall_config")
|
460
684
|
|
461
685
|
@property
|
462
686
|
@pulumi.getter
|
463
687
|
def state(self) -> pulumi.Output[str]:
|
688
|
+
"""
|
689
|
+
The current state of the database security config.
|
690
|
+
"""
|
464
691
|
return pulumi.get(self, "state")
|
465
692
|
|
466
693
|
@property
|
467
694
|
@pulumi.getter(name="systemTags")
|
468
695
|
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
696
|
+
"""
|
697
|
+
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"}`
|
698
|
+
"""
|
469
699
|
return pulumi.get(self, "system_tags")
|
470
700
|
|
471
701
|
@property
|
472
702
|
@pulumi.getter(name="targetId")
|
473
703
|
def target_id(self) -> pulumi.Output[Optional[str]]:
|
704
|
+
"""
|
705
|
+
Unique target identifier.
|
706
|
+
"""
|
474
707
|
return pulumi.get(self, "target_id")
|
475
708
|
|
476
709
|
@property
|
477
710
|
@pulumi.getter(name="timeCreated")
|
478
711
|
def time_created(self) -> pulumi.Output[str]:
|
712
|
+
"""
|
713
|
+
The time that the database security config was created, in the format defined by RFC3339.
|
714
|
+
"""
|
479
715
|
return pulumi.get(self, "time_created")
|
480
716
|
|
481
717
|
@property
|
482
718
|
@pulumi.getter(name="timeLastRefreshed")
|
483
719
|
def time_last_refreshed(self) -> pulumi.Output[str]:
|
720
|
+
"""
|
721
|
+
The last date and time the database security config was refreshed, in the format defined by RFC3339.
|
722
|
+
"""
|
484
723
|
return pulumi.get(self, "time_last_refreshed")
|
485
724
|
|
486
725
|
@property
|
487
726
|
@pulumi.getter(name="timeUpdated")
|
488
727
|
def time_updated(self) -> pulumi.Output[str]:
|
728
|
+
"""
|
729
|
+
The date and time the database security configuration was last updated, in the format defined by RFC3339.
|
730
|
+
"""
|
489
731
|
return pulumi.get(self, "time_updated")
|
490
732
|
|