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
pulumi_oci/datasafe/outputs.py
CHANGED
@@ -1689,6 +1689,12 @@ class DatabaseSecurityConfigManagementSqlFirewallConfig(dict):
|
|
1689
1689
|
status: Optional[str] = None,
|
1690
1690
|
time_status_updated: Optional[str] = None,
|
1691
1691
|
violation_log_auto_purge: Optional[str] = None):
|
1692
|
+
"""
|
1693
|
+
:param str exclude_job: (Updatable) Specifies whether the firewall should include or exclude the database internal job activities.
|
1694
|
+
:param str status: (Updatable) Specifies whether the firewall is enabled or disabled on the target database.
|
1695
|
+
:param str time_status_updated: The most recent time when the firewall status is updated, in the format defined by RFC3339.
|
1696
|
+
:param str violation_log_auto_purge: (Updatable) Specifies whether Data Safe should automatically purge the violation logs from the database after collecting the violation logs and persisting on Data Safe.
|
1697
|
+
"""
|
1692
1698
|
if exclude_job is not None:
|
1693
1699
|
pulumi.set(__self__, "exclude_job", exclude_job)
|
1694
1700
|
if status is not None:
|
@@ -1701,21 +1707,33 @@ class DatabaseSecurityConfigManagementSqlFirewallConfig(dict):
|
|
1701
1707
|
@property
|
1702
1708
|
@pulumi.getter(name="excludeJob")
|
1703
1709
|
def exclude_job(self) -> Optional[str]:
|
1710
|
+
"""
|
1711
|
+
(Updatable) Specifies whether the firewall should include or exclude the database internal job activities.
|
1712
|
+
"""
|
1704
1713
|
return pulumi.get(self, "exclude_job")
|
1705
1714
|
|
1706
1715
|
@property
|
1707
1716
|
@pulumi.getter
|
1708
1717
|
def status(self) -> Optional[str]:
|
1718
|
+
"""
|
1719
|
+
(Updatable) Specifies whether the firewall is enabled or disabled on the target database.
|
1720
|
+
"""
|
1709
1721
|
return pulumi.get(self, "status")
|
1710
1722
|
|
1711
1723
|
@property
|
1712
1724
|
@pulumi.getter(name="timeStatusUpdated")
|
1713
1725
|
def time_status_updated(self) -> Optional[str]:
|
1726
|
+
"""
|
1727
|
+
The most recent time when the firewall status is updated, in the format defined by RFC3339.
|
1728
|
+
"""
|
1714
1729
|
return pulumi.get(self, "time_status_updated")
|
1715
1730
|
|
1716
1731
|
@property
|
1717
1732
|
@pulumi.getter(name="violationLogAutoPurge")
|
1718
1733
|
def violation_log_auto_purge(self) -> Optional[str]:
|
1734
|
+
"""
|
1735
|
+
(Updatable) Specifies whether Data Safe should automatically purge the violation logs from the database after collecting the violation logs and persisting on Data Safe.
|
1736
|
+
"""
|
1719
1737
|
return pulumi.get(self, "violation_log_auto_purge")
|
1720
1738
|
|
1721
1739
|
|
@@ -22,6 +22,12 @@ class SecurityPolicyDeploymentManagementArgs:
|
|
22
22
|
target_id: Optional[pulumi.Input[str]] = None):
|
23
23
|
"""
|
24
24
|
The set of arguments for constructing a SecurityPolicyDeploymentManagement resource.
|
25
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the security policy deployment.
|
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 deployment.
|
28
|
+
:param pulumi.Input[str] display_name: (Updatable) The display name of the security policy deployment. 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 SecurityPolicyDeploymentManagementArgs:
|
|
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 deployment.
|
50
|
+
"""
|
42
51
|
return pulumi.get(self, "compartment_id")
|
43
52
|
|
44
53
|
@compartment_id.setter
|
@@ -48,6 +57,9 @@ class SecurityPolicyDeploymentManagementArgs:
|
|
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 SecurityPolicyDeploymentManagementArgs:
|
|
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 deployment.
|
74
|
+
"""
|
60
75
|
return pulumi.get(self, "description")
|
61
76
|
|
62
77
|
@description.setter
|
@@ -66,6 +81,9 @@ class SecurityPolicyDeploymentManagementArgs:
|
|
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 deployment. 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 SecurityPolicyDeploymentManagementArgs:
|
|
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 SecurityPolicyDeploymentManagementArgs:
|
|
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
|
@@ -108,6 +132,18 @@ class _SecurityPolicyDeploymentManagementState:
|
|
108
132
|
time_updated: Optional[pulumi.Input[str]] = None):
|
109
133
|
"""
|
110
134
|
Input properties used for looking up and filtering SecurityPolicyDeploymentManagement resources.
|
135
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the security policy deployment.
|
136
|
+
: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"}`
|
137
|
+
:param pulumi.Input[str] description: (Updatable) The description of the security policy deployment.
|
138
|
+
:param pulumi.Input[str] display_name: (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
|
139
|
+
: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"}`
|
140
|
+
:param pulumi.Input[str] lifecycle_details: Details about the current state of the security policy deployment in Data Safe.
|
141
|
+
:param pulumi.Input[str] security_policy_id: The OCID of the security policy corresponding to the security policy deployment.
|
142
|
+
:param pulumi.Input[str] state: The current state of the security policy deployment.
|
143
|
+
: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"}`
|
144
|
+
:param pulumi.Input[str] target_id: Unique target identifier.
|
145
|
+
:param pulumi.Input[str] time_created: The time that the security policy deployment was created, in the format defined by RFC3339.
|
146
|
+
:param pulumi.Input[str] time_updated: The last date and time the security policy deployment was updated, in the format defined by RFC3339.
|
111
147
|
"""
|
112
148
|
if compartment_id is not None:
|
113
149
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -137,6 +173,9 @@ class _SecurityPolicyDeploymentManagementState:
|
|
137
173
|
@property
|
138
174
|
@pulumi.getter(name="compartmentId")
|
139
175
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
176
|
+
"""
|
177
|
+
(Updatable) The OCID of the compartment containing the security policy deployment.
|
178
|
+
"""
|
140
179
|
return pulumi.get(self, "compartment_id")
|
141
180
|
|
142
181
|
@compartment_id.setter
|
@@ -146,6 +185,9 @@ class _SecurityPolicyDeploymentManagementState:
|
|
146
185
|
@property
|
147
186
|
@pulumi.getter(name="definedTags")
|
148
187
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
188
|
+
"""
|
189
|
+
(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"}`
|
190
|
+
"""
|
149
191
|
return pulumi.get(self, "defined_tags")
|
150
192
|
|
151
193
|
@defined_tags.setter
|
@@ -155,6 +197,9 @@ class _SecurityPolicyDeploymentManagementState:
|
|
155
197
|
@property
|
156
198
|
@pulumi.getter
|
157
199
|
def description(self) -> Optional[pulumi.Input[str]]:
|
200
|
+
"""
|
201
|
+
(Updatable) The description of the security policy deployment.
|
202
|
+
"""
|
158
203
|
return pulumi.get(self, "description")
|
159
204
|
|
160
205
|
@description.setter
|
@@ -164,6 +209,9 @@ class _SecurityPolicyDeploymentManagementState:
|
|
164
209
|
@property
|
165
210
|
@pulumi.getter(name="displayName")
|
166
211
|
def display_name(self) -> Optional[pulumi.Input[str]]:
|
212
|
+
"""
|
213
|
+
(Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
|
214
|
+
"""
|
167
215
|
return pulumi.get(self, "display_name")
|
168
216
|
|
169
217
|
@display_name.setter
|
@@ -173,6 +221,9 @@ class _SecurityPolicyDeploymentManagementState:
|
|
173
221
|
@property
|
174
222
|
@pulumi.getter(name="freeformTags")
|
175
223
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
224
|
+
"""
|
225
|
+
(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"}`
|
226
|
+
"""
|
176
227
|
return pulumi.get(self, "freeform_tags")
|
177
228
|
|
178
229
|
@freeform_tags.setter
|
@@ -182,6 +233,9 @@ class _SecurityPolicyDeploymentManagementState:
|
|
182
233
|
@property
|
183
234
|
@pulumi.getter(name="lifecycleDetails")
|
184
235
|
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
236
|
+
"""
|
237
|
+
Details about the current state of the security policy deployment in Data Safe.
|
238
|
+
"""
|
185
239
|
return pulumi.get(self, "lifecycle_details")
|
186
240
|
|
187
241
|
@lifecycle_details.setter
|
@@ -191,6 +245,9 @@ class _SecurityPolicyDeploymentManagementState:
|
|
191
245
|
@property
|
192
246
|
@pulumi.getter(name="securityPolicyId")
|
193
247
|
def security_policy_id(self) -> Optional[pulumi.Input[str]]:
|
248
|
+
"""
|
249
|
+
The OCID of the security policy corresponding to the security policy deployment.
|
250
|
+
"""
|
194
251
|
return pulumi.get(self, "security_policy_id")
|
195
252
|
|
196
253
|
@security_policy_id.setter
|
@@ -200,6 +257,9 @@ class _SecurityPolicyDeploymentManagementState:
|
|
200
257
|
@property
|
201
258
|
@pulumi.getter
|
202
259
|
def state(self) -> Optional[pulumi.Input[str]]:
|
260
|
+
"""
|
261
|
+
The current state of the security policy deployment.
|
262
|
+
"""
|
203
263
|
return pulumi.get(self, "state")
|
204
264
|
|
205
265
|
@state.setter
|
@@ -209,6 +269,9 @@ class _SecurityPolicyDeploymentManagementState:
|
|
209
269
|
@property
|
210
270
|
@pulumi.getter(name="systemTags")
|
211
271
|
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
272
|
+
"""
|
273
|
+
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"}`
|
274
|
+
"""
|
212
275
|
return pulumi.get(self, "system_tags")
|
213
276
|
|
214
277
|
@system_tags.setter
|
@@ -218,6 +281,9 @@ class _SecurityPolicyDeploymentManagementState:
|
|
218
281
|
@property
|
219
282
|
@pulumi.getter(name="targetId")
|
220
283
|
def target_id(self) -> Optional[pulumi.Input[str]]:
|
284
|
+
"""
|
285
|
+
Unique target identifier.
|
286
|
+
"""
|
221
287
|
return pulumi.get(self, "target_id")
|
222
288
|
|
223
289
|
@target_id.setter
|
@@ -227,6 +293,9 @@ class _SecurityPolicyDeploymentManagementState:
|
|
227
293
|
@property
|
228
294
|
@pulumi.getter(name="timeCreated")
|
229
295
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
296
|
+
"""
|
297
|
+
The time that the security policy deployment was created, in the format defined by RFC3339.
|
298
|
+
"""
|
230
299
|
return pulumi.get(self, "time_created")
|
231
300
|
|
232
301
|
@time_created.setter
|
@@ -236,6 +305,9 @@ class _SecurityPolicyDeploymentManagementState:
|
|
236
305
|
@property
|
237
306
|
@pulumi.getter(name="timeUpdated")
|
238
307
|
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
308
|
+
"""
|
309
|
+
The last date and time the security policy deployment was updated, in the format defined by RFC3339.
|
310
|
+
"""
|
239
311
|
return pulumi.get(self, "time_updated")
|
240
312
|
|
241
313
|
@time_updated.setter
|
@@ -256,9 +328,41 @@ class SecurityPolicyDeploymentManagement(pulumi.CustomResource):
|
|
256
328
|
target_id: Optional[pulumi.Input[str]] = None,
|
257
329
|
__props__=None):
|
258
330
|
"""
|
259
|
-
|
331
|
+
This resource provides the Security Policy Deployment Management resource in Oracle Cloud Infrastructure Data Safe service.
|
332
|
+
|
333
|
+
Updates the security policy deployment.
|
334
|
+
|
335
|
+
## Example Usage
|
336
|
+
|
337
|
+
```python
|
338
|
+
import pulumi
|
339
|
+
import pulumi_oci as oci
|
340
|
+
|
341
|
+
test_security_policy_deployment_management = oci.data_safe.SecurityPolicyDeploymentManagement("test_security_policy_deployment_management",
|
342
|
+
compartment_id=compartment_id,
|
343
|
+
target_id=test_target_database["id"],
|
344
|
+
defined_tags={
|
345
|
+
"Operations.CostCenter": "42",
|
346
|
+
},
|
347
|
+
description=security_policy_deployment_management_description,
|
348
|
+
display_name=security_policy_deployment_management_display_name,
|
349
|
+
freeform_tags={
|
350
|
+
"Department": "Finance",
|
351
|
+
})
|
352
|
+
```
|
353
|
+
|
354
|
+
## Import
|
355
|
+
|
356
|
+
Import is not supported for this resource.
|
357
|
+
|
260
358
|
:param str resource_name: The name of the resource.
|
261
359
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
360
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the security policy deployment.
|
361
|
+
: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"}`
|
362
|
+
:param pulumi.Input[str] description: (Updatable) The description of the security policy deployment.
|
363
|
+
:param pulumi.Input[str] display_name: (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
|
364
|
+
: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"}`
|
365
|
+
:param pulumi.Input[str] target_id: Unique target identifier.
|
262
366
|
"""
|
263
367
|
...
|
264
368
|
@overload
|
@@ -267,7 +371,33 @@ class SecurityPolicyDeploymentManagement(pulumi.CustomResource):
|
|
267
371
|
args: Optional[SecurityPolicyDeploymentManagementArgs] = None,
|
268
372
|
opts: Optional[pulumi.ResourceOptions] = None):
|
269
373
|
"""
|
270
|
-
|
374
|
+
This resource provides the Security Policy Deployment Management resource in Oracle Cloud Infrastructure Data Safe service.
|
375
|
+
|
376
|
+
Updates the security policy deployment.
|
377
|
+
|
378
|
+
## Example Usage
|
379
|
+
|
380
|
+
```python
|
381
|
+
import pulumi
|
382
|
+
import pulumi_oci as oci
|
383
|
+
|
384
|
+
test_security_policy_deployment_management = oci.data_safe.SecurityPolicyDeploymentManagement("test_security_policy_deployment_management",
|
385
|
+
compartment_id=compartment_id,
|
386
|
+
target_id=test_target_database["id"],
|
387
|
+
defined_tags={
|
388
|
+
"Operations.CostCenter": "42",
|
389
|
+
},
|
390
|
+
description=security_policy_deployment_management_description,
|
391
|
+
display_name=security_policy_deployment_management_display_name,
|
392
|
+
freeform_tags={
|
393
|
+
"Department": "Finance",
|
394
|
+
})
|
395
|
+
```
|
396
|
+
|
397
|
+
## Import
|
398
|
+
|
399
|
+
Import is not supported for this resource.
|
400
|
+
|
271
401
|
:param str resource_name: The name of the resource.
|
272
402
|
:param SecurityPolicyDeploymentManagementArgs args: The arguments to use to populate this resource's properties.
|
273
403
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
@@ -339,6 +469,18 @@ class SecurityPolicyDeploymentManagement(pulumi.CustomResource):
|
|
339
469
|
:param str resource_name: The unique name of the resulting resource.
|
340
470
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
341
471
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
472
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing the security policy deployment.
|
473
|
+
: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"}`
|
474
|
+
:param pulumi.Input[str] description: (Updatable) The description of the security policy deployment.
|
475
|
+
:param pulumi.Input[str] display_name: (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
|
476
|
+
: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"}`
|
477
|
+
:param pulumi.Input[str] lifecycle_details: Details about the current state of the security policy deployment in Data Safe.
|
478
|
+
:param pulumi.Input[str] security_policy_id: The OCID of the security policy corresponding to the security policy deployment.
|
479
|
+
:param pulumi.Input[str] state: The current state of the security policy deployment.
|
480
|
+
: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"}`
|
481
|
+
:param pulumi.Input[str] target_id: Unique target identifier.
|
482
|
+
:param pulumi.Input[str] time_created: The time that the security policy deployment was created, in the format defined by RFC3339.
|
483
|
+
:param pulumi.Input[str] time_updated: The last date and time the security policy deployment was updated, in the format defined by RFC3339.
|
342
484
|
"""
|
343
485
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
344
486
|
|
@@ -361,60 +503,96 @@ class SecurityPolicyDeploymentManagement(pulumi.CustomResource):
|
|
361
503
|
@property
|
362
504
|
@pulumi.getter(name="compartmentId")
|
363
505
|
def compartment_id(self) -> pulumi.Output[str]:
|
506
|
+
"""
|
507
|
+
(Updatable) The OCID of the compartment containing the security policy deployment.
|
508
|
+
"""
|
364
509
|
return pulumi.get(self, "compartment_id")
|
365
510
|
|
366
511
|
@property
|
367
512
|
@pulumi.getter(name="definedTags")
|
368
513
|
def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
514
|
+
"""
|
515
|
+
(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"}`
|
516
|
+
"""
|
369
517
|
return pulumi.get(self, "defined_tags")
|
370
518
|
|
371
519
|
@property
|
372
520
|
@pulumi.getter
|
373
521
|
def description(self) -> pulumi.Output[str]:
|
522
|
+
"""
|
523
|
+
(Updatable) The description of the security policy deployment.
|
524
|
+
"""
|
374
525
|
return pulumi.get(self, "description")
|
375
526
|
|
376
527
|
@property
|
377
528
|
@pulumi.getter(name="displayName")
|
378
529
|
def display_name(self) -> pulumi.Output[str]:
|
530
|
+
"""
|
531
|
+
(Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
|
532
|
+
"""
|
379
533
|
return pulumi.get(self, "display_name")
|
380
534
|
|
381
535
|
@property
|
382
536
|
@pulumi.getter(name="freeformTags")
|
383
537
|
def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
538
|
+
"""
|
539
|
+
(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"}`
|
540
|
+
"""
|
384
541
|
return pulumi.get(self, "freeform_tags")
|
385
542
|
|
386
543
|
@property
|
387
544
|
@pulumi.getter(name="lifecycleDetails")
|
388
545
|
def lifecycle_details(self) -> pulumi.Output[str]:
|
546
|
+
"""
|
547
|
+
Details about the current state of the security policy deployment in Data Safe.
|
548
|
+
"""
|
389
549
|
return pulumi.get(self, "lifecycle_details")
|
390
550
|
|
391
551
|
@property
|
392
552
|
@pulumi.getter(name="securityPolicyId")
|
393
553
|
def security_policy_id(self) -> pulumi.Output[str]:
|
554
|
+
"""
|
555
|
+
The OCID of the security policy corresponding to the security policy deployment.
|
556
|
+
"""
|
394
557
|
return pulumi.get(self, "security_policy_id")
|
395
558
|
|
396
559
|
@property
|
397
560
|
@pulumi.getter
|
398
561
|
def state(self) -> pulumi.Output[str]:
|
562
|
+
"""
|
563
|
+
The current state of the security policy deployment.
|
564
|
+
"""
|
399
565
|
return pulumi.get(self, "state")
|
400
566
|
|
401
567
|
@property
|
402
568
|
@pulumi.getter(name="systemTags")
|
403
569
|
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
570
|
+
"""
|
571
|
+
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"}`
|
572
|
+
"""
|
404
573
|
return pulumi.get(self, "system_tags")
|
405
574
|
|
406
575
|
@property
|
407
576
|
@pulumi.getter(name="targetId")
|
408
577
|
def target_id(self) -> pulumi.Output[str]:
|
578
|
+
"""
|
579
|
+
Unique target identifier.
|
580
|
+
"""
|
409
581
|
return pulumi.get(self, "target_id")
|
410
582
|
|
411
583
|
@property
|
412
584
|
@pulumi.getter(name="timeCreated")
|
413
585
|
def time_created(self) -> pulumi.Output[str]:
|
586
|
+
"""
|
587
|
+
The time that the security policy deployment was created, in the format defined by RFC3339.
|
588
|
+
"""
|
414
589
|
return pulumi.get(self, "time_created")
|
415
590
|
|
416
591
|
@property
|
417
592
|
@pulumi.getter(name="timeUpdated")
|
418
593
|
def time_updated(self) -> pulumi.Output[str]:
|
594
|
+
"""
|
595
|
+
The last date and time the security policy deployment was updated, in the format defined by RFC3339.
|
596
|
+
"""
|
419
597
|
return pulumi.get(self, "time_updated")
|
420
598
|
|