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
@@ -27,6 +27,12 @@ __all__ = [
27
27
  'DiscoveryJobDiscoveryDetailsPropertiesArgsDict',
28
28
  'DiscoveryJobDiscoveryDetailsTagsArgs',
29
29
  'DiscoveryJobDiscoveryDetailsTagsArgsDict',
30
+ 'MaintenanceWindowResourceArgs',
31
+ 'MaintenanceWindowResourceArgsDict',
32
+ 'MaintenanceWindowResourcesDetailArgs',
33
+ 'MaintenanceWindowResourcesDetailArgsDict',
34
+ 'MaintenanceWindowScheduleArgs',
35
+ 'MaintenanceWindowScheduleArgsDict',
30
36
  'MetricExtensionEnabledOnResourceArgs',
31
37
  'MetricExtensionEnabledOnResourceArgsDict',
32
38
  'MetricExtensionMetricListArgs',
@@ -103,6 +109,8 @@ __all__ = [
103
109
  'GetDiscoveryJobLogsFilterArgsDict',
104
110
  'GetDiscoveryJobsFilterArgs',
105
111
  'GetDiscoveryJobsFilterArgsDict',
112
+ 'GetMaintenanceWindowsFilterArgs',
113
+ 'GetMaintenanceWindowsFilterArgsDict',
106
114
  'GetMetricExtensionsFilterArgs',
107
115
  'GetMetricExtensionsFilterArgsDict',
108
116
  'GetMonitoredResourceTasksFilterArgs',
@@ -461,6 +469,272 @@ class DiscoveryJobDiscoveryDetailsTagsArgs:
461
469
  pulumi.set(self, "properties_map", value)
462
470
 
463
471
 
472
+ if not MYPY:
473
+ class MaintenanceWindowResourceArgsDict(TypedDict):
474
+ resource_id: pulumi.Input[str]
475
+ """
476
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of monitored resource part of the Maintenance window.
477
+ """
478
+ are_members_included: NotRequired[pulumi.Input[bool]]
479
+ """
480
+ (Updatable) Flag to indicate if the members of the resource has to be include in the Maintenance Window.
481
+ """
482
+ elif False:
483
+ MaintenanceWindowResourceArgsDict: TypeAlias = Mapping[str, Any]
484
+
485
+ @pulumi.input_type
486
+ class MaintenanceWindowResourceArgs:
487
+ def __init__(__self__, *,
488
+ resource_id: pulumi.Input[str],
489
+ are_members_included: Optional[pulumi.Input[bool]] = None):
490
+ """
491
+ :param pulumi.Input[str] resource_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of monitored resource part of the Maintenance window.
492
+ :param pulumi.Input[bool] are_members_included: (Updatable) Flag to indicate if the members of the resource has to be include in the Maintenance Window.
493
+ """
494
+ pulumi.set(__self__, "resource_id", resource_id)
495
+ if are_members_included is not None:
496
+ pulumi.set(__self__, "are_members_included", are_members_included)
497
+
498
+ @property
499
+ @pulumi.getter(name="resourceId")
500
+ def resource_id(self) -> pulumi.Input[str]:
501
+ """
502
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of monitored resource part of the Maintenance window.
503
+ """
504
+ return pulumi.get(self, "resource_id")
505
+
506
+ @resource_id.setter
507
+ def resource_id(self, value: pulumi.Input[str]):
508
+ pulumi.set(self, "resource_id", value)
509
+
510
+ @property
511
+ @pulumi.getter(name="areMembersIncluded")
512
+ def are_members_included(self) -> Optional[pulumi.Input[bool]]:
513
+ """
514
+ (Updatable) Flag to indicate if the members of the resource has to be include in the Maintenance Window.
515
+ """
516
+ return pulumi.get(self, "are_members_included")
517
+
518
+ @are_members_included.setter
519
+ def are_members_included(self, value: Optional[pulumi.Input[bool]]):
520
+ pulumi.set(self, "are_members_included", value)
521
+
522
+
523
+ if not MYPY:
524
+ class MaintenanceWindowResourcesDetailArgsDict(TypedDict):
525
+ name: NotRequired[pulumi.Input[str]]
526
+ """
527
+ Maintenance Window name.
528
+ """
529
+ number_of_members: NotRequired[pulumi.Input[int]]
530
+ """
531
+ Number of members of the resource
532
+ """
533
+ resource_id: NotRequired[pulumi.Input[str]]
534
+ """
535
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of monitored resource part of the Maintenance window.
536
+ """
537
+ type: NotRequired[pulumi.Input[str]]
538
+ """
539
+ Type of the monitored resource
540
+ """
541
+ elif False:
542
+ MaintenanceWindowResourcesDetailArgsDict: TypeAlias = Mapping[str, Any]
543
+
544
+ @pulumi.input_type
545
+ class MaintenanceWindowResourcesDetailArgs:
546
+ def __init__(__self__, *,
547
+ name: Optional[pulumi.Input[str]] = None,
548
+ number_of_members: Optional[pulumi.Input[int]] = None,
549
+ resource_id: Optional[pulumi.Input[str]] = None,
550
+ type: Optional[pulumi.Input[str]] = None):
551
+ """
552
+ :param pulumi.Input[str] name: Maintenance Window name.
553
+ :param pulumi.Input[int] number_of_members: Number of members of the resource
554
+ :param pulumi.Input[str] resource_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of monitored resource part of the Maintenance window.
555
+ :param pulumi.Input[str] type: Type of the monitored resource
556
+ """
557
+ if name is not None:
558
+ pulumi.set(__self__, "name", name)
559
+ if number_of_members is not None:
560
+ pulumi.set(__self__, "number_of_members", number_of_members)
561
+ if resource_id is not None:
562
+ pulumi.set(__self__, "resource_id", resource_id)
563
+ if type is not None:
564
+ pulumi.set(__self__, "type", type)
565
+
566
+ @property
567
+ @pulumi.getter
568
+ def name(self) -> Optional[pulumi.Input[str]]:
569
+ """
570
+ Maintenance Window name.
571
+ """
572
+ return pulumi.get(self, "name")
573
+
574
+ @name.setter
575
+ def name(self, value: Optional[pulumi.Input[str]]):
576
+ pulumi.set(self, "name", value)
577
+
578
+ @property
579
+ @pulumi.getter(name="numberOfMembers")
580
+ def number_of_members(self) -> Optional[pulumi.Input[int]]:
581
+ """
582
+ Number of members of the resource
583
+ """
584
+ return pulumi.get(self, "number_of_members")
585
+
586
+ @number_of_members.setter
587
+ def number_of_members(self, value: Optional[pulumi.Input[int]]):
588
+ pulumi.set(self, "number_of_members", value)
589
+
590
+ @property
591
+ @pulumi.getter(name="resourceId")
592
+ def resource_id(self) -> Optional[pulumi.Input[str]]:
593
+ """
594
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of monitored resource part of the Maintenance window.
595
+ """
596
+ return pulumi.get(self, "resource_id")
597
+
598
+ @resource_id.setter
599
+ def resource_id(self, value: Optional[pulumi.Input[str]]):
600
+ pulumi.set(self, "resource_id", value)
601
+
602
+ @property
603
+ @pulumi.getter
604
+ def type(self) -> Optional[pulumi.Input[str]]:
605
+ """
606
+ Type of the monitored resource
607
+ """
608
+ return pulumi.get(self, "type")
609
+
610
+ @type.setter
611
+ def type(self, value: Optional[pulumi.Input[str]]):
612
+ pulumi.set(self, "type", value)
613
+
614
+
615
+ if not MYPY:
616
+ class MaintenanceWindowScheduleArgsDict(TypedDict):
617
+ schedule_type: pulumi.Input[str]
618
+ """
619
+ (Updatable) Property to identify the type of the Maintenance Window.
620
+ """
621
+ maintenance_window_duration: NotRequired[pulumi.Input[str]]
622
+ """
623
+ (Updatable) Duration time of each recurrence of each Maintenance Window. It must be specified as a string in ISO 8601 extended format.
624
+ """
625
+ maintenance_window_recurrences: NotRequired[pulumi.Input[str]]
626
+ """
627
+ (Updatable) A RFC5545 formatted recurrence string which represents the Maintenance Window Recurrence. Please refer this for details:https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10 FREQ: Frequency of the Maintenance Window. The supported values are: DAILY and WEEKLY. BYDAY: Comma separated days for Weekly Maintenance Window. BYHOUR: Specifies the start hour of each recurrence after `timeMaintenanceWindowStart` value. BYMINUTE: Specifies the start minute of each reccurrence after `timeMaintenanceWindowStart` value. The default value is 00 BYSECOND: Specifies the start second of each reccurrence after `timeMaintenanceWindowStart` value. The default value is 00 Other Rules are not supported.
628
+ """
629
+ time_maintenance_window_end: NotRequired[pulumi.Input[str]]
630
+ """
631
+ (Updatable) Start time of Maintenance window. A RFC3339 formatted datetime string
632
+ """
633
+ time_maintenance_window_start: NotRequired[pulumi.Input[str]]
634
+ """
635
+ (Updatable) Start time of Maintenance window. A RFC3339 formatted datetime string
636
+
637
+
638
+ ** IMPORTANT **
639
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
640
+ """
641
+ elif False:
642
+ MaintenanceWindowScheduleArgsDict: TypeAlias = Mapping[str, Any]
643
+
644
+ @pulumi.input_type
645
+ class MaintenanceWindowScheduleArgs:
646
+ def __init__(__self__, *,
647
+ schedule_type: pulumi.Input[str],
648
+ maintenance_window_duration: Optional[pulumi.Input[str]] = None,
649
+ maintenance_window_recurrences: Optional[pulumi.Input[str]] = None,
650
+ time_maintenance_window_end: Optional[pulumi.Input[str]] = None,
651
+ time_maintenance_window_start: Optional[pulumi.Input[str]] = None):
652
+ """
653
+ :param pulumi.Input[str] schedule_type: (Updatable) Property to identify the type of the Maintenance Window.
654
+ :param pulumi.Input[str] maintenance_window_duration: (Updatable) Duration time of each recurrence of each Maintenance Window. It must be specified as a string in ISO 8601 extended format.
655
+ :param pulumi.Input[str] maintenance_window_recurrences: (Updatable) A RFC5545 formatted recurrence string which represents the Maintenance Window Recurrence. Please refer this for details:https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10 FREQ: Frequency of the Maintenance Window. The supported values are: DAILY and WEEKLY. BYDAY: Comma separated days for Weekly Maintenance Window. BYHOUR: Specifies the start hour of each recurrence after `timeMaintenanceWindowStart` value. BYMINUTE: Specifies the start minute of each reccurrence after `timeMaintenanceWindowStart` value. The default value is 00 BYSECOND: Specifies the start second of each reccurrence after `timeMaintenanceWindowStart` value. The default value is 00 Other Rules are not supported.
656
+ :param pulumi.Input[str] time_maintenance_window_end: (Updatable) Start time of Maintenance window. A RFC3339 formatted datetime string
657
+ :param pulumi.Input[str] time_maintenance_window_start: (Updatable) Start time of Maintenance window. A RFC3339 formatted datetime string
658
+
659
+
660
+ ** IMPORTANT **
661
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
662
+ """
663
+ pulumi.set(__self__, "schedule_type", schedule_type)
664
+ if maintenance_window_duration is not None:
665
+ pulumi.set(__self__, "maintenance_window_duration", maintenance_window_duration)
666
+ if maintenance_window_recurrences is not None:
667
+ pulumi.set(__self__, "maintenance_window_recurrences", maintenance_window_recurrences)
668
+ if time_maintenance_window_end is not None:
669
+ pulumi.set(__self__, "time_maintenance_window_end", time_maintenance_window_end)
670
+ if time_maintenance_window_start is not None:
671
+ pulumi.set(__self__, "time_maintenance_window_start", time_maintenance_window_start)
672
+
673
+ @property
674
+ @pulumi.getter(name="scheduleType")
675
+ def schedule_type(self) -> pulumi.Input[str]:
676
+ """
677
+ (Updatable) Property to identify the type of the Maintenance Window.
678
+ """
679
+ return pulumi.get(self, "schedule_type")
680
+
681
+ @schedule_type.setter
682
+ def schedule_type(self, value: pulumi.Input[str]):
683
+ pulumi.set(self, "schedule_type", value)
684
+
685
+ @property
686
+ @pulumi.getter(name="maintenanceWindowDuration")
687
+ def maintenance_window_duration(self) -> Optional[pulumi.Input[str]]:
688
+ """
689
+ (Updatable) Duration time of each recurrence of each Maintenance Window. It must be specified as a string in ISO 8601 extended format.
690
+ """
691
+ return pulumi.get(self, "maintenance_window_duration")
692
+
693
+ @maintenance_window_duration.setter
694
+ def maintenance_window_duration(self, value: Optional[pulumi.Input[str]]):
695
+ pulumi.set(self, "maintenance_window_duration", value)
696
+
697
+ @property
698
+ @pulumi.getter(name="maintenanceWindowRecurrences")
699
+ def maintenance_window_recurrences(self) -> Optional[pulumi.Input[str]]:
700
+ """
701
+ (Updatable) A RFC5545 formatted recurrence string which represents the Maintenance Window Recurrence. Please refer this for details:https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10 FREQ: Frequency of the Maintenance Window. The supported values are: DAILY and WEEKLY. BYDAY: Comma separated days for Weekly Maintenance Window. BYHOUR: Specifies the start hour of each recurrence after `timeMaintenanceWindowStart` value. BYMINUTE: Specifies the start minute of each reccurrence after `timeMaintenanceWindowStart` value. The default value is 00 BYSECOND: Specifies the start second of each reccurrence after `timeMaintenanceWindowStart` value. The default value is 00 Other Rules are not supported.
702
+ """
703
+ return pulumi.get(self, "maintenance_window_recurrences")
704
+
705
+ @maintenance_window_recurrences.setter
706
+ def maintenance_window_recurrences(self, value: Optional[pulumi.Input[str]]):
707
+ pulumi.set(self, "maintenance_window_recurrences", value)
708
+
709
+ @property
710
+ @pulumi.getter(name="timeMaintenanceWindowEnd")
711
+ def time_maintenance_window_end(self) -> Optional[pulumi.Input[str]]:
712
+ """
713
+ (Updatable) Start time of Maintenance window. A RFC3339 formatted datetime string
714
+ """
715
+ return pulumi.get(self, "time_maintenance_window_end")
716
+
717
+ @time_maintenance_window_end.setter
718
+ def time_maintenance_window_end(self, value: Optional[pulumi.Input[str]]):
719
+ pulumi.set(self, "time_maintenance_window_end", value)
720
+
721
+ @property
722
+ @pulumi.getter(name="timeMaintenanceWindowStart")
723
+ def time_maintenance_window_start(self) -> Optional[pulumi.Input[str]]:
724
+ """
725
+ (Updatable) Start time of Maintenance window. A RFC3339 formatted datetime string
726
+
727
+
728
+ ** IMPORTANT **
729
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
730
+ """
731
+ return pulumi.get(self, "time_maintenance_window_start")
732
+
733
+ @time_maintenance_window_start.setter
734
+ def time_maintenance_window_start(self, value: Optional[pulumi.Input[str]]):
735
+ pulumi.set(self, "time_maintenance_window_start", value)
736
+
737
+
464
738
  if not MYPY:
465
739
  class MetricExtensionEnabledOnResourceArgsDict(TypedDict):
466
740
  resource_id: NotRequired[pulumi.Input[str]]
@@ -4394,6 +4668,62 @@ class GetDiscoveryJobsFilterArgs:
4394
4668
  pulumi.set(self, "regex", value)
4395
4669
 
4396
4670
 
4671
+ if not MYPY:
4672
+ class GetMaintenanceWindowsFilterArgsDict(TypedDict):
4673
+ name: str
4674
+ """
4675
+ A filter to return maintenance windows that match exact resource name.
4676
+ """
4677
+ values: Sequence[str]
4678
+ regex: NotRequired[bool]
4679
+ elif False:
4680
+ GetMaintenanceWindowsFilterArgsDict: TypeAlias = Mapping[str, Any]
4681
+
4682
+ @pulumi.input_type
4683
+ class GetMaintenanceWindowsFilterArgs:
4684
+ def __init__(__self__, *,
4685
+ name: str,
4686
+ values: Sequence[str],
4687
+ regex: Optional[bool] = None):
4688
+ """
4689
+ :param str name: A filter to return maintenance windows that match exact resource name.
4690
+ """
4691
+ pulumi.set(__self__, "name", name)
4692
+ pulumi.set(__self__, "values", values)
4693
+ if regex is not None:
4694
+ pulumi.set(__self__, "regex", regex)
4695
+
4696
+ @property
4697
+ @pulumi.getter
4698
+ def name(self) -> str:
4699
+ """
4700
+ A filter to return maintenance windows that match exact resource name.
4701
+ """
4702
+ return pulumi.get(self, "name")
4703
+
4704
+ @name.setter
4705
+ def name(self, value: str):
4706
+ pulumi.set(self, "name", value)
4707
+
4708
+ @property
4709
+ @pulumi.getter
4710
+ def values(self) -> Sequence[str]:
4711
+ return pulumi.get(self, "values")
4712
+
4713
+ @values.setter
4714
+ def values(self, value: Sequence[str]):
4715
+ pulumi.set(self, "values", value)
4716
+
4717
+ @property
4718
+ @pulumi.getter
4719
+ def regex(self) -> Optional[bool]:
4720
+ return pulumi.get(self, "regex")
4721
+
4722
+ @regex.setter
4723
+ def regex(self, value: Optional[bool]):
4724
+ pulumi.set(self, "regex", value)
4725
+
4726
+
4397
4727
  if not MYPY:
4398
4728
  class GetMetricExtensionsFilterArgsDict(TypedDict):
4399
4729
  name: str
@@ -0,0 +1,254 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'GetMaintenanceWindowResult',
20
+ 'AwaitableGetMaintenanceWindowResult',
21
+ 'get_maintenance_window',
22
+ 'get_maintenance_window_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetMaintenanceWindowResult:
27
+ """
28
+ A collection of values returned by getMaintenanceWindow.
29
+ """
30
+ def __init__(__self__, compartment_id=None, description=None, id=None, lifecycle_details=None, maintenance_window_id=None, name=None, resources=None, resources_details=None, schedules=None, state=None, time_created=None, time_updated=None):
31
+ if compartment_id and not isinstance(compartment_id, str):
32
+ raise TypeError("Expected argument 'compartment_id' to be a str")
33
+ pulumi.set(__self__, "compartment_id", compartment_id)
34
+ if description and not isinstance(description, str):
35
+ raise TypeError("Expected argument 'description' to be a str")
36
+ pulumi.set(__self__, "description", description)
37
+ if id and not isinstance(id, str):
38
+ raise TypeError("Expected argument 'id' to be a str")
39
+ pulumi.set(__self__, "id", id)
40
+ if lifecycle_details and not isinstance(lifecycle_details, str):
41
+ raise TypeError("Expected argument 'lifecycle_details' to be a str")
42
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
43
+ if maintenance_window_id and not isinstance(maintenance_window_id, str):
44
+ raise TypeError("Expected argument 'maintenance_window_id' to be a str")
45
+ pulumi.set(__self__, "maintenance_window_id", maintenance_window_id)
46
+ if name and not isinstance(name, str):
47
+ raise TypeError("Expected argument 'name' to be a str")
48
+ pulumi.set(__self__, "name", name)
49
+ if resources and not isinstance(resources, list):
50
+ raise TypeError("Expected argument 'resources' to be a list")
51
+ pulumi.set(__self__, "resources", resources)
52
+ if resources_details and not isinstance(resources_details, list):
53
+ raise TypeError("Expected argument 'resources_details' to be a list")
54
+ pulumi.set(__self__, "resources_details", resources_details)
55
+ if schedules and not isinstance(schedules, list):
56
+ raise TypeError("Expected argument 'schedules' to be a list")
57
+ pulumi.set(__self__, "schedules", schedules)
58
+ if state and not isinstance(state, str):
59
+ raise TypeError("Expected argument 'state' to be a str")
60
+ pulumi.set(__self__, "state", state)
61
+ if time_created and not isinstance(time_created, str):
62
+ raise TypeError("Expected argument 'time_created' to be a str")
63
+ pulumi.set(__self__, "time_created", time_created)
64
+ if time_updated and not isinstance(time_updated, str):
65
+ raise TypeError("Expected argument 'time_updated' to be a str")
66
+ pulumi.set(__self__, "time_updated", time_updated)
67
+
68
+ @property
69
+ @pulumi.getter(name="compartmentId")
70
+ def compartment_id(self) -> str:
71
+ """
72
+ Compartment Identifier [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
73
+ """
74
+ return pulumi.get(self, "compartment_id")
75
+
76
+ @property
77
+ @pulumi.getter
78
+ def description(self) -> str:
79
+ """
80
+ Maintenance Window description.
81
+ """
82
+ return pulumi.get(self, "description")
83
+
84
+ @property
85
+ @pulumi.getter
86
+ def id(self) -> str:
87
+ """
88
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of maintenance window.
89
+ """
90
+ return pulumi.get(self, "id")
91
+
92
+ @property
93
+ @pulumi.getter(name="lifecycleDetails")
94
+ def lifecycle_details(self) -> str:
95
+ """
96
+ Lifecycle Details of the Maintenance Window.
97
+ """
98
+ return pulumi.get(self, "lifecycle_details")
99
+
100
+ @property
101
+ @pulumi.getter(name="maintenanceWindowId")
102
+ def maintenance_window_id(self) -> str:
103
+ return pulumi.get(self, "maintenance_window_id")
104
+
105
+ @property
106
+ @pulumi.getter
107
+ def name(self) -> str:
108
+ """
109
+ Name of the monitored resource
110
+ """
111
+ return pulumi.get(self, "name")
112
+
113
+ @property
114
+ @pulumi.getter
115
+ def resources(self) -> Sequence['outputs.GetMaintenanceWindowResourceResult']:
116
+ """
117
+ List of resource Ids which are part of the Maintenance Window
118
+ """
119
+ return pulumi.get(self, "resources")
120
+
121
+ @property
122
+ @pulumi.getter(name="resourcesDetails")
123
+ def resources_details(self) -> Sequence['outputs.GetMaintenanceWindowResourcesDetailResult']:
124
+ """
125
+ List of resource details that are part of the Maintenance Window.
126
+ """
127
+ return pulumi.get(self, "resources_details")
128
+
129
+ @property
130
+ @pulumi.getter
131
+ def schedules(self) -> Sequence['outputs.GetMaintenanceWindowScheduleResult']:
132
+ """
133
+ Schedule information of the Maintenance Window
134
+ """
135
+ return pulumi.get(self, "schedules")
136
+
137
+ @property
138
+ @pulumi.getter
139
+ def state(self) -> str:
140
+ """
141
+ Lifecycle state of the monitored resource.
142
+ """
143
+ return pulumi.get(self, "state")
144
+
145
+ @property
146
+ @pulumi.getter(name="timeCreated")
147
+ def time_created(self) -> str:
148
+ """
149
+ The time the the maintenance window was created. An RFC3339 formatted datetime string
150
+ """
151
+ return pulumi.get(self, "time_created")
152
+
153
+ @property
154
+ @pulumi.getter(name="timeUpdated")
155
+ def time_updated(self) -> str:
156
+ """
157
+ The time the the mainteance window was updated. An RFC3339 formatted datetime string
158
+ """
159
+ return pulumi.get(self, "time_updated")
160
+
161
+
162
+ class AwaitableGetMaintenanceWindowResult(GetMaintenanceWindowResult):
163
+ # pylint: disable=using-constant-test
164
+ def __await__(self):
165
+ if False:
166
+ yield self
167
+ return GetMaintenanceWindowResult(
168
+ compartment_id=self.compartment_id,
169
+ description=self.description,
170
+ id=self.id,
171
+ lifecycle_details=self.lifecycle_details,
172
+ maintenance_window_id=self.maintenance_window_id,
173
+ name=self.name,
174
+ resources=self.resources,
175
+ resources_details=self.resources_details,
176
+ schedules=self.schedules,
177
+ state=self.state,
178
+ time_created=self.time_created,
179
+ time_updated=self.time_updated)
180
+
181
+
182
+ def get_maintenance_window(maintenance_window_id: Optional[str] = None,
183
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMaintenanceWindowResult:
184
+ """
185
+ This data source provides details about a specific Maintenance Window resource in Oracle Cloud Infrastructure Stack Monitoring service.
186
+
187
+ Get maintenance window for the given identifier [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
188
+
189
+ ## Example Usage
190
+
191
+ ```python
192
+ import pulumi
193
+ import pulumi_oci as oci
194
+
195
+ test_maintenance_window = oci.StackMonitoring.get_maintenance_window(maintenance_window_id=test_maintenance_window_oci_stack_monitoring_maintenance_window["id"])
196
+ ```
197
+
198
+
199
+ :param str maintenance_window_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of maintenance window.
200
+ """
201
+ __args__ = dict()
202
+ __args__['maintenanceWindowId'] = maintenance_window_id
203
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
204
+ __ret__ = pulumi.runtime.invoke('oci:StackMonitoring/getMaintenanceWindow:getMaintenanceWindow', __args__, opts=opts, typ=GetMaintenanceWindowResult).value
205
+
206
+ return AwaitableGetMaintenanceWindowResult(
207
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
208
+ description=pulumi.get(__ret__, 'description'),
209
+ id=pulumi.get(__ret__, 'id'),
210
+ lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
211
+ maintenance_window_id=pulumi.get(__ret__, 'maintenance_window_id'),
212
+ name=pulumi.get(__ret__, 'name'),
213
+ resources=pulumi.get(__ret__, 'resources'),
214
+ resources_details=pulumi.get(__ret__, 'resources_details'),
215
+ schedules=pulumi.get(__ret__, 'schedules'),
216
+ state=pulumi.get(__ret__, 'state'),
217
+ time_created=pulumi.get(__ret__, 'time_created'),
218
+ time_updated=pulumi.get(__ret__, 'time_updated'))
219
+ def get_maintenance_window_output(maintenance_window_id: Optional[pulumi.Input[str]] = None,
220
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetMaintenanceWindowResult]:
221
+ """
222
+ This data source provides details about a specific Maintenance Window resource in Oracle Cloud Infrastructure Stack Monitoring service.
223
+
224
+ Get maintenance window for the given identifier [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
225
+
226
+ ## Example Usage
227
+
228
+ ```python
229
+ import pulumi
230
+ import pulumi_oci as oci
231
+
232
+ test_maintenance_window = oci.StackMonitoring.get_maintenance_window(maintenance_window_id=test_maintenance_window_oci_stack_monitoring_maintenance_window["id"])
233
+ ```
234
+
235
+
236
+ :param str maintenance_window_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of maintenance window.
237
+ """
238
+ __args__ = dict()
239
+ __args__['maintenanceWindowId'] = maintenance_window_id
240
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
241
+ __ret__ = pulumi.runtime.invoke_output('oci:StackMonitoring/getMaintenanceWindow:getMaintenanceWindow', __args__, opts=opts, typ=GetMaintenanceWindowResult)
242
+ return __ret__.apply(lambda __response__: GetMaintenanceWindowResult(
243
+ compartment_id=pulumi.get(__response__, 'compartment_id'),
244
+ description=pulumi.get(__response__, 'description'),
245
+ id=pulumi.get(__response__, 'id'),
246
+ lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
247
+ maintenance_window_id=pulumi.get(__response__, 'maintenance_window_id'),
248
+ name=pulumi.get(__response__, 'name'),
249
+ resources=pulumi.get(__response__, 'resources'),
250
+ resources_details=pulumi.get(__response__, 'resources_details'),
251
+ schedules=pulumi.get(__response__, 'schedules'),
252
+ state=pulumi.get(__response__, 'state'),
253
+ time_created=pulumi.get(__response__, 'time_created'),
254
+ time_updated=pulumi.get(__response__, 'time_updated')))