pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.12.0a1728642710__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (170) hide show
  1. pulumi_oci/__init__.py +145 -0
  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/core/_inputs.py +648 -159
  6. pulumi_oci/core/cluster_network.py +7 -7
  7. pulumi_oci/core/get_instance.py +29 -1
  8. pulumi_oci/core/get_vcn.py +15 -1
  9. pulumi_oci/core/get_vnic.py +15 -1
  10. pulumi_oci/core/instance.py +87 -0
  11. pulumi_oci/core/instance_configuration.py +12 -0
  12. pulumi_oci/core/ipsec.py +183 -23
  13. pulumi_oci/core/network_security_group_security_rule.py +2 -2
  14. pulumi_oci/core/outputs.py +709 -107
  15. pulumi_oci/core/service_gateway.py +13 -7
  16. pulumi_oci/core/vcn.py +65 -23
  17. pulumi_oci/core/virtual_network.py +35 -1
  18. pulumi_oci/core/vnic_attachment.py +2 -0
  19. pulumi_oci/database/_inputs.py +905 -27
  20. pulumi_oci/database/autonomous_database.py +48 -28
  21. pulumi_oci/database/autonomous_database_backup.py +12 -12
  22. pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
  23. pulumi_oci/database/autonomous_vm_cluster.py +2 -0
  24. pulumi_oci/database/backup.py +12 -12
  25. pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
  26. pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
  27. pulumi_oci/database/cloud_vm_cluster.py +71 -0
  28. pulumi_oci/database/database.py +15 -15
  29. pulumi_oci/database/database_upgrade.py +12 -12
  30. pulumi_oci/database/db_system.py +9 -9
  31. pulumi_oci/database/exadata_infrastructure.py +2 -0
  32. pulumi_oci/database/get_autonomous_container_database.py +1 -1
  33. pulumi_oci/database/get_autonomous_database.py +18 -4
  34. pulumi_oci/database/get_autonomous_database_backup.py +3 -3
  35. pulumi_oci/database/get_autonomous_databases.py +88 -5
  36. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  37. pulumi_oci/database/get_database.py +3 -3
  38. pulumi_oci/database/get_pluggable_database.py +12 -1
  39. pulumi_oci/database/get_vm_cluster.py +15 -1
  40. pulumi_oci/database/outputs.py +1431 -74
  41. pulumi_oci/database/pluggable_database.py +34 -0
  42. pulumi_oci/database/vm_cluster.py +71 -0
  43. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  44. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  45. pulumi_oci/datasafe/__init__.py +12 -0
  46. pulumi_oci/datasafe/_inputs.py +441 -0
  47. pulumi_oci/datasafe/get_reports.py +23 -1
  48. pulumi_oci/datasafe/get_sql_collection.py +392 -0
  49. pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
  50. pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
  51. pulumi_oci/datasafe/get_sql_collections.py +364 -0
  52. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
  53. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
  54. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
  55. pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
  56. pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
  57. pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
  58. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
  59. pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
  60. pulumi_oci/datasafe/outputs.py +1808 -2
  61. pulumi_oci/desktops/_inputs.py +223 -7
  62. pulumi_oci/desktops/desktop_pool.py +186 -21
  63. pulumi_oci/desktops/get_desktop_pool.py +47 -5
  64. pulumi_oci/desktops/outputs.py +480 -19
  65. pulumi_oci/fleetappsmanagement/__init__.py +43 -0
  66. pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
  67. pulumi_oci/fleetappsmanagement/fleet.py +955 -0
  68. pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
  69. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  70. pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
  71. pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
  72. pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
  73. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
  74. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
  75. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
  76. pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
  77. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
  78. pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
  79. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
  80. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
  81. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
  82. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  83. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
  84. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
  85. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
  86. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
  87. pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
  88. pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
  89. pulumi_oci/fleetappsmanagement/get_property.py +323 -0
  90. pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
  91. pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
  92. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
  93. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
  94. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
  95. pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
  96. pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
  97. pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
  98. pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
  99. pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
  100. pulumi_oci/fleetappsmanagement/property.py +697 -0
  101. pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
  102. pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
  103. pulumi_oci/functions/outputs.py +11 -0
  104. pulumi_oci/fusionapps/_inputs.py +21 -20
  105. pulumi_oci/fusionapps/fusion_environment.py +2 -2
  106. pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
  107. pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
  108. pulumi_oci/fusionapps/outputs.py +11 -10
  109. pulumi_oci/integration/__init__.py +1 -0
  110. pulumi_oci/integration/_inputs.py +289 -2
  111. pulumi_oci/integration/get_integration_instance.py +65 -1
  112. pulumi_oci/integration/integration_instance.py +172 -0
  113. pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
  114. pulumi_oci/integration/outputs.py +587 -19
  115. pulumi_oci/loadbalancer/_inputs.py +20 -0
  116. pulumi_oci/loadbalancer/listener.py +4 -2
  117. pulumi_oci/loadbalancer/outputs.py +16 -2
  118. pulumi_oci/monitoring/_inputs.py +137 -16
  119. pulumi_oci/monitoring/alarm_suppression.py +164 -35
  120. pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
  121. pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
  122. pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
  123. pulumi_oci/monitoring/outputs.py +291 -18
  124. pulumi_oci/mysql/mysql_db_system.py +7 -7
  125. pulumi_oci/objectstorage/__init__.py +3 -0
  126. pulumi_oci/objectstorage/_inputs.py +97 -0
  127. pulumi_oci/objectstorage/get_object_versions.py +6 -6
  128. pulumi_oci/objectstorage/get_objects.py +6 -6
  129. pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
  130. pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
  131. pulumi_oci/objectstorage/outputs.py +258 -0
  132. pulumi_oci/objectstorage/private_endpoint.py +630 -0
  133. pulumi_oci/objectstorage/storage_object.py +7 -7
  134. pulumi_oci/opsi/_inputs.py +268 -114
  135. pulumi_oci/opsi/database_insight.py +162 -21
  136. pulumi_oci/opsi/exadata_insight.py +44 -0
  137. pulumi_oci/opsi/get_database_insight.py +40 -1
  138. pulumi_oci/opsi/get_host_insights.py +2 -2
  139. pulumi_oci/opsi/host_insight.py +0 -48
  140. pulumi_oci/opsi/outputs.py +405 -109
  141. pulumi_oci/pulumi-plugin.json +1 -1
  142. pulumi_oci/securityattribute/__init__.py +15 -0
  143. pulumi_oci/securityattribute/_inputs.py +209 -0
  144. pulumi_oci/securityattribute/get_security_attribute.py +262 -0
  145. pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
  146. pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
  147. pulumi_oci/securityattribute/get_security_attributes.py +169 -0
  148. pulumi_oci/securityattribute/outputs.py +466 -0
  149. pulumi_oci/securityattribute/security_attribute.py +588 -0
  150. pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
  151. pulumi_oci/stackmonitoring/__init__.py +5 -0
  152. pulumi_oci/stackmonitoring/_inputs.py +330 -0
  153. pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
  154. pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
  155. pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
  156. pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
  157. pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
  158. pulumi_oci/stackmonitoring/outputs.py +603 -0
  159. pulumi_oci/zpr/__init__.py +14 -0
  160. pulumi_oci/zpr/_inputs.py +79 -0
  161. pulumi_oci/zpr/configuration.py +516 -0
  162. pulumi_oci/zpr/get_configuration.py +230 -0
  163. pulumi_oci/zpr/get_zpr_policies.py +191 -0
  164. pulumi_oci/zpr/get_zpr_policy.py +264 -0
  165. pulumi_oci/zpr/outputs.py +203 -0
  166. pulumi_oci/zpr/zpr_policy.py +614 -0
  167. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
  168. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
  169. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
  170. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,79 @@
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
+
17
+ __all__ = [
18
+ 'GetZprPoliciesFilterArgs',
19
+ 'GetZprPoliciesFilterArgsDict',
20
+ ]
21
+
22
+ MYPY = False
23
+
24
+ if not MYPY:
25
+ class GetZprPoliciesFilterArgsDict(TypedDict):
26
+ name: str
27
+ """
28
+ A filter to return only resources that match the entire display name given.
29
+ """
30
+ values: Sequence[str]
31
+ regex: NotRequired[bool]
32
+ elif False:
33
+ GetZprPoliciesFilterArgsDict: TypeAlias = Mapping[str, Any]
34
+
35
+ @pulumi.input_type
36
+ class GetZprPoliciesFilterArgs:
37
+ def __init__(__self__, *,
38
+ name: str,
39
+ values: Sequence[str],
40
+ regex: Optional[bool] = None):
41
+ """
42
+ :param str name: A filter to return only resources that match the entire display name given.
43
+ """
44
+ pulumi.set(__self__, "name", name)
45
+ pulumi.set(__self__, "values", values)
46
+ if regex is not None:
47
+ pulumi.set(__self__, "regex", regex)
48
+
49
+ @property
50
+ @pulumi.getter
51
+ def name(self) -> str:
52
+ """
53
+ A filter to return only resources that match the entire display name given.
54
+ """
55
+ return pulumi.get(self, "name")
56
+
57
+ @name.setter
58
+ def name(self, value: str):
59
+ pulumi.set(self, "name", value)
60
+
61
+ @property
62
+ @pulumi.getter
63
+ def values(self) -> Sequence[str]:
64
+ return pulumi.get(self, "values")
65
+
66
+ @values.setter
67
+ def values(self, value: Sequence[str]):
68
+ pulumi.set(self, "values", value)
69
+
70
+ @property
71
+ @pulumi.getter
72
+ def regex(self) -> Optional[bool]:
73
+ return pulumi.get(self, "regex")
74
+
75
+ @regex.setter
76
+ def regex(self, value: Optional[bool]):
77
+ pulumi.set(self, "regex", value)
78
+
79
+
@@ -0,0 +1,516 @@
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
+
17
+ __all__ = ['ConfigurationArgs', 'Configuration']
18
+
19
+ @pulumi.input_type
20
+ class ConfigurationArgs:
21
+ def __init__(__self__, *,
22
+ compartment_id: pulumi.Input[str],
23
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
24
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
25
+ zpr_status: Optional[pulumi.Input[str]] = None):
26
+ """
27
+ The set of arguments for constructing a Configuration resource.
28
+ :param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the tenancy into which ZPR resources will be bootstrapped.
29
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: 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). Example: `{"Operations.CostCenter": "42"}`
30
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: 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"}`
31
+ :param pulumi.Input[str] zpr_status: The enabled or disabled status of ZPR in the tenancy.
32
+
33
+
34
+ ** IMPORTANT **
35
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
36
+ """
37
+ pulumi.set(__self__, "compartment_id", compartment_id)
38
+ if defined_tags is not None:
39
+ pulumi.set(__self__, "defined_tags", defined_tags)
40
+ if freeform_tags is not None:
41
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
42
+ if zpr_status is not None:
43
+ pulumi.set(__self__, "zpr_status", zpr_status)
44
+
45
+ @property
46
+ @pulumi.getter(name="compartmentId")
47
+ def compartment_id(self) -> pulumi.Input[str]:
48
+ """
49
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the tenancy into which ZPR resources will be bootstrapped.
50
+ """
51
+ return pulumi.get(self, "compartment_id")
52
+
53
+ @compartment_id.setter
54
+ def compartment_id(self, value: pulumi.Input[str]):
55
+ pulumi.set(self, "compartment_id", value)
56
+
57
+ @property
58
+ @pulumi.getter(name="definedTags")
59
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
60
+ """
61
+ 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). Example: `{"Operations.CostCenter": "42"}`
62
+ """
63
+ return pulumi.get(self, "defined_tags")
64
+
65
+ @defined_tags.setter
66
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
67
+ pulumi.set(self, "defined_tags", value)
68
+
69
+ @property
70
+ @pulumi.getter(name="freeformTags")
71
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
72
+ """
73
+ 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"}`
74
+ """
75
+ return pulumi.get(self, "freeform_tags")
76
+
77
+ @freeform_tags.setter
78
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
79
+ pulumi.set(self, "freeform_tags", value)
80
+
81
+ @property
82
+ @pulumi.getter(name="zprStatus")
83
+ def zpr_status(self) -> Optional[pulumi.Input[str]]:
84
+ """
85
+ The enabled or disabled status of ZPR in the tenancy.
86
+
87
+
88
+ ** IMPORTANT **
89
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
90
+ """
91
+ return pulumi.get(self, "zpr_status")
92
+
93
+ @zpr_status.setter
94
+ def zpr_status(self, value: Optional[pulumi.Input[str]]):
95
+ pulumi.set(self, "zpr_status", value)
96
+
97
+
98
+ @pulumi.input_type
99
+ class _ConfigurationState:
100
+ def __init__(__self__, *,
101
+ compartment_id: Optional[pulumi.Input[str]] = None,
102
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
103
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
104
+ lifecycle_details: Optional[pulumi.Input[str]] = None,
105
+ state: Optional[pulumi.Input[str]] = None,
106
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
107
+ time_created: Optional[pulumi.Input[str]] = None,
108
+ time_updated: Optional[pulumi.Input[str]] = None,
109
+ zpr_status: Optional[pulumi.Input[str]] = None):
110
+ """
111
+ Input properties used for looking up and filtering Configuration resources.
112
+ :param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the tenancy into which ZPR resources will be bootstrapped.
113
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: 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). Example: `{"Operations.CostCenter": "42"}`
114
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: 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"}`
115
+ :param pulumi.Input[str] lifecycle_details: A message that describes the current state of ZPR in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
116
+ :param pulumi.Input[str] state: The current state of ZPR in the tenancy.
117
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
118
+ :param pulumi.Input[str] time_created: The date and time that ZPR was onboarded to the tenancy, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
119
+ :param pulumi.Input[str] time_updated: The date and time that ZPR was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
120
+ :param pulumi.Input[str] zpr_status: The enabled or disabled status of ZPR in the tenancy.
121
+
122
+
123
+ ** IMPORTANT **
124
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
125
+ """
126
+ if compartment_id is not None:
127
+ pulumi.set(__self__, "compartment_id", compartment_id)
128
+ if defined_tags is not None:
129
+ pulumi.set(__self__, "defined_tags", defined_tags)
130
+ if freeform_tags is not None:
131
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
132
+ if lifecycle_details is not None:
133
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
134
+ if state is not None:
135
+ pulumi.set(__self__, "state", state)
136
+ if system_tags is not None:
137
+ pulumi.set(__self__, "system_tags", system_tags)
138
+ if time_created is not None:
139
+ pulumi.set(__self__, "time_created", time_created)
140
+ if time_updated is not None:
141
+ pulumi.set(__self__, "time_updated", time_updated)
142
+ if zpr_status is not None:
143
+ pulumi.set(__self__, "zpr_status", zpr_status)
144
+
145
+ @property
146
+ @pulumi.getter(name="compartmentId")
147
+ def compartment_id(self) -> Optional[pulumi.Input[str]]:
148
+ """
149
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the tenancy into which ZPR resources will be bootstrapped.
150
+ """
151
+ return pulumi.get(self, "compartment_id")
152
+
153
+ @compartment_id.setter
154
+ def compartment_id(self, value: Optional[pulumi.Input[str]]):
155
+ pulumi.set(self, "compartment_id", value)
156
+
157
+ @property
158
+ @pulumi.getter(name="definedTags")
159
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
160
+ """
161
+ 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). Example: `{"Operations.CostCenter": "42"}`
162
+ """
163
+ return pulumi.get(self, "defined_tags")
164
+
165
+ @defined_tags.setter
166
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
167
+ pulumi.set(self, "defined_tags", value)
168
+
169
+ @property
170
+ @pulumi.getter(name="freeformTags")
171
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
172
+ """
173
+ 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"}`
174
+ """
175
+ return pulumi.get(self, "freeform_tags")
176
+
177
+ @freeform_tags.setter
178
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
179
+ pulumi.set(self, "freeform_tags", value)
180
+
181
+ @property
182
+ @pulumi.getter(name="lifecycleDetails")
183
+ def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
184
+ """
185
+ A message that describes the current state of ZPR in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
186
+ """
187
+ return pulumi.get(self, "lifecycle_details")
188
+
189
+ @lifecycle_details.setter
190
+ def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
191
+ pulumi.set(self, "lifecycle_details", value)
192
+
193
+ @property
194
+ @pulumi.getter
195
+ def state(self) -> Optional[pulumi.Input[str]]:
196
+ """
197
+ The current state of ZPR in the tenancy.
198
+ """
199
+ return pulumi.get(self, "state")
200
+
201
+ @state.setter
202
+ def state(self, value: Optional[pulumi.Input[str]]):
203
+ pulumi.set(self, "state", value)
204
+
205
+ @property
206
+ @pulumi.getter(name="systemTags")
207
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
208
+ """
209
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
210
+ """
211
+ return pulumi.get(self, "system_tags")
212
+
213
+ @system_tags.setter
214
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
215
+ pulumi.set(self, "system_tags", value)
216
+
217
+ @property
218
+ @pulumi.getter(name="timeCreated")
219
+ def time_created(self) -> Optional[pulumi.Input[str]]:
220
+ """
221
+ The date and time that ZPR was onboarded to the tenancy, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
222
+ """
223
+ return pulumi.get(self, "time_created")
224
+
225
+ @time_created.setter
226
+ def time_created(self, value: Optional[pulumi.Input[str]]):
227
+ pulumi.set(self, "time_created", value)
228
+
229
+ @property
230
+ @pulumi.getter(name="timeUpdated")
231
+ def time_updated(self) -> Optional[pulumi.Input[str]]:
232
+ """
233
+ The date and time that ZPR was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
234
+ """
235
+ return pulumi.get(self, "time_updated")
236
+
237
+ @time_updated.setter
238
+ def time_updated(self, value: Optional[pulumi.Input[str]]):
239
+ pulumi.set(self, "time_updated", value)
240
+
241
+ @property
242
+ @pulumi.getter(name="zprStatus")
243
+ def zpr_status(self) -> Optional[pulumi.Input[str]]:
244
+ """
245
+ The enabled or disabled status of ZPR in the tenancy.
246
+
247
+
248
+ ** IMPORTANT **
249
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
250
+ """
251
+ return pulumi.get(self, "zpr_status")
252
+
253
+ @zpr_status.setter
254
+ def zpr_status(self, value: Optional[pulumi.Input[str]]):
255
+ pulumi.set(self, "zpr_status", value)
256
+
257
+
258
+ class Configuration(pulumi.CustomResource):
259
+ @overload
260
+ def __init__(__self__,
261
+ resource_name: str,
262
+ opts: Optional[pulumi.ResourceOptions] = None,
263
+ compartment_id: Optional[pulumi.Input[str]] = None,
264
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
265
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
266
+ zpr_status: Optional[pulumi.Input[str]] = None,
267
+ __props__=None):
268
+ """
269
+ This resource provides the Configuration resource in Oracle Cloud Infrastructure Zpr service.
270
+
271
+ Initiates the process to onboard ZPR
272
+ in a root compartment (the root compartment is the tenancy). It creates an object of ZPR configuration as part of onboarding.
273
+
274
+ ## Example Usage
275
+
276
+ ```python
277
+ import pulumi
278
+ import pulumi_oci as oci
279
+
280
+ test_configuration = oci.zpr.Configuration("test_configuration",
281
+ compartment_id=tenancy_ocid,
282
+ defined_tags={
283
+ "Operations.CostCenter": "42",
284
+ },
285
+ freeform_tags={
286
+ "Department": "Finance",
287
+ },
288
+ zpr_status=configuration_zpr_status)
289
+ ```
290
+
291
+ ## Import
292
+
293
+ Configuration can be imported using the 'compartment_id' and `id`, e.g.
294
+
295
+ ```sh
296
+ $ pulumi import oci:Zpr/configuration:Configuration test_configuration "{compartment_id}/{id}"
297
+ ```
298
+
299
+ :param str resource_name: The name of the resource.
300
+ :param pulumi.ResourceOptions opts: Options for the resource.
301
+ :param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the tenancy into which ZPR resources will be bootstrapped.
302
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: 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). Example: `{"Operations.CostCenter": "42"}`
303
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: 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"}`
304
+ :param pulumi.Input[str] zpr_status: The enabled or disabled status of ZPR in the tenancy.
305
+
306
+
307
+ ** IMPORTANT **
308
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
309
+ """
310
+ ...
311
+ @overload
312
+ def __init__(__self__,
313
+ resource_name: str,
314
+ args: ConfigurationArgs,
315
+ opts: Optional[pulumi.ResourceOptions] = None):
316
+ """
317
+ This resource provides the Configuration resource in Oracle Cloud Infrastructure Zpr service.
318
+
319
+ Initiates the process to onboard ZPR
320
+ in a root compartment (the root compartment is the tenancy). It creates an object of ZPR configuration as part of onboarding.
321
+
322
+ ## Example Usage
323
+
324
+ ```python
325
+ import pulumi
326
+ import pulumi_oci as oci
327
+
328
+ test_configuration = oci.zpr.Configuration("test_configuration",
329
+ compartment_id=tenancy_ocid,
330
+ defined_tags={
331
+ "Operations.CostCenter": "42",
332
+ },
333
+ freeform_tags={
334
+ "Department": "Finance",
335
+ },
336
+ zpr_status=configuration_zpr_status)
337
+ ```
338
+
339
+ ## Import
340
+
341
+ Configuration can be imported using the 'compartment_id' and `id`, e.g.
342
+
343
+ ```sh
344
+ $ pulumi import oci:Zpr/configuration:Configuration test_configuration "{compartment_id}/{id}"
345
+ ```
346
+
347
+ :param str resource_name: The name of the resource.
348
+ :param ConfigurationArgs args: The arguments to use to populate this resource's properties.
349
+ :param pulumi.ResourceOptions opts: Options for the resource.
350
+ """
351
+ ...
352
+ def __init__(__self__, resource_name: str, *args, **kwargs):
353
+ resource_args, opts = _utilities.get_resource_args_opts(ConfigurationArgs, pulumi.ResourceOptions, *args, **kwargs)
354
+ if resource_args is not None:
355
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
356
+ else:
357
+ __self__._internal_init(resource_name, *args, **kwargs)
358
+
359
+ def _internal_init(__self__,
360
+ resource_name: str,
361
+ opts: Optional[pulumi.ResourceOptions] = None,
362
+ compartment_id: Optional[pulumi.Input[str]] = None,
363
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
364
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
365
+ zpr_status: Optional[pulumi.Input[str]] = None,
366
+ __props__=None):
367
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
368
+ if not isinstance(opts, pulumi.ResourceOptions):
369
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
370
+ if opts.id is None:
371
+ if __props__ is not None:
372
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
373
+ __props__ = ConfigurationArgs.__new__(ConfigurationArgs)
374
+
375
+ if compartment_id is None and not opts.urn:
376
+ raise TypeError("Missing required property 'compartment_id'")
377
+ __props__.__dict__["compartment_id"] = compartment_id
378
+ __props__.__dict__["defined_tags"] = defined_tags
379
+ __props__.__dict__["freeform_tags"] = freeform_tags
380
+ __props__.__dict__["zpr_status"] = zpr_status
381
+ __props__.__dict__["lifecycle_details"] = None
382
+ __props__.__dict__["state"] = None
383
+ __props__.__dict__["system_tags"] = None
384
+ __props__.__dict__["time_created"] = None
385
+ __props__.__dict__["time_updated"] = None
386
+ super(Configuration, __self__).__init__(
387
+ 'oci:Zpr/configuration:Configuration',
388
+ resource_name,
389
+ __props__,
390
+ opts)
391
+
392
+ @staticmethod
393
+ def get(resource_name: str,
394
+ id: pulumi.Input[str],
395
+ opts: Optional[pulumi.ResourceOptions] = None,
396
+ compartment_id: Optional[pulumi.Input[str]] = None,
397
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
398
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
399
+ lifecycle_details: Optional[pulumi.Input[str]] = None,
400
+ state: Optional[pulumi.Input[str]] = None,
401
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
402
+ time_created: Optional[pulumi.Input[str]] = None,
403
+ time_updated: Optional[pulumi.Input[str]] = None,
404
+ zpr_status: Optional[pulumi.Input[str]] = None) -> 'Configuration':
405
+ """
406
+ Get an existing Configuration resource's state with the given name, id, and optional extra
407
+ properties used to qualify the lookup.
408
+
409
+ :param str resource_name: The unique name of the resulting resource.
410
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
411
+ :param pulumi.ResourceOptions opts: Options for the resource.
412
+ :param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the tenancy into which ZPR resources will be bootstrapped.
413
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: 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). Example: `{"Operations.CostCenter": "42"}`
414
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: 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"}`
415
+ :param pulumi.Input[str] lifecycle_details: A message that describes the current state of ZPR in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
416
+ :param pulumi.Input[str] state: The current state of ZPR in the tenancy.
417
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
418
+ :param pulumi.Input[str] time_created: The date and time that ZPR was onboarded to the tenancy, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
419
+ :param pulumi.Input[str] time_updated: The date and time that ZPR was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
420
+ :param pulumi.Input[str] zpr_status: The enabled or disabled status of ZPR in the tenancy.
421
+
422
+
423
+ ** IMPORTANT **
424
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
425
+ """
426
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
427
+
428
+ __props__ = _ConfigurationState.__new__(_ConfigurationState)
429
+
430
+ __props__.__dict__["compartment_id"] = compartment_id
431
+ __props__.__dict__["defined_tags"] = defined_tags
432
+ __props__.__dict__["freeform_tags"] = freeform_tags
433
+ __props__.__dict__["lifecycle_details"] = lifecycle_details
434
+ __props__.__dict__["state"] = state
435
+ __props__.__dict__["system_tags"] = system_tags
436
+ __props__.__dict__["time_created"] = time_created
437
+ __props__.__dict__["time_updated"] = time_updated
438
+ __props__.__dict__["zpr_status"] = zpr_status
439
+ return Configuration(resource_name, opts=opts, __props__=__props__)
440
+
441
+ @property
442
+ @pulumi.getter(name="compartmentId")
443
+ def compartment_id(self) -> pulumi.Output[str]:
444
+ """
445
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the tenancy into which ZPR resources will be bootstrapped.
446
+ """
447
+ return pulumi.get(self, "compartment_id")
448
+
449
+ @property
450
+ @pulumi.getter(name="definedTags")
451
+ def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
452
+ """
453
+ 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). Example: `{"Operations.CostCenter": "42"}`
454
+ """
455
+ return pulumi.get(self, "defined_tags")
456
+
457
+ @property
458
+ @pulumi.getter(name="freeformTags")
459
+ def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
460
+ """
461
+ 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"}`
462
+ """
463
+ return pulumi.get(self, "freeform_tags")
464
+
465
+ @property
466
+ @pulumi.getter(name="lifecycleDetails")
467
+ def lifecycle_details(self) -> pulumi.Output[str]:
468
+ """
469
+ A message that describes the current state of ZPR in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
470
+ """
471
+ return pulumi.get(self, "lifecycle_details")
472
+
473
+ @property
474
+ @pulumi.getter
475
+ def state(self) -> pulumi.Output[str]:
476
+ """
477
+ The current state of ZPR in the tenancy.
478
+ """
479
+ return pulumi.get(self, "state")
480
+
481
+ @property
482
+ @pulumi.getter(name="systemTags")
483
+ def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
484
+ """
485
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
486
+ """
487
+ return pulumi.get(self, "system_tags")
488
+
489
+ @property
490
+ @pulumi.getter(name="timeCreated")
491
+ def time_created(self) -> pulumi.Output[str]:
492
+ """
493
+ The date and time that ZPR was onboarded to the tenancy, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
494
+ """
495
+ return pulumi.get(self, "time_created")
496
+
497
+ @property
498
+ @pulumi.getter(name="timeUpdated")
499
+ def time_updated(self) -> pulumi.Output[str]:
500
+ """
501
+ The date and time that ZPR was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
502
+ """
503
+ return pulumi.get(self, "time_updated")
504
+
505
+ @property
506
+ @pulumi.getter(name="zprStatus")
507
+ def zpr_status(self) -> pulumi.Output[str]:
508
+ """
509
+ The enabled or disabled status of ZPR in the tenancy.
510
+
511
+
512
+ ** IMPORTANT **
513
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
514
+ """
515
+ return pulumi.get(self, "zpr_status")
516
+