pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.12.0a1728642710__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 +145 -0
- pulumi_oci/analytics/analytics_instance.py +54 -5
- pulumi_oci/analytics/get_analytics_instance.py +18 -4
- pulumi_oci/analytics/outputs.py +12 -1
- pulumi_oci/core/_inputs.py +648 -159
- pulumi_oci/core/cluster_network.py +7 -7
- pulumi_oci/core/get_instance.py +29 -1
- pulumi_oci/core/get_vcn.py +15 -1
- pulumi_oci/core/get_vnic.py +15 -1
- pulumi_oci/core/instance.py +87 -0
- pulumi_oci/core/instance_configuration.py +12 -0
- pulumi_oci/core/ipsec.py +183 -23
- pulumi_oci/core/network_security_group_security_rule.py +2 -2
- pulumi_oci/core/outputs.py +709 -107
- pulumi_oci/core/service_gateway.py +13 -7
- pulumi_oci/core/vcn.py +65 -23
- pulumi_oci/core/virtual_network.py +35 -1
- pulumi_oci/core/vnic_attachment.py +2 -0
- pulumi_oci/database/_inputs.py +905 -27
- pulumi_oci/database/autonomous_database.py +48 -28
- pulumi_oci/database/autonomous_database_backup.py +12 -12
- pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
- pulumi_oci/database/autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/backup.py +12 -12
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
- pulumi_oci/database/cloud_vm_cluster.py +71 -0
- pulumi_oci/database/database.py +15 -15
- pulumi_oci/database/database_upgrade.py +12 -12
- pulumi_oci/database/db_system.py +9 -9
- pulumi_oci/database/exadata_infrastructure.py +2 -0
- pulumi_oci/database/get_autonomous_container_database.py +1 -1
- pulumi_oci/database/get_autonomous_database.py +18 -4
- pulumi_oci/database/get_autonomous_database_backup.py +3 -3
- pulumi_oci/database/get_autonomous_databases.py +88 -5
- pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
- pulumi_oci/database/get_database.py +3 -3
- pulumi_oci/database/get_pluggable_database.py +12 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/outputs.py +1431 -74
- pulumi_oci/database/pluggable_database.py +34 -0
- pulumi_oci/database/vm_cluster.py +71 -0
- pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
- pulumi_oci/datasafe/__init__.py +12 -0
- pulumi_oci/datasafe/_inputs.py +441 -0
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_sql_collection.py +392 -0
- pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
- pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
- pulumi_oci/datasafe/get_sql_collections.py +364 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
- pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
- pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
- pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
- pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
- pulumi_oci/datasafe/outputs.py +1808 -2
- pulumi_oci/desktops/_inputs.py +223 -7
- pulumi_oci/desktops/desktop_pool.py +186 -21
- pulumi_oci/desktops/get_desktop_pool.py +47 -5
- pulumi_oci/desktops/outputs.py +480 -19
- pulumi_oci/fleetappsmanagement/__init__.py +43 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
- pulumi_oci/fleetappsmanagement/fleet.py +955 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
- pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
- pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
- pulumi_oci/fleetappsmanagement/get_property.py +323 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
- pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
- pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
- pulumi_oci/fleetappsmanagement/property.py +697 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
- pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
- pulumi_oci/functions/outputs.py +11 -0
- pulumi_oci/fusionapps/_inputs.py +21 -20
- pulumi_oci/fusionapps/fusion_environment.py +2 -2
- pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
- pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
- pulumi_oci/fusionapps/outputs.py +11 -10
- pulumi_oci/integration/__init__.py +1 -0
- pulumi_oci/integration/_inputs.py +289 -2
- pulumi_oci/integration/get_integration_instance.py +65 -1
- pulumi_oci/integration/integration_instance.py +172 -0
- pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
- pulumi_oci/integration/outputs.py +587 -19
- pulumi_oci/loadbalancer/_inputs.py +20 -0
- pulumi_oci/loadbalancer/listener.py +4 -2
- pulumi_oci/loadbalancer/outputs.py +16 -2
- pulumi_oci/monitoring/_inputs.py +137 -16
- pulumi_oci/monitoring/alarm_suppression.py +164 -35
- pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
- pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
- pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
- pulumi_oci/monitoring/outputs.py +291 -18
- pulumi_oci/mysql/mysql_db_system.py +7 -7
- pulumi_oci/objectstorage/__init__.py +3 -0
- pulumi_oci/objectstorage/_inputs.py +97 -0
- pulumi_oci/objectstorage/get_object_versions.py +6 -6
- pulumi_oci/objectstorage/get_objects.py +6 -6
- pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
- pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
- pulumi_oci/objectstorage/outputs.py +258 -0
- pulumi_oci/objectstorage/private_endpoint.py +630 -0
- pulumi_oci/objectstorage/storage_object.py +7 -7
- pulumi_oci/opsi/_inputs.py +268 -114
- pulumi_oci/opsi/database_insight.py +162 -21
- pulumi_oci/opsi/exadata_insight.py +44 -0
- pulumi_oci/opsi/get_database_insight.py +40 -1
- pulumi_oci/opsi/get_host_insights.py +2 -2
- pulumi_oci/opsi/host_insight.py +0 -48
- pulumi_oci/opsi/outputs.py +405 -109
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/securityattribute/__init__.py +15 -0
- pulumi_oci/securityattribute/_inputs.py +209 -0
- pulumi_oci/securityattribute/get_security_attribute.py +262 -0
- pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
- pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
- pulumi_oci/securityattribute/get_security_attributes.py +169 -0
- pulumi_oci/securityattribute/outputs.py +466 -0
- pulumi_oci/securityattribute/security_attribute.py +588 -0
- pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
- pulumi_oci/stackmonitoring/__init__.py +5 -0
- pulumi_oci/stackmonitoring/_inputs.py +330 -0
- pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
- pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
- pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
- pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
- pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
- pulumi_oci/stackmonitoring/outputs.py +603 -0
- pulumi_oci/zpr/__init__.py +14 -0
- pulumi_oci/zpr/_inputs.py +79 -0
- pulumi_oci/zpr/configuration.py +516 -0
- pulumi_oci/zpr/get_configuration.py +230 -0
- pulumi_oci/zpr/get_zpr_policies.py +191 -0
- pulumi_oci/zpr/get_zpr_policy.py +264 -0
- pulumi_oci/zpr/outputs.py +203 -0
- pulumi_oci/zpr/zpr_policy.py +614 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/top_level.txt +0 -0
@@ -1066,6 +1066,10 @@ if not MYPY:
|
|
1066
1066
|
|
1067
1067
|
Example: `1200`
|
1068
1068
|
"""
|
1069
|
+
backend_tcp_proxy_protocol_options: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1070
|
+
"""
|
1071
|
+
(Updatable) An array that represents the PPV2 Options that can be enabled on TCP Listeners. Example: ["PP2_TYPE_AUTHORITY"]
|
1072
|
+
"""
|
1069
1073
|
backend_tcp_proxy_protocol_version: NotRequired[pulumi.Input[int]]
|
1070
1074
|
"""
|
1071
1075
|
(Updatable) The backend TCP Proxy Protocol version. Example: `1`
|
@@ -1077,6 +1081,7 @@ elif False:
|
|
1077
1081
|
class ListenerConnectionConfigurationArgs:
|
1078
1082
|
def __init__(__self__, *,
|
1079
1083
|
idle_timeout_in_seconds: pulumi.Input[str],
|
1084
|
+
backend_tcp_proxy_protocol_options: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1080
1085
|
backend_tcp_proxy_protocol_version: Optional[pulumi.Input[int]] = None):
|
1081
1086
|
"""
|
1082
1087
|
:param pulumi.Input[str] idle_timeout_in_seconds: (Updatable) The maximum idle time, in seconds, allowed between two successive receive or two successive send operations between the client and backend servers. A send operation does not reset the timer for receive operations. A receive operation does not reset the timer for send operations.
|
@@ -1084,9 +1089,12 @@ class ListenerConnectionConfigurationArgs:
|
|
1084
1089
|
For more information, see [Connection Configuration](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/connectionreuse.htm#ConnectionConfiguration).
|
1085
1090
|
|
1086
1091
|
Example: `1200`
|
1092
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] backend_tcp_proxy_protocol_options: (Updatable) An array that represents the PPV2 Options that can be enabled on TCP Listeners. Example: ["PP2_TYPE_AUTHORITY"]
|
1087
1093
|
:param pulumi.Input[int] backend_tcp_proxy_protocol_version: (Updatable) The backend TCP Proxy Protocol version. Example: `1`
|
1088
1094
|
"""
|
1089
1095
|
pulumi.set(__self__, "idle_timeout_in_seconds", idle_timeout_in_seconds)
|
1096
|
+
if backend_tcp_proxy_protocol_options is not None:
|
1097
|
+
pulumi.set(__self__, "backend_tcp_proxy_protocol_options", backend_tcp_proxy_protocol_options)
|
1090
1098
|
if backend_tcp_proxy_protocol_version is not None:
|
1091
1099
|
pulumi.set(__self__, "backend_tcp_proxy_protocol_version", backend_tcp_proxy_protocol_version)
|
1092
1100
|
|
@@ -1106,6 +1114,18 @@ class ListenerConnectionConfigurationArgs:
|
|
1106
1114
|
def idle_timeout_in_seconds(self, value: pulumi.Input[str]):
|
1107
1115
|
pulumi.set(self, "idle_timeout_in_seconds", value)
|
1108
1116
|
|
1117
|
+
@property
|
1118
|
+
@pulumi.getter(name="backendTcpProxyProtocolOptions")
|
1119
|
+
def backend_tcp_proxy_protocol_options(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
1120
|
+
"""
|
1121
|
+
(Updatable) An array that represents the PPV2 Options that can be enabled on TCP Listeners. Example: ["PP2_TYPE_AUTHORITY"]
|
1122
|
+
"""
|
1123
|
+
return pulumi.get(self, "backend_tcp_proxy_protocol_options")
|
1124
|
+
|
1125
|
+
@backend_tcp_proxy_protocol_options.setter
|
1126
|
+
def backend_tcp_proxy_protocol_options(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
1127
|
+
pulumi.set(self, "backend_tcp_proxy_protocol_options", value)
|
1128
|
+
|
1109
1129
|
@property
|
1110
1130
|
@pulumi.getter(name="backendTcpProxyProtocolVersion")
|
1111
1131
|
def backend_tcp_proxy_protocol_version(self) -> Optional[pulumi.Input[int]]:
|
@@ -454,6 +454,7 @@ class Listener(pulumi.CustomResource):
|
|
454
454
|
protocol=listener_protocol,
|
455
455
|
connection_configuration={
|
456
456
|
"idle_timeout_in_seconds": listener_connection_configuration_idle_timeout_in_seconds,
|
457
|
+
"backend_tcp_proxy_protocol_options": listener_connection_configuration_backend_tcp_proxy_protocol_options,
|
457
458
|
"backend_tcp_proxy_protocol_version": listener_connection_configuration_backend_tcp_proxy_protocol_version,
|
458
459
|
},
|
459
460
|
hostname_names=[test_hostname["name"]],
|
@@ -526,6 +527,7 @@ class Listener(pulumi.CustomResource):
|
|
526
527
|
protocol=listener_protocol,
|
527
528
|
connection_configuration={
|
528
529
|
"idle_timeout_in_seconds": listener_connection_configuration_idle_timeout_in_seconds,
|
530
|
+
"backend_tcp_proxy_protocol_options": listener_connection_configuration_backend_tcp_proxy_protocol_options,
|
529
531
|
"backend_tcp_proxy_protocol_version": listener_connection_configuration_backend_tcp_proxy_protocol_version,
|
530
532
|
},
|
531
533
|
hostname_names=[test_hostname["name"]],
|
@@ -715,7 +717,7 @@ class Listener(pulumi.CustomResource):
|
|
715
717
|
|
716
718
|
@property
|
717
719
|
@pulumi.getter(name="pathRouteSetName")
|
718
|
-
def path_route_set_name(self) -> pulumi.Output[str]:
|
720
|
+
def path_route_set_name(self) -> pulumi.Output[Optional[str]]:
|
719
721
|
"""
|
720
722
|
(Updatable) Deprecated. Please use `routingPolicies` instead.
|
721
723
|
|
@@ -743,7 +745,7 @@ class Listener(pulumi.CustomResource):
|
|
743
745
|
|
744
746
|
@property
|
745
747
|
@pulumi.getter(name="routingPolicyName")
|
746
|
-
def routing_policy_name(self) -> pulumi.Output[str]:
|
748
|
+
def routing_policy_name(self) -> pulumi.Output[Optional[str]]:
|
747
749
|
"""
|
748
750
|
(Updatable) The name of the routing policy applied to this listener's traffic. Example: `example_routing_policy`
|
749
751
|
"""
|
@@ -814,6 +814,8 @@ class ListenerConnectionConfiguration(dict):
|
|
814
814
|
suggest = None
|
815
815
|
if key == "idleTimeoutInSeconds":
|
816
816
|
suggest = "idle_timeout_in_seconds"
|
817
|
+
elif key == "backendTcpProxyProtocolOptions":
|
818
|
+
suggest = "backend_tcp_proxy_protocol_options"
|
817
819
|
elif key == "backendTcpProxyProtocolVersion":
|
818
820
|
suggest = "backend_tcp_proxy_protocol_version"
|
819
821
|
|
@@ -830,6 +832,7 @@ class ListenerConnectionConfiguration(dict):
|
|
830
832
|
|
831
833
|
def __init__(__self__, *,
|
832
834
|
idle_timeout_in_seconds: str,
|
835
|
+
backend_tcp_proxy_protocol_options: Optional[Sequence[str]] = None,
|
833
836
|
backend_tcp_proxy_protocol_version: Optional[int] = None):
|
834
837
|
"""
|
835
838
|
:param str idle_timeout_in_seconds: (Updatable) The maximum idle time, in seconds, allowed between two successive receive or two successive send operations between the client and backend servers. A send operation does not reset the timer for receive operations. A receive operation does not reset the timer for send operations.
|
@@ -837,9 +840,12 @@ class ListenerConnectionConfiguration(dict):
|
|
837
840
|
For more information, see [Connection Configuration](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/connectionreuse.htm#ConnectionConfiguration).
|
838
841
|
|
839
842
|
Example: `1200`
|
843
|
+
:param Sequence[str] backend_tcp_proxy_protocol_options: (Updatable) An array that represents the PPV2 Options that can be enabled on TCP Listeners. Example: ["PP2_TYPE_AUTHORITY"]
|
840
844
|
:param int backend_tcp_proxy_protocol_version: (Updatable) The backend TCP Proxy Protocol version. Example: `1`
|
841
845
|
"""
|
842
846
|
pulumi.set(__self__, "idle_timeout_in_seconds", idle_timeout_in_seconds)
|
847
|
+
if backend_tcp_proxy_protocol_options is not None:
|
848
|
+
pulumi.set(__self__, "backend_tcp_proxy_protocol_options", backend_tcp_proxy_protocol_options)
|
843
849
|
if backend_tcp_proxy_protocol_version is not None:
|
844
850
|
pulumi.set(__self__, "backend_tcp_proxy_protocol_version", backend_tcp_proxy_protocol_version)
|
845
851
|
|
@@ -855,6 +861,14 @@ class ListenerConnectionConfiguration(dict):
|
|
855
861
|
"""
|
856
862
|
return pulumi.get(self, "idle_timeout_in_seconds")
|
857
863
|
|
864
|
+
@property
|
865
|
+
@pulumi.getter(name="backendTcpProxyProtocolOptions")
|
866
|
+
def backend_tcp_proxy_protocol_options(self) -> Optional[Sequence[str]]:
|
867
|
+
"""
|
868
|
+
(Updatable) An array that represents the PPV2 Options that can be enabled on TCP Listeners. Example: ["PP2_TYPE_AUTHORITY"]
|
869
|
+
"""
|
870
|
+
return pulumi.get(self, "backend_tcp_proxy_protocol_options")
|
871
|
+
|
858
872
|
@property
|
859
873
|
@pulumi.getter(name="backendTcpProxyProtocolVersion")
|
860
874
|
def backend_tcp_proxy_protocol_version(self) -> Optional[int]:
|
@@ -4006,7 +4020,7 @@ class GetLoadBalancersLoadBalancerShapeDetailResult(dict):
|
|
4006
4020
|
minimum_bandwidth_in_mbps: int):
|
4007
4021
|
"""
|
4008
4022
|
:param int maximum_bandwidth_in_mbps: Bandwidth in Mbps that determines the maximum bandwidth (ingress plus egress) that the load balancer can achieve. This bandwidth cannot be always guaranteed. For a guaranteed bandwidth use the minimumBandwidthInMbps parameter.
|
4009
|
-
:param int minimum_bandwidth_in_mbps: Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between
|
4023
|
+
:param int minimum_bandwidth_in_mbps: Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between 0 and the maximumBandwidthInMbps in multiples of 10. The current allowed maximum value is defined in [Service Limits](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/servicelimits.htm). Example: `150`
|
4010
4024
|
"""
|
4011
4025
|
pulumi.set(__self__, "maximum_bandwidth_in_mbps", maximum_bandwidth_in_mbps)
|
4012
4026
|
pulumi.set(__self__, "minimum_bandwidth_in_mbps", minimum_bandwidth_in_mbps)
|
@@ -4023,7 +4037,7 @@ class GetLoadBalancersLoadBalancerShapeDetailResult(dict):
|
|
4023
4037
|
@pulumi.getter(name="minimumBandwidthInMbps")
|
4024
4038
|
def minimum_bandwidth_in_mbps(self) -> int:
|
4025
4039
|
"""
|
4026
|
-
Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between
|
4040
|
+
Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between 0 and the maximumBandwidthInMbps in multiples of 10. The current allowed maximum value is defined in [Service Limits](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/servicelimits.htm). Example: `150`
|
4027
4041
|
"""
|
4028
4042
|
return pulumi.get(self, "minimum_bandwidth_in_mbps")
|
4029
4043
|
|
pulumi_oci/monitoring/_inputs.py
CHANGED
@@ -21,6 +21,8 @@ __all__ = [
|
|
21
21
|
'AlarmSuppressionArgsDict',
|
22
22
|
'AlarmSuppressionAlarmSuppressionTargetArgs',
|
23
23
|
'AlarmSuppressionAlarmSuppressionTargetArgsDict',
|
24
|
+
'AlarmSuppressionSuppressionConditionArgs',
|
25
|
+
'AlarmSuppressionSuppressionConditionArgsDict',
|
24
26
|
'GetAlarmStatusesFilterArgs',
|
25
27
|
'GetAlarmStatusesFilterArgsDict',
|
26
28
|
'GetAlarmSuppressionsFilterArgs',
|
@@ -321,13 +323,21 @@ class AlarmSuppressionArgs:
|
|
321
323
|
|
322
324
|
if not MYPY:
|
323
325
|
class AlarmSuppressionAlarmSuppressionTargetArgsDict(TypedDict):
|
324
|
-
|
326
|
+
target_type: pulumi.Input[str]
|
327
|
+
"""
|
328
|
+
The type of the alarm suppression target.
|
329
|
+
"""
|
330
|
+
alarm_id: NotRequired[pulumi.Input[str]]
|
325
331
|
"""
|
326
332
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the alarm that is the target of the alarm suppression.
|
327
333
|
"""
|
328
|
-
|
334
|
+
compartment_id: NotRequired[pulumi.Input[str]]
|
329
335
|
"""
|
330
|
-
The
|
336
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment or tenancy that is the target of the alarm suppression. Example: `ocid1.compartment.oc1..exampleuniqueID`
|
337
|
+
"""
|
338
|
+
compartment_id_in_subtree: NotRequired[pulumi.Input[bool]]
|
339
|
+
"""
|
340
|
+
When true, the alarm suppression targets all alarms under all compartments and subcompartments of the tenancy specified. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). When false, the alarm suppression targets only the alarms under the specified compartment.
|
331
341
|
"""
|
332
342
|
elif False:
|
333
343
|
AlarmSuppressionAlarmSuppressionTargetArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -335,38 +345,149 @@ elif False:
|
|
335
345
|
@pulumi.input_type
|
336
346
|
class AlarmSuppressionAlarmSuppressionTargetArgs:
|
337
347
|
def __init__(__self__, *,
|
338
|
-
|
339
|
-
|
348
|
+
target_type: pulumi.Input[str],
|
349
|
+
alarm_id: Optional[pulumi.Input[str]] = None,
|
350
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
351
|
+
compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None):
|
340
352
|
"""
|
341
|
-
:param pulumi.Input[str] alarm_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the alarm that is the target of the alarm suppression.
|
342
353
|
:param pulumi.Input[str] target_type: The type of the alarm suppression target.
|
354
|
+
:param pulumi.Input[str] alarm_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the alarm that is the target of the alarm suppression.
|
355
|
+
:param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment or tenancy that is the target of the alarm suppression. Example: `ocid1.compartment.oc1..exampleuniqueID`
|
356
|
+
:param pulumi.Input[bool] compartment_id_in_subtree: When true, the alarm suppression targets all alarms under all compartments and subcompartments of the tenancy specified. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). When false, the alarm suppression targets only the alarms under the specified compartment.
|
343
357
|
"""
|
344
|
-
pulumi.set(__self__, "alarm_id", alarm_id)
|
345
358
|
pulumi.set(__self__, "target_type", target_type)
|
359
|
+
if alarm_id is not None:
|
360
|
+
pulumi.set(__self__, "alarm_id", alarm_id)
|
361
|
+
if compartment_id is not None:
|
362
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
363
|
+
if compartment_id_in_subtree is not None:
|
364
|
+
pulumi.set(__self__, "compartment_id_in_subtree", compartment_id_in_subtree)
|
365
|
+
|
366
|
+
@property
|
367
|
+
@pulumi.getter(name="targetType")
|
368
|
+
def target_type(self) -> pulumi.Input[str]:
|
369
|
+
"""
|
370
|
+
The type of the alarm suppression target.
|
371
|
+
"""
|
372
|
+
return pulumi.get(self, "target_type")
|
373
|
+
|
374
|
+
@target_type.setter
|
375
|
+
def target_type(self, value: pulumi.Input[str]):
|
376
|
+
pulumi.set(self, "target_type", value)
|
346
377
|
|
347
378
|
@property
|
348
379
|
@pulumi.getter(name="alarmId")
|
349
|
-
def alarm_id(self) -> pulumi.Input[str]:
|
380
|
+
def alarm_id(self) -> Optional[pulumi.Input[str]]:
|
350
381
|
"""
|
351
382
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the alarm that is the target of the alarm suppression.
|
352
383
|
"""
|
353
384
|
return pulumi.get(self, "alarm_id")
|
354
385
|
|
355
386
|
@alarm_id.setter
|
356
|
-
def alarm_id(self, value: pulumi.Input[str]):
|
387
|
+
def alarm_id(self, value: Optional[pulumi.Input[str]]):
|
357
388
|
pulumi.set(self, "alarm_id", value)
|
358
389
|
|
359
390
|
@property
|
360
|
-
@pulumi.getter(name="
|
361
|
-
def
|
391
|
+
@pulumi.getter(name="compartmentId")
|
392
|
+
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
362
393
|
"""
|
363
|
-
The
|
394
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment or tenancy that is the target of the alarm suppression. Example: `ocid1.compartment.oc1..exampleuniqueID`
|
364
395
|
"""
|
365
|
-
return pulumi.get(self, "
|
396
|
+
return pulumi.get(self, "compartment_id")
|
366
397
|
|
367
|
-
@
|
368
|
-
def
|
369
|
-
pulumi.set(self, "
|
398
|
+
@compartment_id.setter
|
399
|
+
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
400
|
+
pulumi.set(self, "compartment_id", value)
|
401
|
+
|
402
|
+
@property
|
403
|
+
@pulumi.getter(name="compartmentIdInSubtree")
|
404
|
+
def compartment_id_in_subtree(self) -> Optional[pulumi.Input[bool]]:
|
405
|
+
"""
|
406
|
+
When true, the alarm suppression targets all alarms under all compartments and subcompartments of the tenancy specified. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). When false, the alarm suppression targets only the alarms under the specified compartment.
|
407
|
+
"""
|
408
|
+
return pulumi.get(self, "compartment_id_in_subtree")
|
409
|
+
|
410
|
+
@compartment_id_in_subtree.setter
|
411
|
+
def compartment_id_in_subtree(self, value: Optional[pulumi.Input[bool]]):
|
412
|
+
pulumi.set(self, "compartment_id_in_subtree", value)
|
413
|
+
|
414
|
+
|
415
|
+
if not MYPY:
|
416
|
+
class AlarmSuppressionSuppressionConditionArgsDict(TypedDict):
|
417
|
+
condition_type: pulumi.Input[str]
|
418
|
+
"""
|
419
|
+
Type of suppression condition.
|
420
|
+
"""
|
421
|
+
suppression_duration: pulumi.Input[str]
|
422
|
+
"""
|
423
|
+
Duration of the recurring suppression. Specified as a string in ISO 8601 format. Minimum: `PT1M` (1 minute). Maximum: `PT24H` (24 hours).
|
424
|
+
"""
|
425
|
+
suppression_recurrence: pulumi.Input[str]
|
426
|
+
"""
|
427
|
+
Frequency and start time of the recurring suppression. The format follows [the iCalendar specification (RFC 5545, section 3.3.10)](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported rule parts:
|
428
|
+
* `FREQ`: Frequency of the recurring suppression: `WEEKLY` or `DAILY` only.
|
429
|
+
* `BYDAY`: Comma separated days. Use with weekly suppressions only. Supported values: `MO`, `TU`, `WE`, `TH`, `FR`, `SA` ,`SU`.
|
430
|
+
* `BYHOUR`, `BYMINUTE`, `BYSECOND`: Start time in UTC, after `timeSuppressFrom` value. Default is 00:00:00 UTC after `timeSuppressFrom`.
|
431
|
+
"""
|
432
|
+
elif False:
|
433
|
+
AlarmSuppressionSuppressionConditionArgsDict: TypeAlias = Mapping[str, Any]
|
434
|
+
|
435
|
+
@pulumi.input_type
|
436
|
+
class AlarmSuppressionSuppressionConditionArgs:
|
437
|
+
def __init__(__self__, *,
|
438
|
+
condition_type: pulumi.Input[str],
|
439
|
+
suppression_duration: pulumi.Input[str],
|
440
|
+
suppression_recurrence: pulumi.Input[str]):
|
441
|
+
"""
|
442
|
+
:param pulumi.Input[str] condition_type: Type of suppression condition.
|
443
|
+
:param pulumi.Input[str] suppression_duration: Duration of the recurring suppression. Specified as a string in ISO 8601 format. Minimum: `PT1M` (1 minute). Maximum: `PT24H` (24 hours).
|
444
|
+
:param pulumi.Input[str] suppression_recurrence: Frequency and start time of the recurring suppression. The format follows [the iCalendar specification (RFC 5545, section 3.3.10)](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported rule parts:
|
445
|
+
* `FREQ`: Frequency of the recurring suppression: `WEEKLY` or `DAILY` only.
|
446
|
+
* `BYDAY`: Comma separated days. Use with weekly suppressions only. Supported values: `MO`, `TU`, `WE`, `TH`, `FR`, `SA` ,`SU`.
|
447
|
+
* `BYHOUR`, `BYMINUTE`, `BYSECOND`: Start time in UTC, after `timeSuppressFrom` value. Default is 00:00:00 UTC after `timeSuppressFrom`.
|
448
|
+
"""
|
449
|
+
pulumi.set(__self__, "condition_type", condition_type)
|
450
|
+
pulumi.set(__self__, "suppression_duration", suppression_duration)
|
451
|
+
pulumi.set(__self__, "suppression_recurrence", suppression_recurrence)
|
452
|
+
|
453
|
+
@property
|
454
|
+
@pulumi.getter(name="conditionType")
|
455
|
+
def condition_type(self) -> pulumi.Input[str]:
|
456
|
+
"""
|
457
|
+
Type of suppression condition.
|
458
|
+
"""
|
459
|
+
return pulumi.get(self, "condition_type")
|
460
|
+
|
461
|
+
@condition_type.setter
|
462
|
+
def condition_type(self, value: pulumi.Input[str]):
|
463
|
+
pulumi.set(self, "condition_type", value)
|
464
|
+
|
465
|
+
@property
|
466
|
+
@pulumi.getter(name="suppressionDuration")
|
467
|
+
def suppression_duration(self) -> pulumi.Input[str]:
|
468
|
+
"""
|
469
|
+
Duration of the recurring suppression. Specified as a string in ISO 8601 format. Minimum: `PT1M` (1 minute). Maximum: `PT24H` (24 hours).
|
470
|
+
"""
|
471
|
+
return pulumi.get(self, "suppression_duration")
|
472
|
+
|
473
|
+
@suppression_duration.setter
|
474
|
+
def suppression_duration(self, value: pulumi.Input[str]):
|
475
|
+
pulumi.set(self, "suppression_duration", value)
|
476
|
+
|
477
|
+
@property
|
478
|
+
@pulumi.getter(name="suppressionRecurrence")
|
479
|
+
def suppression_recurrence(self) -> pulumi.Input[str]:
|
480
|
+
"""
|
481
|
+
Frequency and start time of the recurring suppression. The format follows [the iCalendar specification (RFC 5545, section 3.3.10)](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported rule parts:
|
482
|
+
* `FREQ`: Frequency of the recurring suppression: `WEEKLY` or `DAILY` only.
|
483
|
+
* `BYDAY`: Comma separated days. Use with weekly suppressions only. Supported values: `MO`, `TU`, `WE`, `TH`, `FR`, `SA` ,`SU`.
|
484
|
+
* `BYHOUR`, `BYMINUTE`, `BYSECOND`: Start time in UTC, after `timeSuppressFrom` value. Default is 00:00:00 UTC after `timeSuppressFrom`.
|
485
|
+
"""
|
486
|
+
return pulumi.get(self, "suppression_recurrence")
|
487
|
+
|
488
|
+
@suppression_recurrence.setter
|
489
|
+
def suppression_recurrence(self, value: pulumi.Input[str]):
|
490
|
+
pulumi.set(self, "suppression_recurrence", value)
|
370
491
|
|
371
492
|
|
372
493
|
if not MYPY:
|