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
@@ -0,0 +1,585 @@
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__ = ['FleetPropertyArgs', 'FleetProperty']
18
+
19
+ @pulumi.input_type
20
+ class FleetPropertyArgs:
21
+ def __init__(__self__, *,
22
+ compartment_id: pulumi.Input[str],
23
+ fleet_id: pulumi.Input[str],
24
+ property_id: pulumi.Input[str],
25
+ value: pulumi.Input[str]):
26
+ """
27
+ The set of arguments for constructing a FleetProperty resource.
28
+ :param pulumi.Input[str] compartment_id: Tenancy OCID
29
+ :param pulumi.Input[str] fleet_id: unique Fleet identifier
30
+ :param pulumi.Input[str] property_id: Property Id.
31
+ :param pulumi.Input[str] value: (Updatable) Value of the Property
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
+ pulumi.set(__self__, "fleet_id", fleet_id)
39
+ pulumi.set(__self__, "property_id", property_id)
40
+ pulumi.set(__self__, "value", value)
41
+
42
+ @property
43
+ @pulumi.getter(name="compartmentId")
44
+ def compartment_id(self) -> pulumi.Input[str]:
45
+ """
46
+ Tenancy OCID
47
+ """
48
+ return pulumi.get(self, "compartment_id")
49
+
50
+ @compartment_id.setter
51
+ def compartment_id(self, value: pulumi.Input[str]):
52
+ pulumi.set(self, "compartment_id", value)
53
+
54
+ @property
55
+ @pulumi.getter(name="fleetId")
56
+ def fleet_id(self) -> pulumi.Input[str]:
57
+ """
58
+ unique Fleet identifier
59
+ """
60
+ return pulumi.get(self, "fleet_id")
61
+
62
+ @fleet_id.setter
63
+ def fleet_id(self, value: pulumi.Input[str]):
64
+ pulumi.set(self, "fleet_id", value)
65
+
66
+ @property
67
+ @pulumi.getter(name="propertyId")
68
+ def property_id(self) -> pulumi.Input[str]:
69
+ """
70
+ Property Id.
71
+ """
72
+ return pulumi.get(self, "property_id")
73
+
74
+ @property_id.setter
75
+ def property_id(self, value: pulumi.Input[str]):
76
+ pulumi.set(self, "property_id", value)
77
+
78
+ @property
79
+ @pulumi.getter
80
+ def value(self) -> pulumi.Input[str]:
81
+ """
82
+ (Updatable) Value of the Property
83
+
84
+
85
+ ** IMPORTANT **
86
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
87
+ """
88
+ return pulumi.get(self, "value")
89
+
90
+ @value.setter
91
+ def value(self, value: pulumi.Input[str]):
92
+ pulumi.set(self, "value", value)
93
+
94
+
95
+ @pulumi.input_type
96
+ class _FleetPropertyState:
97
+ def __init__(__self__, *,
98
+ allowed_values: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
99
+ compartment_id: Optional[pulumi.Input[str]] = None,
100
+ display_name: Optional[pulumi.Input[str]] = None,
101
+ fleet_id: Optional[pulumi.Input[str]] = None,
102
+ property_id: Optional[pulumi.Input[str]] = None,
103
+ selection_type: Optional[pulumi.Input[str]] = None,
104
+ state: Optional[pulumi.Input[str]] = None,
105
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
106
+ time_created: Optional[pulumi.Input[str]] = None,
107
+ time_updated: Optional[pulumi.Input[str]] = None,
108
+ value: Optional[pulumi.Input[str]] = None,
109
+ value_type: Optional[pulumi.Input[str]] = None):
110
+ """
111
+ Input properties used for looking up and filtering FleetProperty resources.
112
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_values: Values of the category (must be a single value if selection = 'single choice')
113
+ :param pulumi.Input[str] compartment_id: Tenancy OCID
114
+ :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
115
+ :param pulumi.Input[str] fleet_id: unique Fleet identifier
116
+ :param pulumi.Input[str] property_id: Property Id.
117
+ :param pulumi.Input[str] selection_type: Text selection of the category
118
+ :param pulumi.Input[str] state: The current state of the FleetProperty.
119
+ :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"}`
120
+ :param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
121
+ :param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
122
+ :param pulumi.Input[str] value: (Updatable) Value of the Property
123
+
124
+
125
+ ** IMPORTANT **
126
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
127
+ :param pulumi.Input[str] value_type: Format of the value
128
+ """
129
+ if allowed_values is not None:
130
+ pulumi.set(__self__, "allowed_values", allowed_values)
131
+ if compartment_id is not None:
132
+ pulumi.set(__self__, "compartment_id", compartment_id)
133
+ if display_name is not None:
134
+ pulumi.set(__self__, "display_name", display_name)
135
+ if fleet_id is not None:
136
+ pulumi.set(__self__, "fleet_id", fleet_id)
137
+ if property_id is not None:
138
+ pulumi.set(__self__, "property_id", property_id)
139
+ if selection_type is not None:
140
+ pulumi.set(__self__, "selection_type", selection_type)
141
+ if state is not None:
142
+ pulumi.set(__self__, "state", state)
143
+ if system_tags is not None:
144
+ pulumi.set(__self__, "system_tags", system_tags)
145
+ if time_created is not None:
146
+ pulumi.set(__self__, "time_created", time_created)
147
+ if time_updated is not None:
148
+ pulumi.set(__self__, "time_updated", time_updated)
149
+ if value is not None:
150
+ pulumi.set(__self__, "value", value)
151
+ if value_type is not None:
152
+ pulumi.set(__self__, "value_type", value_type)
153
+
154
+ @property
155
+ @pulumi.getter(name="allowedValues")
156
+ def allowed_values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
157
+ """
158
+ Values of the category (must be a single value if selection = 'single choice')
159
+ """
160
+ return pulumi.get(self, "allowed_values")
161
+
162
+ @allowed_values.setter
163
+ def allowed_values(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
164
+ pulumi.set(self, "allowed_values", value)
165
+
166
+ @property
167
+ @pulumi.getter(name="compartmentId")
168
+ def compartment_id(self) -> Optional[pulumi.Input[str]]:
169
+ """
170
+ Tenancy OCID
171
+ """
172
+ return pulumi.get(self, "compartment_id")
173
+
174
+ @compartment_id.setter
175
+ def compartment_id(self, value: Optional[pulumi.Input[str]]):
176
+ pulumi.set(self, "compartment_id", value)
177
+
178
+ @property
179
+ @pulumi.getter(name="displayName")
180
+ def display_name(self) -> Optional[pulumi.Input[str]]:
181
+ """
182
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
183
+ """
184
+ return pulumi.get(self, "display_name")
185
+
186
+ @display_name.setter
187
+ def display_name(self, value: Optional[pulumi.Input[str]]):
188
+ pulumi.set(self, "display_name", value)
189
+
190
+ @property
191
+ @pulumi.getter(name="fleetId")
192
+ def fleet_id(self) -> Optional[pulumi.Input[str]]:
193
+ """
194
+ unique Fleet identifier
195
+ """
196
+ return pulumi.get(self, "fleet_id")
197
+
198
+ @fleet_id.setter
199
+ def fleet_id(self, value: Optional[pulumi.Input[str]]):
200
+ pulumi.set(self, "fleet_id", value)
201
+
202
+ @property
203
+ @pulumi.getter(name="propertyId")
204
+ def property_id(self) -> Optional[pulumi.Input[str]]:
205
+ """
206
+ Property Id.
207
+ """
208
+ return pulumi.get(self, "property_id")
209
+
210
+ @property_id.setter
211
+ def property_id(self, value: Optional[pulumi.Input[str]]):
212
+ pulumi.set(self, "property_id", value)
213
+
214
+ @property
215
+ @pulumi.getter(name="selectionType")
216
+ def selection_type(self) -> Optional[pulumi.Input[str]]:
217
+ """
218
+ Text selection of the category
219
+ """
220
+ return pulumi.get(self, "selection_type")
221
+
222
+ @selection_type.setter
223
+ def selection_type(self, value: Optional[pulumi.Input[str]]):
224
+ pulumi.set(self, "selection_type", value)
225
+
226
+ @property
227
+ @pulumi.getter
228
+ def state(self) -> Optional[pulumi.Input[str]]:
229
+ """
230
+ The current state of the FleetProperty.
231
+ """
232
+ return pulumi.get(self, "state")
233
+
234
+ @state.setter
235
+ def state(self, value: Optional[pulumi.Input[str]]):
236
+ pulumi.set(self, "state", value)
237
+
238
+ @property
239
+ @pulumi.getter(name="systemTags")
240
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
241
+ """
242
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
243
+ """
244
+ return pulumi.get(self, "system_tags")
245
+
246
+ @system_tags.setter
247
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
248
+ pulumi.set(self, "system_tags", value)
249
+
250
+ @property
251
+ @pulumi.getter(name="timeCreated")
252
+ def time_created(self) -> Optional[pulumi.Input[str]]:
253
+ """
254
+ The time this resource was created. An RFC3339 formatted datetime string.
255
+ """
256
+ return pulumi.get(self, "time_created")
257
+
258
+ @time_created.setter
259
+ def time_created(self, value: Optional[pulumi.Input[str]]):
260
+ pulumi.set(self, "time_created", value)
261
+
262
+ @property
263
+ @pulumi.getter(name="timeUpdated")
264
+ def time_updated(self) -> Optional[pulumi.Input[str]]:
265
+ """
266
+ The time this resource was last updated. An RFC3339 formatted datetime string.
267
+ """
268
+ return pulumi.get(self, "time_updated")
269
+
270
+ @time_updated.setter
271
+ def time_updated(self, value: Optional[pulumi.Input[str]]):
272
+ pulumi.set(self, "time_updated", value)
273
+
274
+ @property
275
+ @pulumi.getter
276
+ def value(self) -> Optional[pulumi.Input[str]]:
277
+ """
278
+ (Updatable) Value of the Property
279
+
280
+
281
+ ** IMPORTANT **
282
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
283
+ """
284
+ return pulumi.get(self, "value")
285
+
286
+ @value.setter
287
+ def value(self, value: Optional[pulumi.Input[str]]):
288
+ pulumi.set(self, "value", value)
289
+
290
+ @property
291
+ @pulumi.getter(name="valueType")
292
+ def value_type(self) -> Optional[pulumi.Input[str]]:
293
+ """
294
+ Format of the value
295
+ """
296
+ return pulumi.get(self, "value_type")
297
+
298
+ @value_type.setter
299
+ def value_type(self, value: Optional[pulumi.Input[str]]):
300
+ pulumi.set(self, "value_type", value)
301
+
302
+
303
+ class FleetProperty(pulumi.CustomResource):
304
+ @overload
305
+ def __init__(__self__,
306
+ resource_name: str,
307
+ opts: Optional[pulumi.ResourceOptions] = None,
308
+ compartment_id: Optional[pulumi.Input[str]] = None,
309
+ fleet_id: Optional[pulumi.Input[str]] = None,
310
+ property_id: Optional[pulumi.Input[str]] = None,
311
+ value: Optional[pulumi.Input[str]] = None,
312
+ __props__=None):
313
+ """
314
+ This resource provides the Fleet Property resource in Oracle Cloud Infrastructure Fleet Apps Management service.
315
+
316
+ Creates a new FleetProperty.
317
+
318
+ ## Example Usage
319
+
320
+ ```python
321
+ import pulumi
322
+ import pulumi_oci as oci
323
+
324
+ test_fleet_property = oci.fleet_apps_management.FleetProperty("test_fleet_property",
325
+ compartment_id=compartment_id,
326
+ fleet_id=test_fleet["id"],
327
+ property_id=test_property["id"],
328
+ value=fleet_property_value)
329
+ ```
330
+
331
+ ## Import
332
+
333
+ Import is not supported for this resource.
334
+
335
+ :param str resource_name: The name of the resource.
336
+ :param pulumi.ResourceOptions opts: Options for the resource.
337
+ :param pulumi.Input[str] compartment_id: Tenancy OCID
338
+ :param pulumi.Input[str] fleet_id: unique Fleet identifier
339
+ :param pulumi.Input[str] property_id: Property Id.
340
+ :param pulumi.Input[str] value: (Updatable) Value of the Property
341
+
342
+
343
+ ** IMPORTANT **
344
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
345
+ """
346
+ ...
347
+ @overload
348
+ def __init__(__self__,
349
+ resource_name: str,
350
+ args: FleetPropertyArgs,
351
+ opts: Optional[pulumi.ResourceOptions] = None):
352
+ """
353
+ This resource provides the Fleet Property resource in Oracle Cloud Infrastructure Fleet Apps Management service.
354
+
355
+ Creates a new FleetProperty.
356
+
357
+ ## Example Usage
358
+
359
+ ```python
360
+ import pulumi
361
+ import pulumi_oci as oci
362
+
363
+ test_fleet_property = oci.fleet_apps_management.FleetProperty("test_fleet_property",
364
+ compartment_id=compartment_id,
365
+ fleet_id=test_fleet["id"],
366
+ property_id=test_property["id"],
367
+ value=fleet_property_value)
368
+ ```
369
+
370
+ ## Import
371
+
372
+ Import is not supported for this resource.
373
+
374
+ :param str resource_name: The name of the resource.
375
+ :param FleetPropertyArgs args: The arguments to use to populate this resource's properties.
376
+ :param pulumi.ResourceOptions opts: Options for the resource.
377
+ """
378
+ ...
379
+ def __init__(__self__, resource_name: str, *args, **kwargs):
380
+ resource_args, opts = _utilities.get_resource_args_opts(FleetPropertyArgs, pulumi.ResourceOptions, *args, **kwargs)
381
+ if resource_args is not None:
382
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
383
+ else:
384
+ __self__._internal_init(resource_name, *args, **kwargs)
385
+
386
+ def _internal_init(__self__,
387
+ resource_name: str,
388
+ opts: Optional[pulumi.ResourceOptions] = None,
389
+ compartment_id: Optional[pulumi.Input[str]] = None,
390
+ fleet_id: Optional[pulumi.Input[str]] = None,
391
+ property_id: Optional[pulumi.Input[str]] = None,
392
+ value: Optional[pulumi.Input[str]] = None,
393
+ __props__=None):
394
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
395
+ if not isinstance(opts, pulumi.ResourceOptions):
396
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
397
+ if opts.id is None:
398
+ if __props__ is not None:
399
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
400
+ __props__ = FleetPropertyArgs.__new__(FleetPropertyArgs)
401
+
402
+ if compartment_id is None and not opts.urn:
403
+ raise TypeError("Missing required property 'compartment_id'")
404
+ __props__.__dict__["compartment_id"] = compartment_id
405
+ if fleet_id is None and not opts.urn:
406
+ raise TypeError("Missing required property 'fleet_id'")
407
+ __props__.__dict__["fleet_id"] = fleet_id
408
+ if property_id is None and not opts.urn:
409
+ raise TypeError("Missing required property 'property_id'")
410
+ __props__.__dict__["property_id"] = property_id
411
+ if value is None and not opts.urn:
412
+ raise TypeError("Missing required property 'value'")
413
+ __props__.__dict__["value"] = value
414
+ __props__.__dict__["allowed_values"] = None
415
+ __props__.__dict__["display_name"] = None
416
+ __props__.__dict__["selection_type"] = None
417
+ __props__.__dict__["state"] = None
418
+ __props__.__dict__["system_tags"] = None
419
+ __props__.__dict__["time_created"] = None
420
+ __props__.__dict__["time_updated"] = None
421
+ __props__.__dict__["value_type"] = None
422
+ super(FleetProperty, __self__).__init__(
423
+ 'oci:FleetAppsManagement/fleetProperty:FleetProperty',
424
+ resource_name,
425
+ __props__,
426
+ opts)
427
+
428
+ @staticmethod
429
+ def get(resource_name: str,
430
+ id: pulumi.Input[str],
431
+ opts: Optional[pulumi.ResourceOptions] = None,
432
+ allowed_values: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
433
+ compartment_id: Optional[pulumi.Input[str]] = None,
434
+ display_name: Optional[pulumi.Input[str]] = None,
435
+ fleet_id: Optional[pulumi.Input[str]] = None,
436
+ property_id: Optional[pulumi.Input[str]] = None,
437
+ selection_type: Optional[pulumi.Input[str]] = None,
438
+ state: Optional[pulumi.Input[str]] = None,
439
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
440
+ time_created: Optional[pulumi.Input[str]] = None,
441
+ time_updated: Optional[pulumi.Input[str]] = None,
442
+ value: Optional[pulumi.Input[str]] = None,
443
+ value_type: Optional[pulumi.Input[str]] = None) -> 'FleetProperty':
444
+ """
445
+ Get an existing FleetProperty resource's state with the given name, id, and optional extra
446
+ properties used to qualify the lookup.
447
+
448
+ :param str resource_name: The unique name of the resulting resource.
449
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
450
+ :param pulumi.ResourceOptions opts: Options for the resource.
451
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_values: Values of the category (must be a single value if selection = 'single choice')
452
+ :param pulumi.Input[str] compartment_id: Tenancy OCID
453
+ :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
454
+ :param pulumi.Input[str] fleet_id: unique Fleet identifier
455
+ :param pulumi.Input[str] property_id: Property Id.
456
+ :param pulumi.Input[str] selection_type: Text selection of the category
457
+ :param pulumi.Input[str] state: The current state of the FleetProperty.
458
+ :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"}`
459
+ :param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
460
+ :param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
461
+ :param pulumi.Input[str] value: (Updatable) Value of the Property
462
+
463
+
464
+ ** IMPORTANT **
465
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
466
+ :param pulumi.Input[str] value_type: Format of the value
467
+ """
468
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
469
+
470
+ __props__ = _FleetPropertyState.__new__(_FleetPropertyState)
471
+
472
+ __props__.__dict__["allowed_values"] = allowed_values
473
+ __props__.__dict__["compartment_id"] = compartment_id
474
+ __props__.__dict__["display_name"] = display_name
475
+ __props__.__dict__["fleet_id"] = fleet_id
476
+ __props__.__dict__["property_id"] = property_id
477
+ __props__.__dict__["selection_type"] = selection_type
478
+ __props__.__dict__["state"] = state
479
+ __props__.__dict__["system_tags"] = system_tags
480
+ __props__.__dict__["time_created"] = time_created
481
+ __props__.__dict__["time_updated"] = time_updated
482
+ __props__.__dict__["value"] = value
483
+ __props__.__dict__["value_type"] = value_type
484
+ return FleetProperty(resource_name, opts=opts, __props__=__props__)
485
+
486
+ @property
487
+ @pulumi.getter(name="allowedValues")
488
+ def allowed_values(self) -> pulumi.Output[Sequence[str]]:
489
+ """
490
+ Values of the category (must be a single value if selection = 'single choice')
491
+ """
492
+ return pulumi.get(self, "allowed_values")
493
+
494
+ @property
495
+ @pulumi.getter(name="compartmentId")
496
+ def compartment_id(self) -> pulumi.Output[str]:
497
+ """
498
+ Tenancy OCID
499
+ """
500
+ return pulumi.get(self, "compartment_id")
501
+
502
+ @property
503
+ @pulumi.getter(name="displayName")
504
+ def display_name(self) -> pulumi.Output[str]:
505
+ """
506
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
507
+ """
508
+ return pulumi.get(self, "display_name")
509
+
510
+ @property
511
+ @pulumi.getter(name="fleetId")
512
+ def fleet_id(self) -> pulumi.Output[str]:
513
+ """
514
+ unique Fleet identifier
515
+ """
516
+ return pulumi.get(self, "fleet_id")
517
+
518
+ @property
519
+ @pulumi.getter(name="propertyId")
520
+ def property_id(self) -> pulumi.Output[str]:
521
+ """
522
+ Property Id.
523
+ """
524
+ return pulumi.get(self, "property_id")
525
+
526
+ @property
527
+ @pulumi.getter(name="selectionType")
528
+ def selection_type(self) -> pulumi.Output[str]:
529
+ """
530
+ Text selection of the category
531
+ """
532
+ return pulumi.get(self, "selection_type")
533
+
534
+ @property
535
+ @pulumi.getter
536
+ def state(self) -> pulumi.Output[str]:
537
+ """
538
+ The current state of the FleetProperty.
539
+ """
540
+ return pulumi.get(self, "state")
541
+
542
+ @property
543
+ @pulumi.getter(name="systemTags")
544
+ def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
545
+ """
546
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
547
+ """
548
+ return pulumi.get(self, "system_tags")
549
+
550
+ @property
551
+ @pulumi.getter(name="timeCreated")
552
+ def time_created(self) -> pulumi.Output[str]:
553
+ """
554
+ The time this resource was created. An RFC3339 formatted datetime string.
555
+ """
556
+ return pulumi.get(self, "time_created")
557
+
558
+ @property
559
+ @pulumi.getter(name="timeUpdated")
560
+ def time_updated(self) -> pulumi.Output[str]:
561
+ """
562
+ The time this resource was last updated. An RFC3339 formatted datetime string.
563
+ """
564
+ return pulumi.get(self, "time_updated")
565
+
566
+ @property
567
+ @pulumi.getter
568
+ def value(self) -> pulumi.Output[str]:
569
+ """
570
+ (Updatable) Value of the Property
571
+
572
+
573
+ ** IMPORTANT **
574
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
575
+ """
576
+ return pulumi.get(self, "value")
577
+
578
+ @property
579
+ @pulumi.getter(name="valueType")
580
+ def value_type(self) -> pulumi.Output[str]:
581
+ """
582
+ Format of the value
583
+ """
584
+ return pulumi.get(self, "value_type")
585
+