pulumi-oci 2.8.0a1724220787__py3-none-any.whl → 2.9.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +86 -38
- pulumi_oci/analytics/_inputs.py +4 -4
- pulumi_oci/analytics/analytics_instance.py +199 -25
- pulumi_oci/analytics/get_analytics_instance.py +51 -2
- pulumi_oci/analytics/get_analytics_instances.py +1 -1
- pulumi_oci/analytics/outputs.py +52 -12
- 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/get_maintenance_run.py +14 -1
- pulumi_oci/database/maintenance_run.py +56 -7
- pulumi_oci/database/outputs.py +196 -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/disasterrecovery/_inputs.py +66 -2
- pulumi_oci/disasterrecovery/dr_protection_group.py +8 -0
- pulumi_oci/disasterrecovery/get_dr_plan_executions.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +150 -10
- 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/integration/get_integration_instance.py +25 -2
- pulumi_oci/integration/integration_instance.py +88 -0
- pulumi_oci/integration/outputs.py +24 -6
- 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 +225 -2
- pulumi_oci/mysql/get_mysql_backup.py +1 -1
- pulumi_oci/mysql/get_mysql_db_system.py +27 -1
- pulumi_oci/mysql/mysql_backup.py +4 -4
- pulumi_oci/mysql/mysql_db_system.py +108 -0
- pulumi_oci/mysql/outputs.py +569 -8
- 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/redis/__init__.py +1 -0
- pulumi_oci/redis/_inputs.py +40 -0
- pulumi_oci/redis/get_redis_cluster.py +47 -21
- pulumi_oci/redis/get_redis_cluster_nodes.py +156 -0
- pulumi_oci/redis/get_redis_clusters.py +8 -8
- pulumi_oci/redis/outputs.py +160 -28
- pulumi_oci/redis/redis_cluster.py +177 -79
- pulumi_oci/waf/_inputs.py +29 -16
- pulumi_oci/waf/outputs.py +33 -10
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/RECORD +127 -108
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.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.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/top_level.txt +0 -0
pulumi_oci/waf/_inputs.py
CHANGED
@@ -186,26 +186,18 @@ class AppFirewallPolicyActionArgs:
|
|
186
186
|
@pulumi.input_type
|
187
187
|
class AppFirewallPolicyActionBodyArgs:
|
188
188
|
def __init__(__self__, *,
|
189
|
-
|
190
|
-
|
189
|
+
type: pulumi.Input[str],
|
190
|
+
template: Optional[pulumi.Input[str]] = None,
|
191
|
+
text: Optional[pulumi.Input[str]] = None):
|
191
192
|
"""
|
192
|
-
:param pulumi.Input[str] text: (Updatable) Static response body text.
|
193
193
|
:param pulumi.Input[str] type: (Updatable) Type of HttpResponseBody.
|
194
|
+
:param pulumi.Input[str] text: (Updatable) Static response body text.
|
194
195
|
"""
|
195
|
-
pulumi.set(__self__, "text", text)
|
196
196
|
pulumi.set(__self__, "type", type)
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
"""
|
202
|
-
(Updatable) Static response body text.
|
203
|
-
"""
|
204
|
-
return pulumi.get(self, "text")
|
205
|
-
|
206
|
-
@text.setter
|
207
|
-
def text(self, value: pulumi.Input[str]):
|
208
|
-
pulumi.set(self, "text", value)
|
197
|
+
if template is not None:
|
198
|
+
pulumi.set(__self__, "template", template)
|
199
|
+
if text is not None:
|
200
|
+
pulumi.set(__self__, "text", text)
|
209
201
|
|
210
202
|
@property
|
211
203
|
@pulumi.getter
|
@@ -219,6 +211,27 @@ class AppFirewallPolicyActionBodyArgs:
|
|
219
211
|
def type(self, value: pulumi.Input[str]):
|
220
212
|
pulumi.set(self, "type", value)
|
221
213
|
|
214
|
+
@property
|
215
|
+
@pulumi.getter
|
216
|
+
def template(self) -> Optional[pulumi.Input[str]]:
|
217
|
+
return pulumi.get(self, "template")
|
218
|
+
|
219
|
+
@template.setter
|
220
|
+
def template(self, value: Optional[pulumi.Input[str]]):
|
221
|
+
pulumi.set(self, "template", value)
|
222
|
+
|
223
|
+
@property
|
224
|
+
@pulumi.getter
|
225
|
+
def text(self) -> Optional[pulumi.Input[str]]:
|
226
|
+
"""
|
227
|
+
(Updatable) Static response body text.
|
228
|
+
"""
|
229
|
+
return pulumi.get(self, "text")
|
230
|
+
|
231
|
+
@text.setter
|
232
|
+
def text(self, value: Optional[pulumi.Input[str]]):
|
233
|
+
pulumi.set(self, "text", value)
|
234
|
+
|
222
235
|
|
223
236
|
@pulumi.input_type
|
224
237
|
class AppFirewallPolicyActionHeaderArgs:
|
pulumi_oci/waf/outputs.py
CHANGED
@@ -224,30 +224,39 @@ class AppFirewallPolicyAction(dict):
|
|
224
224
|
@pulumi.output_type
|
225
225
|
class AppFirewallPolicyActionBody(dict):
|
226
226
|
def __init__(__self__, *,
|
227
|
-
|
228
|
-
|
227
|
+
type: str,
|
228
|
+
template: Optional[str] = None,
|
229
|
+
text: Optional[str] = None):
|
229
230
|
"""
|
230
|
-
:param str text: (Updatable) Static response body text.
|
231
231
|
:param str type: (Updatable) Type of HttpResponseBody.
|
232
|
+
:param str text: (Updatable) Static response body text.
|
232
233
|
"""
|
233
|
-
pulumi.set(__self__, "text", text)
|
234
234
|
pulumi.set(__self__, "type", type)
|
235
|
+
if template is not None:
|
236
|
+
pulumi.set(__self__, "template", template)
|
237
|
+
if text is not None:
|
238
|
+
pulumi.set(__self__, "text", text)
|
235
239
|
|
236
240
|
@property
|
237
241
|
@pulumi.getter
|
238
|
-
def
|
242
|
+
def type(self) -> str:
|
239
243
|
"""
|
240
|
-
(Updatable)
|
244
|
+
(Updatable) Type of HttpResponseBody.
|
241
245
|
"""
|
242
|
-
return pulumi.get(self, "
|
246
|
+
return pulumi.get(self, "type")
|
243
247
|
|
244
248
|
@property
|
245
249
|
@pulumi.getter
|
246
|
-
def
|
250
|
+
def template(self) -> Optional[str]:
|
251
|
+
return pulumi.get(self, "template")
|
252
|
+
|
253
|
+
@property
|
254
|
+
@pulumi.getter
|
255
|
+
def text(self) -> Optional[str]:
|
247
256
|
"""
|
248
|
-
(Updatable)
|
257
|
+
(Updatable) Static response body text.
|
249
258
|
"""
|
250
|
-
return pulumi.get(self, "
|
259
|
+
return pulumi.get(self, "text")
|
251
260
|
|
252
261
|
|
253
262
|
@pulumi.output_type
|
@@ -2656,15 +2665,22 @@ class GetWebAppFirewallPoliciesWebAppFirewallPolicyCollectionItemActionResult(di
|
|
2656
2665
|
@pulumi.output_type
|
2657
2666
|
class GetWebAppFirewallPoliciesWebAppFirewallPolicyCollectionItemActionBodyResult(dict):
|
2658
2667
|
def __init__(__self__, *,
|
2668
|
+
template: str,
|
2659
2669
|
text: str,
|
2660
2670
|
type: str):
|
2661
2671
|
"""
|
2662
2672
|
:param str text: Static response body text.
|
2663
2673
|
:param str type: Type of WebAppFirewallPolicyRule.
|
2664
2674
|
"""
|
2675
|
+
pulumi.set(__self__, "template", template)
|
2665
2676
|
pulumi.set(__self__, "text", text)
|
2666
2677
|
pulumi.set(__self__, "type", type)
|
2667
2678
|
|
2679
|
+
@property
|
2680
|
+
@pulumi.getter
|
2681
|
+
def template(self) -> str:
|
2682
|
+
return pulumi.get(self, "template")
|
2683
|
+
|
2668
2684
|
@property
|
2669
2685
|
@pulumi.getter
|
2670
2686
|
def text(self) -> str:
|
@@ -3748,15 +3764,22 @@ class GetWebAppFirewallPolicyActionResult(dict):
|
|
3748
3764
|
@pulumi.output_type
|
3749
3765
|
class GetWebAppFirewallPolicyActionBodyResult(dict):
|
3750
3766
|
def __init__(__self__, *,
|
3767
|
+
template: str,
|
3751
3768
|
text: str,
|
3752
3769
|
type: str):
|
3753
3770
|
"""
|
3754
3771
|
:param str text: Static response body text.
|
3755
3772
|
:param str type: Type of WebAppFirewallPolicyRule.
|
3756
3773
|
"""
|
3774
|
+
pulumi.set(__self__, "template", template)
|
3757
3775
|
pulumi.set(__self__, "text", text)
|
3758
3776
|
pulumi.set(__self__, "type", type)
|
3759
3777
|
|
3778
|
+
@property
|
3779
|
+
@pulumi.getter
|
3780
|
+
def template(self) -> str:
|
3781
|
+
return pulumi.get(self, "template")
|
3782
|
+
|
3760
3783
|
@property
|
3761
3784
|
@pulumi.getter
|
3762
3785
|
def text(self) -> str:
|