pulumi-oci 2.23.0a1738304451__py3-none-any.whl → 2.24.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 (163) hide show
  1. pulumi_oci/__init__.py +96 -0
  2. pulumi_oci/apmsynthetics/config.py +2 -2
  3. pulumi_oci/apmsynthetics/dedicated_vantage_point.py +2 -2
  4. pulumi_oci/apmsynthetics/get_dedicated_vantage_point.py +2 -2
  5. pulumi_oci/apmsynthetics/get_dedicated_vantage_points.py +2 -2
  6. pulumi_oci/apmsynthetics/get_monitor.py +2 -2
  7. pulumi_oci/apmsynthetics/get_monitors.py +2 -2
  8. pulumi_oci/apmsynthetics/get_on_premise_vantage_point.py +2 -2
  9. pulumi_oci/apmsynthetics/get_on_premise_vantage_point_worker.py +2 -2
  10. pulumi_oci/apmsynthetics/get_on_premise_vantage_point_workers.py +2 -2
  11. pulumi_oci/apmsynthetics/get_on_premise_vantage_points.py +2 -2
  12. pulumi_oci/apmsynthetics/get_result.py +2 -2
  13. pulumi_oci/apmsynthetics/get_script.py +2 -2
  14. pulumi_oci/apmsynthetics/get_scripts.py +2 -2
  15. pulumi_oci/apmsynthetics/get_vantage_point.py +2 -2
  16. pulumi_oci/apmsynthetics/get_vantage_points.py +2 -2
  17. pulumi_oci/apmsynthetics/on_premise_vantage_point.py +2 -2
  18. pulumi_oci/apmsynthetics/on_premise_vantage_point_worker.py +2 -2
  19. pulumi_oci/apmsynthetics/script.py +2 -2
  20. pulumi_oci/database/__init__.py +20 -0
  21. pulumi_oci/database/_inputs.py +2242 -1118
  22. pulumi_oci/database/backup.py +30 -0
  23. pulumi_oci/database/cloud_exadata_infrastructure.py +28 -0
  24. pulumi_oci/database/exadata_infrastructure.py +28 -0
  25. pulumi_oci/database/execution_action.py +812 -0
  26. pulumi_oci/database/execution_window.py +856 -0
  27. pulumi_oci/database/get_cloud_exadata_infrastructure.py +15 -1
  28. pulumi_oci/database/get_database_maintenance_run_history.py +29 -1
  29. pulumi_oci/database/get_exadata_infrastructure.py +15 -1
  30. pulumi_oci/database/get_execution_action.py +352 -0
  31. pulumi_oci/database/get_execution_actions.py +213 -0
  32. pulumi_oci/database/get_execution_window.py +379 -0
  33. pulumi_oci/database/get_execution_windows.py +213 -0
  34. pulumi_oci/database/get_maintenance_run.py +32 -4
  35. pulumi_oci/database/get_scheduled_action.py +324 -0
  36. pulumi_oci/database/get_scheduled_action_params.py +144 -0
  37. pulumi_oci/database/get_scheduled_actions.py +240 -0
  38. pulumi_oci/database/get_scheduling_plan.py +323 -0
  39. pulumi_oci/database/get_scheduling_plans.py +243 -0
  40. pulumi_oci/database/get_scheduling_policies.py +191 -0
  41. pulumi_oci/database/get_scheduling_policy.py +268 -0
  42. pulumi_oci/database/get_scheduling_policy_recommended_scheduled_actions.py +182 -0
  43. pulumi_oci/database/get_scheduling_policy_scheduling_window.py +276 -0
  44. pulumi_oci/database/get_scheduling_policy_scheduling_windows.py +213 -0
  45. pulumi_oci/database/maintenance_run.py +58 -2
  46. pulumi_oci/database/outputs.py +11946 -7866
  47. pulumi_oci/database/scheduled_action.py +775 -0
  48. pulumi_oci/database/scheduling_plan.py +744 -0
  49. pulumi_oci/database/scheduling_policy.py +616 -0
  50. pulumi_oci/database/scheduling_policy_scheduling_window.py +584 -0
  51. pulumi_oci/databasemanagement/__init__.py +7 -0
  52. pulumi_oci/databasemanagement/_inputs.py +282 -0
  53. pulumi_oci/databasemanagement/external_my_sql_database.py +297 -0
  54. pulumi_oci/databasemanagement/external_my_sql_database_connector.py +890 -0
  55. pulumi_oci/databasemanagement/external_my_sql_database_external_mysql_databases_management.py +302 -0
  56. pulumi_oci/databasemanagement/get_external_my_sql_database.py +152 -0
  57. pulumi_oci/databasemanagement/get_external_my_sql_database_connector.py +413 -0
  58. pulumi_oci/databasemanagement/get_external_my_sql_database_connectors.py +169 -0
  59. pulumi_oci/databasemanagement/get_external_my_sql_databases.py +166 -0
  60. pulumi_oci/databasemanagement/get_managed_my_sql_database.py +60 -4
  61. pulumi_oci/databasemanagement/get_managed_my_sql_databases.py +22 -3
  62. pulumi_oci/databasemanagement/outputs.py +767 -1
  63. pulumi_oci/datasafe/__init__.py +8 -0
  64. pulumi_oci/datasafe/_inputs.py +466 -12
  65. pulumi_oci/datasafe/alert.py +7 -7
  66. pulumi_oci/datasafe/alert_policy.py +7 -7
  67. pulumi_oci/datasafe/audit_archive_retrieval.py +7 -7
  68. pulumi_oci/datasafe/audit_policy.py +7 -7
  69. pulumi_oci/datasafe/audit_policy_management.py +21 -21
  70. pulumi_oci/datasafe/audit_profile.py +18 -18
  71. pulumi_oci/datasafe/audit_profile_management.py +21 -21
  72. pulumi_oci/datasafe/audit_trail.py +14 -14
  73. pulumi_oci/datasafe/audit_trail_management.py +14 -14
  74. pulumi_oci/datasafe/data_safe_configuration.py +4 -4
  75. pulumi_oci/datasafe/data_safe_private_endpoint.py +7 -7
  76. pulumi_oci/datasafe/database_security_config.py +7 -7
  77. pulumi_oci/datasafe/database_security_config_management.py +7 -7
  78. pulumi_oci/datasafe/discovery_mod.py +7 -7
  79. pulumi_oci/datasafe/get_alert.py +1 -1
  80. pulumi_oci/datasafe/get_alert_policy.py +1 -1
  81. pulumi_oci/datasafe/get_audit_archive_retrieval.py +1 -1
  82. pulumi_oci/datasafe/get_audit_events.py +2 -2
  83. pulumi_oci/datasafe/get_audit_policy.py +1 -1
  84. pulumi_oci/datasafe/get_audit_profile.py +2 -2
  85. pulumi_oci/datasafe/get_audit_trail.py +1 -1
  86. pulumi_oci/datasafe/get_data_safe_configuration.py +1 -1
  87. pulumi_oci/datasafe/get_data_safe_private_endpoint.py +1 -1
  88. pulumi_oci/datasafe/get_database_security_config.py +1 -1
  89. pulumi_oci/datasafe/get_discovery_job.py +1 -1
  90. pulumi_oci/datasafe/get_library_masking_format.py +1 -1
  91. pulumi_oci/datasafe/get_masking_policy.py +1 -1
  92. pulumi_oci/datasafe/get_masking_policy_health_report.py +33 -5
  93. pulumi_oci/datasafe/get_masking_policy_referential_relations.py +232 -0
  94. pulumi_oci/datasafe/get_onprem_connector.py +1 -1
  95. pulumi_oci/datasafe/get_report.py +1 -1
  96. pulumi_oci/datasafe/get_report_definition.py +1 -1
  97. pulumi_oci/datasafe/get_sdm_masking_policy_difference.py +1 -1
  98. pulumi_oci/datasafe/get_security_assessment.py +1 -1
  99. pulumi_oci/datasafe/get_security_policy.py +1 -1
  100. pulumi_oci/datasafe/get_security_policy_deployment.py +1 -1
  101. pulumi_oci/datasafe/get_sensitive_data_model.py +1 -1
  102. pulumi_oci/datasafe/get_sensitive_data_model_referential_relation.py +186 -0
  103. pulumi_oci/datasafe/get_sensitive_data_model_referential_relations.py +254 -0
  104. pulumi_oci/datasafe/get_sensitive_type.py +1 -1
  105. pulumi_oci/datasafe/get_sensitive_types_export.py +267 -0
  106. pulumi_oci/datasafe/get_sensitive_types_exports.py +296 -0
  107. pulumi_oci/datasafe/get_sql_collection.py +1 -1
  108. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +1 -1
  109. pulumi_oci/datasafe/get_sql_firewall_policy.py +1 -1
  110. pulumi_oci/datasafe/get_target_alert_policy_association.py +1 -1
  111. pulumi_oci/datasafe/get_target_database.py +1 -1
  112. pulumi_oci/datasafe/get_user_assessment.py +1 -1
  113. pulumi_oci/datasafe/get_user_assessment_password_expiry_date_analytics.py +240 -0
  114. pulumi_oci/datasafe/get_user_assessment_user_analytics.py +41 -3
  115. pulumi_oci/datasafe/get_user_assessment_users.py +39 -1
  116. pulumi_oci/datasafe/library_masing_format.py +7 -7
  117. pulumi_oci/datasafe/masking_policy.py +7 -7
  118. pulumi_oci/datasafe/on_prem_connector.py +7 -7
  119. pulumi_oci/datasafe/outputs.py +1266 -151
  120. pulumi_oci/datasafe/report.py +7 -7
  121. pulumi_oci/datasafe/report_definition.py +7 -7
  122. pulumi_oci/datasafe/sdm_masking_policy_difference.py +7 -7
  123. pulumi_oci/datasafe/security_assessment.py +36 -37
  124. pulumi_oci/datasafe/security_policy.py +7 -7
  125. pulumi_oci/datasafe/security_policy_deployment.py +7 -7
  126. pulumi_oci/datasafe/security_policy_deployment_management.py +7 -7
  127. pulumi_oci/datasafe/security_policy_management.py +7 -7
  128. pulumi_oci/datasafe/sensitive_data_model.py +7 -7
  129. pulumi_oci/datasafe/sensitive_data_model_referential_relation.py +504 -0
  130. pulumi_oci/datasafe/sensitive_type.py +7 -7
  131. pulumi_oci/datasafe/sensitive_types_export.py +637 -0
  132. pulumi_oci/datasafe/sql_collection.py +7 -7
  133. pulumi_oci/datasafe/sql_firewall_policy.py +7 -7
  134. pulumi_oci/datasafe/sql_firewall_policy_management.py +56 -56
  135. pulumi_oci/datasafe/target_alert_policy_association.py +7 -7
  136. pulumi_oci/datasafe/target_database.py +7 -7
  137. pulumi_oci/datasafe/user_assessment.py +7 -7
  138. pulumi_oci/datascience/__init__.py +4 -0
  139. pulumi_oci/datascience/_inputs.py +1811 -0
  140. pulumi_oci/datascience/get_containers.py +270 -0
  141. pulumi_oci/datascience/get_schedule.py +366 -0
  142. pulumi_oci/datascience/get_schedules.py +221 -0
  143. pulumi_oci/datascience/outputs.py +8697 -4890
  144. pulumi_oci/datascience/schedule.py +1045 -0
  145. pulumi_oci/disasterrecovery/_inputs.py +720 -0
  146. pulumi_oci/disasterrecovery/dr_protection_group.py +0 -188
  147. pulumi_oci/disasterrecovery/get_dr_protection_group.py +1 -1
  148. pulumi_oci/disasterrecovery/outputs.py +1328 -48
  149. pulumi_oci/mysql/_inputs.py +229 -9
  150. pulumi_oci/mysql/get_mysql_db_system.py +47 -1
  151. pulumi_oci/mysql/mysql_db_system.py +185 -0
  152. pulumi_oci/mysql/outputs.py +477 -26
  153. pulumi_oci/opsi/_inputs.py +20 -0
  154. pulumi_oci/opsi/database_insight.py +47 -0
  155. pulumi_oci/opsi/get_database_insight.py +15 -1
  156. pulumi_oci/opsi/get_news_report.py +29 -1
  157. pulumi_oci/opsi/news_report.py +117 -17
  158. pulumi_oci/opsi/outputs.py +70 -1
  159. pulumi_oci/pulumi-plugin.json +1 -1
  160. {pulumi_oci-2.23.0a1738304451.dist-info → pulumi_oci-2.24.0.dist-info}/METADATA +1 -1
  161. {pulumi_oci-2.23.0a1738304451.dist-info → pulumi_oci-2.24.0.dist-info}/RECORD +163 -124
  162. {pulumi_oci-2.23.0a1738304451.dist-info → pulumi_oci-2.24.0.dist-info}/WHEEL +0 -0
  163. {pulumi_oci-2.23.0a1738304451.dist-info → pulumi_oci-2.24.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,584 @@
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
+ from ._inputs import *
18
+
19
+ __all__ = ['SchedulingPolicySchedulingWindowArgs', 'SchedulingPolicySchedulingWindow']
20
+
21
+ @pulumi.input_type
22
+ class SchedulingPolicySchedulingWindowArgs:
23
+ def __init__(__self__, *,
24
+ scheduling_policy_id: pulumi.Input[str],
25
+ window_preference: pulumi.Input['SchedulingPolicySchedulingWindowWindowPreferenceArgs'],
26
+ compartment_id: Optional[pulumi.Input[str]] = None,
27
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
28
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
29
+ """
30
+ The set of arguments for constructing a SchedulingPolicySchedulingWindow resource.
31
+ :param pulumi.Input[str] scheduling_policy_id: The Scheduling Policy [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
32
+ :param pulumi.Input['SchedulingPolicySchedulingWindowWindowPreferenceArgs'] window_preference: (Updatable) The Single Scheduling Window details.
33
+ :param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
34
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
35
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
36
+ """
37
+ pulumi.set(__self__, "scheduling_policy_id", scheduling_policy_id)
38
+ pulumi.set(__self__, "window_preference", window_preference)
39
+ if compartment_id is not None:
40
+ pulumi.set(__self__, "compartment_id", compartment_id)
41
+ if defined_tags is not None:
42
+ pulumi.set(__self__, "defined_tags", defined_tags)
43
+ if freeform_tags is not None:
44
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
45
+
46
+ @property
47
+ @pulumi.getter(name="schedulingPolicyId")
48
+ def scheduling_policy_id(self) -> pulumi.Input[str]:
49
+ """
50
+ The Scheduling Policy [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
51
+ """
52
+ return pulumi.get(self, "scheduling_policy_id")
53
+
54
+ @scheduling_policy_id.setter
55
+ def scheduling_policy_id(self, value: pulumi.Input[str]):
56
+ pulumi.set(self, "scheduling_policy_id", value)
57
+
58
+ @property
59
+ @pulumi.getter(name="windowPreference")
60
+ def window_preference(self) -> pulumi.Input['SchedulingPolicySchedulingWindowWindowPreferenceArgs']:
61
+ """
62
+ (Updatable) The Single Scheduling Window details.
63
+ """
64
+ return pulumi.get(self, "window_preference")
65
+
66
+ @window_preference.setter
67
+ def window_preference(self, value: pulumi.Input['SchedulingPolicySchedulingWindowWindowPreferenceArgs']):
68
+ pulumi.set(self, "window_preference", value)
69
+
70
+ @property
71
+ @pulumi.getter(name="compartmentId")
72
+ def compartment_id(self) -> Optional[pulumi.Input[str]]:
73
+ """
74
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
75
+ """
76
+ return pulumi.get(self, "compartment_id")
77
+
78
+ @compartment_id.setter
79
+ def compartment_id(self, value: Optional[pulumi.Input[str]]):
80
+ pulumi.set(self, "compartment_id", value)
81
+
82
+ @property
83
+ @pulumi.getter(name="definedTags")
84
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
85
+ """
86
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
87
+ """
88
+ return pulumi.get(self, "defined_tags")
89
+
90
+ @defined_tags.setter
91
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
92
+ pulumi.set(self, "defined_tags", value)
93
+
94
+ @property
95
+ @pulumi.getter(name="freeformTags")
96
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
97
+ """
98
+ (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
99
+ """
100
+ return pulumi.get(self, "freeform_tags")
101
+
102
+ @freeform_tags.setter
103
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
104
+ pulumi.set(self, "freeform_tags", value)
105
+
106
+
107
+ @pulumi.input_type
108
+ class _SchedulingPolicySchedulingWindowState:
109
+ def __init__(__self__, *,
110
+ compartment_id: Optional[pulumi.Input[str]] = None,
111
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
112
+ display_name: Optional[pulumi.Input[str]] = None,
113
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
114
+ lifecycle_details: Optional[pulumi.Input[str]] = None,
115
+ scheduling_policy_id: Optional[pulumi.Input[str]] = None,
116
+ state: Optional[pulumi.Input[str]] = None,
117
+ time_created: Optional[pulumi.Input[str]] = None,
118
+ time_next_scheduling_window_starts: Optional[pulumi.Input[str]] = None,
119
+ time_updated: Optional[pulumi.Input[str]] = None,
120
+ window_preference: Optional[pulumi.Input['SchedulingPolicySchedulingWindowWindowPreferenceArgs']] = None):
121
+ """
122
+ Input properties used for looking up and filtering SchedulingPolicySchedulingWindow resources.
123
+ :param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
124
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
125
+ :param pulumi.Input[str] display_name: The user-friendly name for the Scheduling Window. The name does not need to be unique.
126
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
127
+ :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
128
+ :param pulumi.Input[str] scheduling_policy_id: The Scheduling Policy [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
129
+ :param pulumi.Input[str] state: The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
130
+ :param pulumi.Input[str] time_created: The date and time the Scheduling Window was created.
131
+ :param pulumi.Input[str] time_next_scheduling_window_starts: The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
132
+ :param pulumi.Input[str] time_updated: The last date and time that the Scheduling Window was updated.
133
+ :param pulumi.Input['SchedulingPolicySchedulingWindowWindowPreferenceArgs'] window_preference: (Updatable) The Single Scheduling Window details.
134
+ """
135
+ if compartment_id is not None:
136
+ pulumi.set(__self__, "compartment_id", compartment_id)
137
+ if defined_tags is not None:
138
+ pulumi.set(__self__, "defined_tags", defined_tags)
139
+ if display_name is not None:
140
+ pulumi.set(__self__, "display_name", display_name)
141
+ if freeform_tags is not None:
142
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
143
+ if lifecycle_details is not None:
144
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
145
+ if scheduling_policy_id is not None:
146
+ pulumi.set(__self__, "scheduling_policy_id", scheduling_policy_id)
147
+ if state is not None:
148
+ pulumi.set(__self__, "state", state)
149
+ if time_created is not None:
150
+ pulumi.set(__self__, "time_created", time_created)
151
+ if time_next_scheduling_window_starts is not None:
152
+ pulumi.set(__self__, "time_next_scheduling_window_starts", time_next_scheduling_window_starts)
153
+ if time_updated is not None:
154
+ pulumi.set(__self__, "time_updated", time_updated)
155
+ if window_preference is not None:
156
+ pulumi.set(__self__, "window_preference", window_preference)
157
+
158
+ @property
159
+ @pulumi.getter(name="compartmentId")
160
+ def compartment_id(self) -> Optional[pulumi.Input[str]]:
161
+ """
162
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
163
+ """
164
+ return pulumi.get(self, "compartment_id")
165
+
166
+ @compartment_id.setter
167
+ def compartment_id(self, value: Optional[pulumi.Input[str]]):
168
+ pulumi.set(self, "compartment_id", value)
169
+
170
+ @property
171
+ @pulumi.getter(name="definedTags")
172
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
173
+ """
174
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
175
+ """
176
+ return pulumi.get(self, "defined_tags")
177
+
178
+ @defined_tags.setter
179
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
180
+ pulumi.set(self, "defined_tags", value)
181
+
182
+ @property
183
+ @pulumi.getter(name="displayName")
184
+ def display_name(self) -> Optional[pulumi.Input[str]]:
185
+ """
186
+ The user-friendly name for the Scheduling Window. The name does not need to be unique.
187
+ """
188
+ return pulumi.get(self, "display_name")
189
+
190
+ @display_name.setter
191
+ def display_name(self, value: Optional[pulumi.Input[str]]):
192
+ pulumi.set(self, "display_name", value)
193
+
194
+ @property
195
+ @pulumi.getter(name="freeformTags")
196
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
197
+ """
198
+ (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
199
+ """
200
+ return pulumi.get(self, "freeform_tags")
201
+
202
+ @freeform_tags.setter
203
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
204
+ pulumi.set(self, "freeform_tags", value)
205
+
206
+ @property
207
+ @pulumi.getter(name="lifecycleDetails")
208
+ def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
209
+ """
210
+ Additional information about the current lifecycle state.
211
+ """
212
+ return pulumi.get(self, "lifecycle_details")
213
+
214
+ @lifecycle_details.setter
215
+ def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
216
+ pulumi.set(self, "lifecycle_details", value)
217
+
218
+ @property
219
+ @pulumi.getter(name="schedulingPolicyId")
220
+ def scheduling_policy_id(self) -> Optional[pulumi.Input[str]]:
221
+ """
222
+ The Scheduling Policy [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
223
+ """
224
+ return pulumi.get(self, "scheduling_policy_id")
225
+
226
+ @scheduling_policy_id.setter
227
+ def scheduling_policy_id(self, value: Optional[pulumi.Input[str]]):
228
+ pulumi.set(self, "scheduling_policy_id", value)
229
+
230
+ @property
231
+ @pulumi.getter
232
+ def state(self) -> Optional[pulumi.Input[str]]:
233
+ """
234
+ The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
235
+ """
236
+ return pulumi.get(self, "state")
237
+
238
+ @state.setter
239
+ def state(self, value: Optional[pulumi.Input[str]]):
240
+ pulumi.set(self, "state", value)
241
+
242
+ @property
243
+ @pulumi.getter(name="timeCreated")
244
+ def time_created(self) -> Optional[pulumi.Input[str]]:
245
+ """
246
+ The date and time the Scheduling Window was created.
247
+ """
248
+ return pulumi.get(self, "time_created")
249
+
250
+ @time_created.setter
251
+ def time_created(self, value: Optional[pulumi.Input[str]]):
252
+ pulumi.set(self, "time_created", value)
253
+
254
+ @property
255
+ @pulumi.getter(name="timeNextSchedulingWindowStarts")
256
+ def time_next_scheduling_window_starts(self) -> Optional[pulumi.Input[str]]:
257
+ """
258
+ The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
259
+ """
260
+ return pulumi.get(self, "time_next_scheduling_window_starts")
261
+
262
+ @time_next_scheduling_window_starts.setter
263
+ def time_next_scheduling_window_starts(self, value: Optional[pulumi.Input[str]]):
264
+ pulumi.set(self, "time_next_scheduling_window_starts", value)
265
+
266
+ @property
267
+ @pulumi.getter(name="timeUpdated")
268
+ def time_updated(self) -> Optional[pulumi.Input[str]]:
269
+ """
270
+ The last date and time that the Scheduling Window was updated.
271
+ """
272
+ return pulumi.get(self, "time_updated")
273
+
274
+ @time_updated.setter
275
+ def time_updated(self, value: Optional[pulumi.Input[str]]):
276
+ pulumi.set(self, "time_updated", value)
277
+
278
+ @property
279
+ @pulumi.getter(name="windowPreference")
280
+ def window_preference(self) -> Optional[pulumi.Input['SchedulingPolicySchedulingWindowWindowPreferenceArgs']]:
281
+ """
282
+ (Updatable) The Single Scheduling Window details.
283
+ """
284
+ return pulumi.get(self, "window_preference")
285
+
286
+ @window_preference.setter
287
+ def window_preference(self, value: Optional[pulumi.Input['SchedulingPolicySchedulingWindowWindowPreferenceArgs']]):
288
+ pulumi.set(self, "window_preference", value)
289
+
290
+
291
+ class SchedulingPolicySchedulingWindow(pulumi.CustomResource):
292
+ @overload
293
+ def __init__(__self__,
294
+ resource_name: str,
295
+ opts: Optional[pulumi.ResourceOptions] = None,
296
+ compartment_id: Optional[pulumi.Input[str]] = None,
297
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
298
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
299
+ scheduling_policy_id: Optional[pulumi.Input[str]] = None,
300
+ window_preference: Optional[pulumi.Input[Union['SchedulingPolicySchedulingWindowWindowPreferenceArgs', 'SchedulingPolicySchedulingWindowWindowPreferenceArgsDict']]] = None,
301
+ __props__=None):
302
+ """
303
+ This resource provides the Scheduling Policy Scheduling Window resource in Oracle Cloud Infrastructure Database service.
304
+
305
+ Creates a Scheduling Window resource.
306
+
307
+ ## Example Usage
308
+
309
+ ```python
310
+ import pulumi
311
+ import pulumi_oci as oci
312
+
313
+ test_scheduling_policy_scheduling_window = oci.database.SchedulingPolicySchedulingWindow("test_scheduling_policy_scheduling_window",
314
+ scheduling_policy_id=test_scheduling_policy["id"],
315
+ window_preference={
316
+ "days_of_weeks": [{
317
+ "name": scheduling_policy_scheduling_window_window_preference_days_of_week_name,
318
+ }],
319
+ "duration": scheduling_policy_scheduling_window_window_preference_duration,
320
+ "is_enforced_duration": scheduling_policy_scheduling_window_window_preference_is_enforced_duration,
321
+ "start_time": scheduling_policy_scheduling_window_window_preference_start_time,
322
+ "weeks_of_months": scheduling_policy_scheduling_window_window_preference_weeks_of_month,
323
+ "months": [{
324
+ "name": scheduling_policy_scheduling_window_window_preference_months_name,
325
+ }],
326
+ },
327
+ compartment_id=compartment_id,
328
+ defined_tags=scheduling_policy_scheduling_window_defined_tags,
329
+ freeform_tags={
330
+ "Department": "Finance",
331
+ })
332
+ ```
333
+
334
+ ## Import
335
+
336
+ SchedulingPolicySchedulingWindows can be imported using the `id`, e.g.
337
+
338
+ ```sh
339
+ $ pulumi import oci:Database/schedulingPolicySchedulingWindow:SchedulingPolicySchedulingWindow test_scheduling_policy_scheduling_window "schedulingPolicies/{schedulingPolicyId}/schedulingWindows/{schedulingWindowId}"
340
+ ```
341
+
342
+ :param str resource_name: The name of the resource.
343
+ :param pulumi.ResourceOptions opts: Options for the resource.
344
+ :param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
345
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
346
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
347
+ :param pulumi.Input[str] scheduling_policy_id: The Scheduling Policy [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
348
+ :param pulumi.Input[Union['SchedulingPolicySchedulingWindowWindowPreferenceArgs', 'SchedulingPolicySchedulingWindowWindowPreferenceArgsDict']] window_preference: (Updatable) The Single Scheduling Window details.
349
+ """
350
+ ...
351
+ @overload
352
+ def __init__(__self__,
353
+ resource_name: str,
354
+ args: SchedulingPolicySchedulingWindowArgs,
355
+ opts: Optional[pulumi.ResourceOptions] = None):
356
+ """
357
+ This resource provides the Scheduling Policy Scheduling Window resource in Oracle Cloud Infrastructure Database service.
358
+
359
+ Creates a Scheduling Window resource.
360
+
361
+ ## Example Usage
362
+
363
+ ```python
364
+ import pulumi
365
+ import pulumi_oci as oci
366
+
367
+ test_scheduling_policy_scheduling_window = oci.database.SchedulingPolicySchedulingWindow("test_scheduling_policy_scheduling_window",
368
+ scheduling_policy_id=test_scheduling_policy["id"],
369
+ window_preference={
370
+ "days_of_weeks": [{
371
+ "name": scheduling_policy_scheduling_window_window_preference_days_of_week_name,
372
+ }],
373
+ "duration": scheduling_policy_scheduling_window_window_preference_duration,
374
+ "is_enforced_duration": scheduling_policy_scheduling_window_window_preference_is_enforced_duration,
375
+ "start_time": scheduling_policy_scheduling_window_window_preference_start_time,
376
+ "weeks_of_months": scheduling_policy_scheduling_window_window_preference_weeks_of_month,
377
+ "months": [{
378
+ "name": scheduling_policy_scheduling_window_window_preference_months_name,
379
+ }],
380
+ },
381
+ compartment_id=compartment_id,
382
+ defined_tags=scheduling_policy_scheduling_window_defined_tags,
383
+ freeform_tags={
384
+ "Department": "Finance",
385
+ })
386
+ ```
387
+
388
+ ## Import
389
+
390
+ SchedulingPolicySchedulingWindows can be imported using the `id`, e.g.
391
+
392
+ ```sh
393
+ $ pulumi import oci:Database/schedulingPolicySchedulingWindow:SchedulingPolicySchedulingWindow test_scheduling_policy_scheduling_window "schedulingPolicies/{schedulingPolicyId}/schedulingWindows/{schedulingWindowId}"
394
+ ```
395
+
396
+ :param str resource_name: The name of the resource.
397
+ :param SchedulingPolicySchedulingWindowArgs args: The arguments to use to populate this resource's properties.
398
+ :param pulumi.ResourceOptions opts: Options for the resource.
399
+ """
400
+ ...
401
+ def __init__(__self__, resource_name: str, *args, **kwargs):
402
+ resource_args, opts = _utilities.get_resource_args_opts(SchedulingPolicySchedulingWindowArgs, pulumi.ResourceOptions, *args, **kwargs)
403
+ if resource_args is not None:
404
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
405
+ else:
406
+ __self__._internal_init(resource_name, *args, **kwargs)
407
+
408
+ def _internal_init(__self__,
409
+ resource_name: str,
410
+ opts: Optional[pulumi.ResourceOptions] = None,
411
+ compartment_id: Optional[pulumi.Input[str]] = None,
412
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
413
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
414
+ scheduling_policy_id: Optional[pulumi.Input[str]] = None,
415
+ window_preference: Optional[pulumi.Input[Union['SchedulingPolicySchedulingWindowWindowPreferenceArgs', 'SchedulingPolicySchedulingWindowWindowPreferenceArgsDict']]] = None,
416
+ __props__=None):
417
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
418
+ if not isinstance(opts, pulumi.ResourceOptions):
419
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
420
+ if opts.id is None:
421
+ if __props__ is not None:
422
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
423
+ __props__ = SchedulingPolicySchedulingWindowArgs.__new__(SchedulingPolicySchedulingWindowArgs)
424
+
425
+ __props__.__dict__["compartment_id"] = compartment_id
426
+ __props__.__dict__["defined_tags"] = defined_tags
427
+ __props__.__dict__["freeform_tags"] = freeform_tags
428
+ if scheduling_policy_id is None and not opts.urn:
429
+ raise TypeError("Missing required property 'scheduling_policy_id'")
430
+ __props__.__dict__["scheduling_policy_id"] = scheduling_policy_id
431
+ if window_preference is None and not opts.urn:
432
+ raise TypeError("Missing required property 'window_preference'")
433
+ __props__.__dict__["window_preference"] = window_preference
434
+ __props__.__dict__["display_name"] = None
435
+ __props__.__dict__["lifecycle_details"] = None
436
+ __props__.__dict__["state"] = None
437
+ __props__.__dict__["time_created"] = None
438
+ __props__.__dict__["time_next_scheduling_window_starts"] = None
439
+ __props__.__dict__["time_updated"] = None
440
+ super(SchedulingPolicySchedulingWindow, __self__).__init__(
441
+ 'oci:Database/schedulingPolicySchedulingWindow:SchedulingPolicySchedulingWindow',
442
+ resource_name,
443
+ __props__,
444
+ opts)
445
+
446
+ @staticmethod
447
+ def get(resource_name: str,
448
+ id: pulumi.Input[str],
449
+ opts: Optional[pulumi.ResourceOptions] = None,
450
+ compartment_id: Optional[pulumi.Input[str]] = None,
451
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
452
+ display_name: Optional[pulumi.Input[str]] = None,
453
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
454
+ lifecycle_details: Optional[pulumi.Input[str]] = None,
455
+ scheduling_policy_id: Optional[pulumi.Input[str]] = None,
456
+ state: Optional[pulumi.Input[str]] = None,
457
+ time_created: Optional[pulumi.Input[str]] = None,
458
+ time_next_scheduling_window_starts: Optional[pulumi.Input[str]] = None,
459
+ time_updated: Optional[pulumi.Input[str]] = None,
460
+ window_preference: Optional[pulumi.Input[Union['SchedulingPolicySchedulingWindowWindowPreferenceArgs', 'SchedulingPolicySchedulingWindowWindowPreferenceArgsDict']]] = None) -> 'SchedulingPolicySchedulingWindow':
461
+ """
462
+ Get an existing SchedulingPolicySchedulingWindow resource's state with the given name, id, and optional extra
463
+ properties used to qualify the lookup.
464
+
465
+ :param str resource_name: The unique name of the resulting resource.
466
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
467
+ :param pulumi.ResourceOptions opts: Options for the resource.
468
+ :param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
469
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
470
+ :param pulumi.Input[str] display_name: The user-friendly name for the Scheduling Window. The name does not need to be unique.
471
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
472
+ :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
473
+ :param pulumi.Input[str] scheduling_policy_id: The Scheduling Policy [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
474
+ :param pulumi.Input[str] state: The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
475
+ :param pulumi.Input[str] time_created: The date and time the Scheduling Window was created.
476
+ :param pulumi.Input[str] time_next_scheduling_window_starts: The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
477
+ :param pulumi.Input[str] time_updated: The last date and time that the Scheduling Window was updated.
478
+ :param pulumi.Input[Union['SchedulingPolicySchedulingWindowWindowPreferenceArgs', 'SchedulingPolicySchedulingWindowWindowPreferenceArgsDict']] window_preference: (Updatable) The Single Scheduling Window details.
479
+ """
480
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
481
+
482
+ __props__ = _SchedulingPolicySchedulingWindowState.__new__(_SchedulingPolicySchedulingWindowState)
483
+
484
+ __props__.__dict__["compartment_id"] = compartment_id
485
+ __props__.__dict__["defined_tags"] = defined_tags
486
+ __props__.__dict__["display_name"] = display_name
487
+ __props__.__dict__["freeform_tags"] = freeform_tags
488
+ __props__.__dict__["lifecycle_details"] = lifecycle_details
489
+ __props__.__dict__["scheduling_policy_id"] = scheduling_policy_id
490
+ __props__.__dict__["state"] = state
491
+ __props__.__dict__["time_created"] = time_created
492
+ __props__.__dict__["time_next_scheduling_window_starts"] = time_next_scheduling_window_starts
493
+ __props__.__dict__["time_updated"] = time_updated
494
+ __props__.__dict__["window_preference"] = window_preference
495
+ return SchedulingPolicySchedulingWindow(resource_name, opts=opts, __props__=__props__)
496
+
497
+ @property
498
+ @pulumi.getter(name="compartmentId")
499
+ def compartment_id(self) -> pulumi.Output[str]:
500
+ """
501
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
502
+ """
503
+ return pulumi.get(self, "compartment_id")
504
+
505
+ @property
506
+ @pulumi.getter(name="definedTags")
507
+ def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
508
+ """
509
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
510
+ """
511
+ return pulumi.get(self, "defined_tags")
512
+
513
+ @property
514
+ @pulumi.getter(name="displayName")
515
+ def display_name(self) -> pulumi.Output[str]:
516
+ """
517
+ The user-friendly name for the Scheduling Window. The name does not need to be unique.
518
+ """
519
+ return pulumi.get(self, "display_name")
520
+
521
+ @property
522
+ @pulumi.getter(name="freeformTags")
523
+ def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
524
+ """
525
+ (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
526
+ """
527
+ return pulumi.get(self, "freeform_tags")
528
+
529
+ @property
530
+ @pulumi.getter(name="lifecycleDetails")
531
+ def lifecycle_details(self) -> pulumi.Output[str]:
532
+ """
533
+ Additional information about the current lifecycle state.
534
+ """
535
+ return pulumi.get(self, "lifecycle_details")
536
+
537
+ @property
538
+ @pulumi.getter(name="schedulingPolicyId")
539
+ def scheduling_policy_id(self) -> pulumi.Output[str]:
540
+ """
541
+ The Scheduling Policy [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
542
+ """
543
+ return pulumi.get(self, "scheduling_policy_id")
544
+
545
+ @property
546
+ @pulumi.getter
547
+ def state(self) -> pulumi.Output[str]:
548
+ """
549
+ The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
550
+ """
551
+ return pulumi.get(self, "state")
552
+
553
+ @property
554
+ @pulumi.getter(name="timeCreated")
555
+ def time_created(self) -> pulumi.Output[str]:
556
+ """
557
+ The date and time the Scheduling Window was created.
558
+ """
559
+ return pulumi.get(self, "time_created")
560
+
561
+ @property
562
+ @pulumi.getter(name="timeNextSchedulingWindowStarts")
563
+ def time_next_scheduling_window_starts(self) -> pulumi.Output[str]:
564
+ """
565
+ The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
566
+ """
567
+ return pulumi.get(self, "time_next_scheduling_window_starts")
568
+
569
+ @property
570
+ @pulumi.getter(name="timeUpdated")
571
+ def time_updated(self) -> pulumi.Output[str]:
572
+ """
573
+ The last date and time that the Scheduling Window was updated.
574
+ """
575
+ return pulumi.get(self, "time_updated")
576
+
577
+ @property
578
+ @pulumi.getter(name="windowPreference")
579
+ def window_preference(self) -> pulumi.Output['outputs.SchedulingPolicySchedulingWindowWindowPreference']:
580
+ """
581
+ (Updatable) The Single Scheduling Window details.
582
+ """
583
+ return pulumi.get(self, "window_preference")
584
+
@@ -25,6 +25,9 @@ from .external_exadata_storage_connector import *
25
25
  from .external_exadata_storage_grid import *
26
26
  from .external_exadata_storage_server import *
27
27
  from .external_listener import *
28
+ from .external_my_sql_database import *
29
+ from .external_my_sql_database_connector import *
30
+ from .external_my_sql_database_external_mysql_databases_management import *
28
31
  from .externalcontainerdatabase_external_container_dbm_features_management import *
29
32
  from .externalnoncontainerdatabase_external_non_container_dbm_features_management import *
30
33
  from .externalpluggabledatabase_external_pluggable_dbm_features_management import *
@@ -67,6 +70,10 @@ from .get_external_exadata_storage_servers import *
67
70
  from .get_external_listener import *
68
71
  from .get_external_listener_services import *
69
72
  from .get_external_listeners import *
73
+ from .get_external_my_sql_database import *
74
+ from .get_external_my_sql_database_connector import *
75
+ from .get_external_my_sql_database_connectors import *
76
+ from .get_external_my_sql_databases import *
70
77
  from .get_job_executions_status import *
71
78
  from .get_job_executions_statuses import *
72
79
  from .get_managed_database import *