pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.13.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (220) hide show
  1. pulumi_oci/__init__.py +169 -19
  2. pulumi_oci/analytics/analytics_instance.py +54 -5
  3. pulumi_oci/analytics/get_analytics_instance.py +18 -4
  4. pulumi_oci/analytics/outputs.py +12 -1
  5. pulumi_oci/containerengine/_inputs.py +341 -0
  6. pulumi_oci/containerengine/cluster.py +64 -0
  7. pulumi_oci/containerengine/get_cluster.py +12 -1
  8. pulumi_oci/containerengine/outputs.py +582 -0
  9. pulumi_oci/core/_inputs.py +947 -196
  10. pulumi_oci/core/boot_volume.py +90 -5
  11. pulumi_oci/core/cluster_network.py +7 -7
  12. pulumi_oci/core/get_block_volume_replica.py +15 -1
  13. pulumi_oci/core/get_boot_volume.py +15 -4
  14. pulumi_oci/core/get_boot_volume_replica.py +15 -1
  15. pulumi_oci/core/get_instance.py +29 -1
  16. pulumi_oci/core/get_vcn.py +15 -1
  17. pulumi_oci/core/get_vnic.py +15 -1
  18. pulumi_oci/core/get_volume.py +18 -4
  19. pulumi_oci/core/instance.py +87 -0
  20. pulumi_oci/core/instance_configuration.py +16 -0
  21. pulumi_oci/core/ipsec.py +183 -23
  22. pulumi_oci/core/network_security_group_security_rule.py +2 -2
  23. pulumi_oci/core/outputs.py +1282 -153
  24. pulumi_oci/core/service_gateway.py +13 -7
  25. pulumi_oci/core/vcn.py +65 -23
  26. pulumi_oci/core/virtual_network.py +35 -1
  27. pulumi_oci/core/vnic_attachment.py +2 -0
  28. pulumi_oci/core/volume.py +110 -12
  29. pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
  30. pulumi_oci/core/volume_group.py +56 -5
  31. pulumi_oci/database/_inputs.py +905 -27
  32. pulumi_oci/database/autonomous_database.py +48 -28
  33. pulumi_oci/database/autonomous_database_backup.py +12 -12
  34. pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
  35. pulumi_oci/database/autonomous_vm_cluster.py +2 -0
  36. pulumi_oci/database/backup.py +12 -12
  37. pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
  38. pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
  39. pulumi_oci/database/cloud_vm_cluster.py +71 -0
  40. pulumi_oci/database/database.py +15 -15
  41. pulumi_oci/database/database_upgrade.py +12 -12
  42. pulumi_oci/database/db_system.py +9 -9
  43. pulumi_oci/database/exadata_infrastructure.py +2 -0
  44. pulumi_oci/database/get_autonomous_container_database.py +1 -1
  45. pulumi_oci/database/get_autonomous_database.py +18 -4
  46. pulumi_oci/database/get_autonomous_database_backup.py +3 -3
  47. pulumi_oci/database/get_autonomous_databases.py +88 -5
  48. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  49. pulumi_oci/database/get_database.py +3 -3
  50. pulumi_oci/database/get_pluggable_database.py +12 -1
  51. pulumi_oci/database/get_vm_cluster.py +15 -1
  52. pulumi_oci/database/outputs.py +1431 -74
  53. pulumi_oci/database/pluggable_database.py +34 -0
  54. pulumi_oci/database/vm_cluster.py +71 -0
  55. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  56. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  57. pulumi_oci/datasafe/__init__.py +13 -0
  58. pulumi_oci/datasafe/_inputs.py +441 -0
  59. pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
  60. pulumi_oci/datasafe/get_reports.py +23 -1
  61. pulumi_oci/datasafe/get_sql_collection.py +392 -0
  62. pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
  63. pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
  64. pulumi_oci/datasafe/get_sql_collections.py +364 -0
  65. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
  66. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
  67. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
  68. pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
  69. pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
  70. pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
  71. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
  72. pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
  73. pulumi_oci/datasafe/outputs.py +1808 -2
  74. pulumi_oci/desktops/_inputs.py +395 -17
  75. pulumi_oci/desktops/desktop_pool.py +253 -21
  76. pulumi_oci/desktops/get_desktop_pool.py +62 -5
  77. pulumi_oci/desktops/outputs.py +807 -25
  78. pulumi_oci/dns/__init__.py +2 -0
  79. pulumi_oci/dns/_inputs.py +1157 -12
  80. pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
  81. pulumi_oci/dns/get_records.py +45 -13
  82. pulumi_oci/dns/get_resolver.py +8 -6
  83. pulumi_oci/dns/get_resolver_endpoint.py +8 -6
  84. pulumi_oci/dns/get_resolver_endpoints.py +2 -2
  85. pulumi_oci/dns/get_resolvers.py +12 -12
  86. pulumi_oci/dns/get_rrset.py +16 -16
  87. pulumi_oci/dns/get_rrsets.py +12 -10
  88. pulumi_oci/dns/get_view.py +8 -4
  89. pulumi_oci/dns/get_views.py +12 -12
  90. pulumi_oci/dns/get_zones.py +33 -13
  91. pulumi_oci/dns/outputs.py +1388 -79
  92. pulumi_oci/dns/record.py +12 -12
  93. pulumi_oci/dns/resolver.py +7 -7
  94. pulumi_oci/dns/resolver_endpoint.py +2 -2
  95. pulumi_oci/dns/rrset.py +50 -41
  96. pulumi_oci/dns/zone.py +176 -17
  97. pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
  98. pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
  99. pulumi_oci/fleetappsmanagement/__init__.py +43 -0
  100. pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
  101. pulumi_oci/fleetappsmanagement/fleet.py +955 -0
  102. pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
  103. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  104. pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
  105. pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
  106. pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
  107. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
  108. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
  109. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
  110. pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
  111. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
  112. pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
  113. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
  114. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
  115. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
  116. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  117. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
  118. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
  119. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
  120. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
  121. pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
  122. pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
  123. pulumi_oci/fleetappsmanagement/get_property.py +323 -0
  124. pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
  125. pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
  126. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
  127. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
  128. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
  129. pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
  130. pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
  131. pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
  132. pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
  133. pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
  134. pulumi_oci/fleetappsmanagement/property.py +697 -0
  135. pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
  136. pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
  137. pulumi_oci/functions/outputs.py +11 -0
  138. pulumi_oci/fusionapps/_inputs.py +21 -20
  139. pulumi_oci/fusionapps/fusion_environment.py +2 -2
  140. pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
  141. pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
  142. pulumi_oci/fusionapps/outputs.py +11 -10
  143. pulumi_oci/goldengate/__init__.py +1 -0
  144. pulumi_oci/goldengate/_inputs.py +165 -0
  145. pulumi_oci/goldengate/connection.py +49 -35
  146. pulumi_oci/goldengate/database_registration.py +7 -7
  147. pulumi_oci/goldengate/deployment.py +79 -4
  148. pulumi_oci/goldengate/get_deployment.py +30 -2
  149. pulumi_oci/goldengate/get_deployment_environments.py +144 -0
  150. pulumi_oci/goldengate/outputs.py +409 -2
  151. pulumi_oci/integration/__init__.py +1 -0
  152. pulumi_oci/integration/_inputs.py +289 -2
  153. pulumi_oci/integration/get_integration_instance.py +65 -1
  154. pulumi_oci/integration/integration_instance.py +172 -0
  155. pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
  156. pulumi_oci/integration/outputs.py +587 -19
  157. pulumi_oci/loadbalancer/_inputs.py +20 -0
  158. pulumi_oci/loadbalancer/listener.py +4 -2
  159. pulumi_oci/loadbalancer/outputs.py +16 -2
  160. pulumi_oci/monitoring/_inputs.py +137 -16
  161. pulumi_oci/monitoring/alarm_suppression.py +164 -35
  162. pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
  163. pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
  164. pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
  165. pulumi_oci/monitoring/outputs.py +291 -18
  166. pulumi_oci/mysql/mysql_db_system.py +7 -7
  167. pulumi_oci/objectstorage/__init__.py +3 -0
  168. pulumi_oci/objectstorage/_inputs.py +97 -0
  169. pulumi_oci/objectstorage/get_object_versions.py +6 -6
  170. pulumi_oci/objectstorage/get_objects.py +6 -6
  171. pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
  172. pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
  173. pulumi_oci/objectstorage/outputs.py +258 -0
  174. pulumi_oci/objectstorage/private_endpoint.py +630 -0
  175. pulumi_oci/objectstorage/storage_object.py +7 -7
  176. pulumi_oci/opsi/_inputs.py +268 -114
  177. pulumi_oci/opsi/database_insight.py +162 -21
  178. pulumi_oci/opsi/exadata_insight.py +44 -0
  179. pulumi_oci/opsi/get_database_insight.py +40 -1
  180. pulumi_oci/opsi/get_host_insights.py +2 -2
  181. pulumi_oci/opsi/host_insight.py +0 -48
  182. pulumi_oci/opsi/outputs.py +405 -109
  183. pulumi_oci/pulumi-plugin.json +1 -1
  184. pulumi_oci/securityattribute/__init__.py +15 -0
  185. pulumi_oci/securityattribute/_inputs.py +209 -0
  186. pulumi_oci/securityattribute/get_security_attribute.py +262 -0
  187. pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
  188. pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
  189. pulumi_oci/securityattribute/get_security_attributes.py +169 -0
  190. pulumi_oci/securityattribute/outputs.py +466 -0
  191. pulumi_oci/securityattribute/security_attribute.py +588 -0
  192. pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
  193. pulumi_oci/stackmonitoring/__init__.py +5 -0
  194. pulumi_oci/stackmonitoring/_inputs.py +330 -0
  195. pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
  196. pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
  197. pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
  198. pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
  199. pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
  200. pulumi_oci/stackmonitoring/outputs.py +603 -0
  201. pulumi_oci/{globallydistributeddatabase → zpr}/__init__.py +5 -6
  202. pulumi_oci/zpr/_inputs.py +79 -0
  203. pulumi_oci/zpr/configuration.py +516 -0
  204. pulumi_oci/zpr/get_configuration.py +230 -0
  205. pulumi_oci/zpr/get_zpr_policies.py +191 -0
  206. pulumi_oci/zpr/get_zpr_policy.py +264 -0
  207. pulumi_oci/zpr/outputs.py +203 -0
  208. pulumi_oci/zpr/zpr_policy.py +614 -0
  209. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/METADATA +1 -1
  210. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/RECORD +212 -142
  211. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/WHEEL +1 -1
  212. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
  213. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
  214. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
  215. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
  216. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
  217. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
  218. pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
  219. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
  220. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.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 10 and the maximumBandwidthInMbps. Example: `150`
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 10 and the maximumBandwidthInMbps. Example: `150`
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
 
@@ -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
- alarm_id: pulumi.Input[str]
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
- target_type: pulumi.Input[str]
334
+ compartment_id: NotRequired[pulumi.Input[str]]
329
335
  """
330
- The type of the alarm suppression target.
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
- alarm_id: pulumi.Input[str],
339
- target_type: pulumi.Input[str]):
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="targetType")
361
- def target_type(self) -> pulumi.Input[str]:
391
+ @pulumi.getter(name="compartmentId")
392
+ def compartment_id(self) -> Optional[pulumi.Input[str]]:
362
393
  """
363
- The type of the alarm suppression target.
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, "target_type")
396
+ return pulumi.get(self, "compartment_id")
366
397
 
367
- @target_type.setter
368
- def target_type(self, value: pulumi.Input[str]):
369
- pulumi.set(self, "target_type", value)
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: