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,955 @@
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__ = ['FleetArgs', 'Fleet']
20
+
21
+ @pulumi.input_type
22
+ class FleetArgs:
23
+ def __init__(__self__, *,
24
+ compartment_id: pulumi.Input[str],
25
+ fleet_type: pulumi.Input[str],
26
+ application_type: Optional[pulumi.Input[str]] = None,
27
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
28
+ description: Optional[pulumi.Input[str]] = None,
29
+ display_name: Optional[pulumi.Input[str]] = None,
30
+ environment_type: Optional[pulumi.Input[str]] = None,
31
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
32
+ group_type: Optional[pulumi.Input[str]] = None,
33
+ is_target_auto_confirm: Optional[pulumi.Input[bool]] = None,
34
+ notification_preferences: Optional[pulumi.Input['FleetNotificationPreferencesArgs']] = None,
35
+ products: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
36
+ resource_selection_type: Optional[pulumi.Input[str]] = None,
37
+ rule_selection_criteria: Optional[pulumi.Input['FleetRuleSelectionCriteriaArgs']] = None):
38
+ """
39
+ The set of arguments for constructing a Fleet resource.
40
+ :param pulumi.Input[str] compartment_id: Tenancy OCID
41
+ :param pulumi.Input[str] fleet_type: Type of the Fleet
42
+ :param pulumi.Input[str] application_type: Application Type associated with the Fleet.Applicable for Environment fleet types.
43
+ :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. Example: `{"foo-namespace.bar-key": "value"}`
44
+ :param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
45
+ :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
46
+ :param pulumi.Input[str] environment_type: Environment Type associated with the Fleet.Applicable for Environment fleet types.
47
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
48
+ :param pulumi.Input[str] group_type: Group Type associated with Group Fleet.Applicable for Group fleet types.
49
+ :param pulumi.Input[bool] is_target_auto_confirm: (Updatable) A value which represents if auto confirming of the targets can be enabled
50
+ :param pulumi.Input['FleetNotificationPreferencesArgs'] notification_preferences: (Updatable) Conditions when met to send notifications on the fleet activities
51
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] products: Products associated with the Fleet
52
+ :param pulumi.Input[str] resource_selection_type: Type of resource selection in a fleet
53
+ :param pulumi.Input['FleetRuleSelectionCriteriaArgs'] rule_selection_criteria: (Updatable) Rule Selection Criteria
54
+ """
55
+ pulumi.set(__self__, "compartment_id", compartment_id)
56
+ pulumi.set(__self__, "fleet_type", fleet_type)
57
+ if application_type is not None:
58
+ pulumi.set(__self__, "application_type", application_type)
59
+ if defined_tags is not None:
60
+ pulumi.set(__self__, "defined_tags", defined_tags)
61
+ if description is not None:
62
+ pulumi.set(__self__, "description", description)
63
+ if display_name is not None:
64
+ pulumi.set(__self__, "display_name", display_name)
65
+ if environment_type is not None:
66
+ pulumi.set(__self__, "environment_type", environment_type)
67
+ if freeform_tags is not None:
68
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
69
+ if group_type is not None:
70
+ pulumi.set(__self__, "group_type", group_type)
71
+ if is_target_auto_confirm is not None:
72
+ pulumi.set(__self__, "is_target_auto_confirm", is_target_auto_confirm)
73
+ if notification_preferences is not None:
74
+ pulumi.set(__self__, "notification_preferences", notification_preferences)
75
+ if products is not None:
76
+ pulumi.set(__self__, "products", products)
77
+ if resource_selection_type is not None:
78
+ pulumi.set(__self__, "resource_selection_type", resource_selection_type)
79
+ if rule_selection_criteria is not None:
80
+ pulumi.set(__self__, "rule_selection_criteria", rule_selection_criteria)
81
+
82
+ @property
83
+ @pulumi.getter(name="compartmentId")
84
+ def compartment_id(self) -> pulumi.Input[str]:
85
+ """
86
+ Tenancy OCID
87
+ """
88
+ return pulumi.get(self, "compartment_id")
89
+
90
+ @compartment_id.setter
91
+ def compartment_id(self, value: pulumi.Input[str]):
92
+ pulumi.set(self, "compartment_id", value)
93
+
94
+ @property
95
+ @pulumi.getter(name="fleetType")
96
+ def fleet_type(self) -> pulumi.Input[str]:
97
+ """
98
+ Type of the Fleet
99
+ """
100
+ return pulumi.get(self, "fleet_type")
101
+
102
+ @fleet_type.setter
103
+ def fleet_type(self, value: pulumi.Input[str]):
104
+ pulumi.set(self, "fleet_type", value)
105
+
106
+ @property
107
+ @pulumi.getter(name="applicationType")
108
+ def application_type(self) -> Optional[pulumi.Input[str]]:
109
+ """
110
+ Application Type associated with the Fleet.Applicable for Environment fleet types.
111
+ """
112
+ return pulumi.get(self, "application_type")
113
+
114
+ @application_type.setter
115
+ def application_type(self, value: Optional[pulumi.Input[str]]):
116
+ pulumi.set(self, "application_type", value)
117
+
118
+ @property
119
+ @pulumi.getter(name="definedTags")
120
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
121
+ """
122
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
123
+ """
124
+ return pulumi.get(self, "defined_tags")
125
+
126
+ @defined_tags.setter
127
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
128
+ pulumi.set(self, "defined_tags", value)
129
+
130
+ @property
131
+ @pulumi.getter
132
+ def description(self) -> Optional[pulumi.Input[str]]:
133
+ """
134
+ (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
135
+ """
136
+ return pulumi.get(self, "description")
137
+
138
+ @description.setter
139
+ def description(self, value: Optional[pulumi.Input[str]]):
140
+ pulumi.set(self, "description", value)
141
+
142
+ @property
143
+ @pulumi.getter(name="displayName")
144
+ def display_name(self) -> Optional[pulumi.Input[str]]:
145
+ """
146
+ (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
147
+ """
148
+ return pulumi.get(self, "display_name")
149
+
150
+ @display_name.setter
151
+ def display_name(self, value: Optional[pulumi.Input[str]]):
152
+ pulumi.set(self, "display_name", value)
153
+
154
+ @property
155
+ @pulumi.getter(name="environmentType")
156
+ def environment_type(self) -> Optional[pulumi.Input[str]]:
157
+ """
158
+ Environment Type associated with the Fleet.Applicable for Environment fleet types.
159
+ """
160
+ return pulumi.get(self, "environment_type")
161
+
162
+ @environment_type.setter
163
+ def environment_type(self, value: Optional[pulumi.Input[str]]):
164
+ pulumi.set(self, "environment_type", value)
165
+
166
+ @property
167
+ @pulumi.getter(name="freeformTags")
168
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
169
+ """
170
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
171
+ """
172
+ return pulumi.get(self, "freeform_tags")
173
+
174
+ @freeform_tags.setter
175
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
176
+ pulumi.set(self, "freeform_tags", value)
177
+
178
+ @property
179
+ @pulumi.getter(name="groupType")
180
+ def group_type(self) -> Optional[pulumi.Input[str]]:
181
+ """
182
+ Group Type associated with Group Fleet.Applicable for Group fleet types.
183
+ """
184
+ return pulumi.get(self, "group_type")
185
+
186
+ @group_type.setter
187
+ def group_type(self, value: Optional[pulumi.Input[str]]):
188
+ pulumi.set(self, "group_type", value)
189
+
190
+ @property
191
+ @pulumi.getter(name="isTargetAutoConfirm")
192
+ def is_target_auto_confirm(self) -> Optional[pulumi.Input[bool]]:
193
+ """
194
+ (Updatable) A value which represents if auto confirming of the targets can be enabled
195
+ """
196
+ return pulumi.get(self, "is_target_auto_confirm")
197
+
198
+ @is_target_auto_confirm.setter
199
+ def is_target_auto_confirm(self, value: Optional[pulumi.Input[bool]]):
200
+ pulumi.set(self, "is_target_auto_confirm", value)
201
+
202
+ @property
203
+ @pulumi.getter(name="notificationPreferences")
204
+ def notification_preferences(self) -> Optional[pulumi.Input['FleetNotificationPreferencesArgs']]:
205
+ """
206
+ (Updatable) Conditions when met to send notifications on the fleet activities
207
+ """
208
+ return pulumi.get(self, "notification_preferences")
209
+
210
+ @notification_preferences.setter
211
+ def notification_preferences(self, value: Optional[pulumi.Input['FleetNotificationPreferencesArgs']]):
212
+ pulumi.set(self, "notification_preferences", value)
213
+
214
+ @property
215
+ @pulumi.getter
216
+ def products(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
217
+ """
218
+ Products associated with the Fleet
219
+ """
220
+ return pulumi.get(self, "products")
221
+
222
+ @products.setter
223
+ def products(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
224
+ pulumi.set(self, "products", value)
225
+
226
+ @property
227
+ @pulumi.getter(name="resourceSelectionType")
228
+ def resource_selection_type(self) -> Optional[pulumi.Input[str]]:
229
+ """
230
+ Type of resource selection in a fleet
231
+ """
232
+ return pulumi.get(self, "resource_selection_type")
233
+
234
+ @resource_selection_type.setter
235
+ def resource_selection_type(self, value: Optional[pulumi.Input[str]]):
236
+ pulumi.set(self, "resource_selection_type", value)
237
+
238
+ @property
239
+ @pulumi.getter(name="ruleSelectionCriteria")
240
+ def rule_selection_criteria(self) -> Optional[pulumi.Input['FleetRuleSelectionCriteriaArgs']]:
241
+ """
242
+ (Updatable) Rule Selection Criteria
243
+ """
244
+ return pulumi.get(self, "rule_selection_criteria")
245
+
246
+ @rule_selection_criteria.setter
247
+ def rule_selection_criteria(self, value: Optional[pulumi.Input['FleetRuleSelectionCriteriaArgs']]):
248
+ pulumi.set(self, "rule_selection_criteria", value)
249
+
250
+
251
+ @pulumi.input_type
252
+ class _FleetState:
253
+ def __init__(__self__, *,
254
+ application_type: Optional[pulumi.Input[str]] = None,
255
+ compartment_id: Optional[pulumi.Input[str]] = None,
256
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
257
+ description: Optional[pulumi.Input[str]] = None,
258
+ display_name: Optional[pulumi.Input[str]] = None,
259
+ environment_type: Optional[pulumi.Input[str]] = None,
260
+ fleet_type: Optional[pulumi.Input[str]] = None,
261
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
262
+ group_type: Optional[pulumi.Input[str]] = None,
263
+ is_target_auto_confirm: Optional[pulumi.Input[bool]] = None,
264
+ lifecycle_details: Optional[pulumi.Input[str]] = None,
265
+ notification_preferences: Optional[pulumi.Input['FleetNotificationPreferencesArgs']] = None,
266
+ products: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
267
+ resource_region: Optional[pulumi.Input[str]] = None,
268
+ resource_selection_type: Optional[pulumi.Input[str]] = None,
269
+ rule_selection_criteria: Optional[pulumi.Input['FleetRuleSelectionCriteriaArgs']] = None,
270
+ state: Optional[pulumi.Input[str]] = None,
271
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
272
+ time_created: Optional[pulumi.Input[str]] = None,
273
+ time_updated: Optional[pulumi.Input[str]] = None):
274
+ """
275
+ Input properties used for looking up and filtering Fleet resources.
276
+ :param pulumi.Input[str] application_type: Application Type associated with the Fleet.Applicable for Environment fleet types.
277
+ :param pulumi.Input[str] compartment_id: Tenancy OCID
278
+ :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. Example: `{"foo-namespace.bar-key": "value"}`
279
+ :param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
280
+ :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
281
+ :param pulumi.Input[str] environment_type: Environment Type associated with the Fleet.Applicable for Environment fleet types.
282
+ :param pulumi.Input[str] fleet_type: Type of the Fleet
283
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
284
+ :param pulumi.Input[str] group_type: Group Type associated with Group Fleet.Applicable for Group fleet types.
285
+ :param pulumi.Input[bool] is_target_auto_confirm: (Updatable) A value which represents if auto confirming of the targets can be enabled
286
+ :param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
287
+ :param pulumi.Input['FleetNotificationPreferencesArgs'] notification_preferences: (Updatable) Conditions when met to send notifications on the fleet activities
288
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] products: Products associated with the Fleet
289
+ :param pulumi.Input[str] resource_region: Associated region
290
+ :param pulumi.Input[str] resource_selection_type: Type of resource selection in a fleet
291
+ :param pulumi.Input['FleetRuleSelectionCriteriaArgs'] rule_selection_criteria: (Updatable) Rule Selection Criteria
292
+ :param pulumi.Input[str] state: The lifecycle state of the Fleet.
293
+ :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"}`
294
+ :param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
295
+ :param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
296
+ """
297
+ if application_type is not None:
298
+ pulumi.set(__self__, "application_type", application_type)
299
+ if compartment_id is not None:
300
+ pulumi.set(__self__, "compartment_id", compartment_id)
301
+ if defined_tags is not None:
302
+ pulumi.set(__self__, "defined_tags", defined_tags)
303
+ if description is not None:
304
+ pulumi.set(__self__, "description", description)
305
+ if display_name is not None:
306
+ pulumi.set(__self__, "display_name", display_name)
307
+ if environment_type is not None:
308
+ pulumi.set(__self__, "environment_type", environment_type)
309
+ if fleet_type is not None:
310
+ pulumi.set(__self__, "fleet_type", fleet_type)
311
+ if freeform_tags is not None:
312
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
313
+ if group_type is not None:
314
+ pulumi.set(__self__, "group_type", group_type)
315
+ if is_target_auto_confirm is not None:
316
+ pulumi.set(__self__, "is_target_auto_confirm", is_target_auto_confirm)
317
+ if lifecycle_details is not None:
318
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
319
+ if notification_preferences is not None:
320
+ pulumi.set(__self__, "notification_preferences", notification_preferences)
321
+ if products is not None:
322
+ pulumi.set(__self__, "products", products)
323
+ if resource_region is not None:
324
+ pulumi.set(__self__, "resource_region", resource_region)
325
+ if resource_selection_type is not None:
326
+ pulumi.set(__self__, "resource_selection_type", resource_selection_type)
327
+ if rule_selection_criteria is not None:
328
+ pulumi.set(__self__, "rule_selection_criteria", rule_selection_criteria)
329
+ if state is not None:
330
+ pulumi.set(__self__, "state", state)
331
+ if system_tags is not None:
332
+ pulumi.set(__self__, "system_tags", system_tags)
333
+ if time_created is not None:
334
+ pulumi.set(__self__, "time_created", time_created)
335
+ if time_updated is not None:
336
+ pulumi.set(__self__, "time_updated", time_updated)
337
+
338
+ @property
339
+ @pulumi.getter(name="applicationType")
340
+ def application_type(self) -> Optional[pulumi.Input[str]]:
341
+ """
342
+ Application Type associated with the Fleet.Applicable for Environment fleet types.
343
+ """
344
+ return pulumi.get(self, "application_type")
345
+
346
+ @application_type.setter
347
+ def application_type(self, value: Optional[pulumi.Input[str]]):
348
+ pulumi.set(self, "application_type", value)
349
+
350
+ @property
351
+ @pulumi.getter(name="compartmentId")
352
+ def compartment_id(self) -> Optional[pulumi.Input[str]]:
353
+ """
354
+ Tenancy OCID
355
+ """
356
+ return pulumi.get(self, "compartment_id")
357
+
358
+ @compartment_id.setter
359
+ def compartment_id(self, value: Optional[pulumi.Input[str]]):
360
+ pulumi.set(self, "compartment_id", value)
361
+
362
+ @property
363
+ @pulumi.getter(name="definedTags")
364
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
365
+ """
366
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
367
+ """
368
+ return pulumi.get(self, "defined_tags")
369
+
370
+ @defined_tags.setter
371
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
372
+ pulumi.set(self, "defined_tags", value)
373
+
374
+ @property
375
+ @pulumi.getter
376
+ def description(self) -> Optional[pulumi.Input[str]]:
377
+ """
378
+ (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
379
+ """
380
+ return pulumi.get(self, "description")
381
+
382
+ @description.setter
383
+ def description(self, value: Optional[pulumi.Input[str]]):
384
+ pulumi.set(self, "description", value)
385
+
386
+ @property
387
+ @pulumi.getter(name="displayName")
388
+ def display_name(self) -> Optional[pulumi.Input[str]]:
389
+ """
390
+ (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
391
+ """
392
+ return pulumi.get(self, "display_name")
393
+
394
+ @display_name.setter
395
+ def display_name(self, value: Optional[pulumi.Input[str]]):
396
+ pulumi.set(self, "display_name", value)
397
+
398
+ @property
399
+ @pulumi.getter(name="environmentType")
400
+ def environment_type(self) -> Optional[pulumi.Input[str]]:
401
+ """
402
+ Environment Type associated with the Fleet.Applicable for Environment fleet types.
403
+ """
404
+ return pulumi.get(self, "environment_type")
405
+
406
+ @environment_type.setter
407
+ def environment_type(self, value: Optional[pulumi.Input[str]]):
408
+ pulumi.set(self, "environment_type", value)
409
+
410
+ @property
411
+ @pulumi.getter(name="fleetType")
412
+ def fleet_type(self) -> Optional[pulumi.Input[str]]:
413
+ """
414
+ Type of the Fleet
415
+ """
416
+ return pulumi.get(self, "fleet_type")
417
+
418
+ @fleet_type.setter
419
+ def fleet_type(self, value: Optional[pulumi.Input[str]]):
420
+ pulumi.set(self, "fleet_type", value)
421
+
422
+ @property
423
+ @pulumi.getter(name="freeformTags")
424
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
425
+ """
426
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
427
+ """
428
+ return pulumi.get(self, "freeform_tags")
429
+
430
+ @freeform_tags.setter
431
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
432
+ pulumi.set(self, "freeform_tags", value)
433
+
434
+ @property
435
+ @pulumi.getter(name="groupType")
436
+ def group_type(self) -> Optional[pulumi.Input[str]]:
437
+ """
438
+ Group Type associated with Group Fleet.Applicable for Group fleet types.
439
+ """
440
+ return pulumi.get(self, "group_type")
441
+
442
+ @group_type.setter
443
+ def group_type(self, value: Optional[pulumi.Input[str]]):
444
+ pulumi.set(self, "group_type", value)
445
+
446
+ @property
447
+ @pulumi.getter(name="isTargetAutoConfirm")
448
+ def is_target_auto_confirm(self) -> Optional[pulumi.Input[bool]]:
449
+ """
450
+ (Updatable) A value which represents if auto confirming of the targets can be enabled
451
+ """
452
+ return pulumi.get(self, "is_target_auto_confirm")
453
+
454
+ @is_target_auto_confirm.setter
455
+ def is_target_auto_confirm(self, value: Optional[pulumi.Input[bool]]):
456
+ pulumi.set(self, "is_target_auto_confirm", value)
457
+
458
+ @property
459
+ @pulumi.getter(name="lifecycleDetails")
460
+ def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
461
+ """
462
+ A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
463
+ """
464
+ return pulumi.get(self, "lifecycle_details")
465
+
466
+ @lifecycle_details.setter
467
+ def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
468
+ pulumi.set(self, "lifecycle_details", value)
469
+
470
+ @property
471
+ @pulumi.getter(name="notificationPreferences")
472
+ def notification_preferences(self) -> Optional[pulumi.Input['FleetNotificationPreferencesArgs']]:
473
+ """
474
+ (Updatable) Conditions when met to send notifications on the fleet activities
475
+ """
476
+ return pulumi.get(self, "notification_preferences")
477
+
478
+ @notification_preferences.setter
479
+ def notification_preferences(self, value: Optional[pulumi.Input['FleetNotificationPreferencesArgs']]):
480
+ pulumi.set(self, "notification_preferences", value)
481
+
482
+ @property
483
+ @pulumi.getter
484
+ def products(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
485
+ """
486
+ Products associated with the Fleet
487
+ """
488
+ return pulumi.get(self, "products")
489
+
490
+ @products.setter
491
+ def products(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
492
+ pulumi.set(self, "products", value)
493
+
494
+ @property
495
+ @pulumi.getter(name="resourceRegion")
496
+ def resource_region(self) -> Optional[pulumi.Input[str]]:
497
+ """
498
+ Associated region
499
+ """
500
+ return pulumi.get(self, "resource_region")
501
+
502
+ @resource_region.setter
503
+ def resource_region(self, value: Optional[pulumi.Input[str]]):
504
+ pulumi.set(self, "resource_region", value)
505
+
506
+ @property
507
+ @pulumi.getter(name="resourceSelectionType")
508
+ def resource_selection_type(self) -> Optional[pulumi.Input[str]]:
509
+ """
510
+ Type of resource selection in a fleet
511
+ """
512
+ return pulumi.get(self, "resource_selection_type")
513
+
514
+ @resource_selection_type.setter
515
+ def resource_selection_type(self, value: Optional[pulumi.Input[str]]):
516
+ pulumi.set(self, "resource_selection_type", value)
517
+
518
+ @property
519
+ @pulumi.getter(name="ruleSelectionCriteria")
520
+ def rule_selection_criteria(self) -> Optional[pulumi.Input['FleetRuleSelectionCriteriaArgs']]:
521
+ """
522
+ (Updatable) Rule Selection Criteria
523
+ """
524
+ return pulumi.get(self, "rule_selection_criteria")
525
+
526
+ @rule_selection_criteria.setter
527
+ def rule_selection_criteria(self, value: Optional[pulumi.Input['FleetRuleSelectionCriteriaArgs']]):
528
+ pulumi.set(self, "rule_selection_criteria", value)
529
+
530
+ @property
531
+ @pulumi.getter
532
+ def state(self) -> Optional[pulumi.Input[str]]:
533
+ """
534
+ The lifecycle state of the Fleet.
535
+ """
536
+ return pulumi.get(self, "state")
537
+
538
+ @state.setter
539
+ def state(self, value: Optional[pulumi.Input[str]]):
540
+ pulumi.set(self, "state", value)
541
+
542
+ @property
543
+ @pulumi.getter(name="systemTags")
544
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[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
+ @system_tags.setter
551
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
552
+ pulumi.set(self, "system_tags", value)
553
+
554
+ @property
555
+ @pulumi.getter(name="timeCreated")
556
+ def time_created(self) -> Optional[pulumi.Input[str]]:
557
+ """
558
+ The time this resource was created. An RFC3339 formatted datetime string.
559
+ """
560
+ return pulumi.get(self, "time_created")
561
+
562
+ @time_created.setter
563
+ def time_created(self, value: Optional[pulumi.Input[str]]):
564
+ pulumi.set(self, "time_created", value)
565
+
566
+ @property
567
+ @pulumi.getter(name="timeUpdated")
568
+ def time_updated(self) -> Optional[pulumi.Input[str]]:
569
+ """
570
+ The time this resource was last updated. An RFC3339 formatted datetime string.
571
+ """
572
+ return pulumi.get(self, "time_updated")
573
+
574
+ @time_updated.setter
575
+ def time_updated(self, value: Optional[pulumi.Input[str]]):
576
+ pulumi.set(self, "time_updated", value)
577
+
578
+
579
+ class Fleet(pulumi.CustomResource):
580
+ @overload
581
+ def __init__(__self__,
582
+ resource_name: str,
583
+ opts: Optional[pulumi.ResourceOptions] = None,
584
+ application_type: Optional[pulumi.Input[str]] = None,
585
+ compartment_id: Optional[pulumi.Input[str]] = None,
586
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
587
+ description: Optional[pulumi.Input[str]] = None,
588
+ display_name: Optional[pulumi.Input[str]] = None,
589
+ environment_type: Optional[pulumi.Input[str]] = None,
590
+ fleet_type: Optional[pulumi.Input[str]] = None,
591
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
592
+ group_type: Optional[pulumi.Input[str]] = None,
593
+ is_target_auto_confirm: Optional[pulumi.Input[bool]] = None,
594
+ notification_preferences: Optional[pulumi.Input[Union['FleetNotificationPreferencesArgs', 'FleetNotificationPreferencesArgsDict']]] = None,
595
+ products: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
596
+ resource_selection_type: Optional[pulumi.Input[str]] = None,
597
+ rule_selection_criteria: Optional[pulumi.Input[Union['FleetRuleSelectionCriteriaArgs', 'FleetRuleSelectionCriteriaArgsDict']]] = None,
598
+ __props__=None):
599
+ """
600
+ This resource provides the Fleet resource in Oracle Cloud Infrastructure Fleet Apps Management service.
601
+
602
+ Creates a new fleet instance that includes fleet resources and properties.
603
+ For more information, please see the documentation.
604
+
605
+ ## Import
606
+
607
+ Fleets can be imported using the `id`, e.g.
608
+
609
+ ```sh
610
+ $ pulumi import oci:FleetAppsManagement/fleet:Fleet test_fleet "id"
611
+ ```
612
+
613
+ :param str resource_name: The name of the resource.
614
+ :param pulumi.ResourceOptions opts: Options for the resource.
615
+ :param pulumi.Input[str] application_type: Application Type associated with the Fleet.Applicable for Environment fleet types.
616
+ :param pulumi.Input[str] compartment_id: Tenancy OCID
617
+ :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. Example: `{"foo-namespace.bar-key": "value"}`
618
+ :param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
619
+ :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
620
+ :param pulumi.Input[str] environment_type: Environment Type associated with the Fleet.Applicable for Environment fleet types.
621
+ :param pulumi.Input[str] fleet_type: Type of the Fleet
622
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
623
+ :param pulumi.Input[str] group_type: Group Type associated with Group Fleet.Applicable for Group fleet types.
624
+ :param pulumi.Input[bool] is_target_auto_confirm: (Updatable) A value which represents if auto confirming of the targets can be enabled
625
+ :param pulumi.Input[Union['FleetNotificationPreferencesArgs', 'FleetNotificationPreferencesArgsDict']] notification_preferences: (Updatable) Conditions when met to send notifications on the fleet activities
626
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] products: Products associated with the Fleet
627
+ :param pulumi.Input[str] resource_selection_type: Type of resource selection in a fleet
628
+ :param pulumi.Input[Union['FleetRuleSelectionCriteriaArgs', 'FleetRuleSelectionCriteriaArgsDict']] rule_selection_criteria: (Updatable) Rule Selection Criteria
629
+ """
630
+ ...
631
+ @overload
632
+ def __init__(__self__,
633
+ resource_name: str,
634
+ args: FleetArgs,
635
+ opts: Optional[pulumi.ResourceOptions] = None):
636
+ """
637
+ This resource provides the Fleet resource in Oracle Cloud Infrastructure Fleet Apps Management service.
638
+
639
+ Creates a new fleet instance that includes fleet resources and properties.
640
+ For more information, please see the documentation.
641
+
642
+ ## Import
643
+
644
+ Fleets can be imported using the `id`, e.g.
645
+
646
+ ```sh
647
+ $ pulumi import oci:FleetAppsManagement/fleet:Fleet test_fleet "id"
648
+ ```
649
+
650
+ :param str resource_name: The name of the resource.
651
+ :param FleetArgs args: The arguments to use to populate this resource's properties.
652
+ :param pulumi.ResourceOptions opts: Options for the resource.
653
+ """
654
+ ...
655
+ def __init__(__self__, resource_name: str, *args, **kwargs):
656
+ resource_args, opts = _utilities.get_resource_args_opts(FleetArgs, pulumi.ResourceOptions, *args, **kwargs)
657
+ if resource_args is not None:
658
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
659
+ else:
660
+ __self__._internal_init(resource_name, *args, **kwargs)
661
+
662
+ def _internal_init(__self__,
663
+ resource_name: str,
664
+ opts: Optional[pulumi.ResourceOptions] = None,
665
+ application_type: Optional[pulumi.Input[str]] = None,
666
+ compartment_id: Optional[pulumi.Input[str]] = None,
667
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
668
+ description: Optional[pulumi.Input[str]] = None,
669
+ display_name: Optional[pulumi.Input[str]] = None,
670
+ environment_type: Optional[pulumi.Input[str]] = None,
671
+ fleet_type: Optional[pulumi.Input[str]] = None,
672
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
673
+ group_type: Optional[pulumi.Input[str]] = None,
674
+ is_target_auto_confirm: Optional[pulumi.Input[bool]] = None,
675
+ notification_preferences: Optional[pulumi.Input[Union['FleetNotificationPreferencesArgs', 'FleetNotificationPreferencesArgsDict']]] = None,
676
+ products: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
677
+ resource_selection_type: Optional[pulumi.Input[str]] = None,
678
+ rule_selection_criteria: Optional[pulumi.Input[Union['FleetRuleSelectionCriteriaArgs', 'FleetRuleSelectionCriteriaArgsDict']]] = None,
679
+ __props__=None):
680
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
681
+ if not isinstance(opts, pulumi.ResourceOptions):
682
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
683
+ if opts.id is None:
684
+ if __props__ is not None:
685
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
686
+ __props__ = FleetArgs.__new__(FleetArgs)
687
+
688
+ __props__.__dict__["application_type"] = application_type
689
+ if compartment_id is None and not opts.urn:
690
+ raise TypeError("Missing required property 'compartment_id'")
691
+ __props__.__dict__["compartment_id"] = compartment_id
692
+ __props__.__dict__["defined_tags"] = defined_tags
693
+ __props__.__dict__["description"] = description
694
+ __props__.__dict__["display_name"] = display_name
695
+ __props__.__dict__["environment_type"] = environment_type
696
+ if fleet_type is None and not opts.urn:
697
+ raise TypeError("Missing required property 'fleet_type'")
698
+ __props__.__dict__["fleet_type"] = fleet_type
699
+ __props__.__dict__["freeform_tags"] = freeform_tags
700
+ __props__.__dict__["group_type"] = group_type
701
+ __props__.__dict__["is_target_auto_confirm"] = is_target_auto_confirm
702
+ __props__.__dict__["notification_preferences"] = notification_preferences
703
+ __props__.__dict__["products"] = products
704
+ __props__.__dict__["resource_selection_type"] = resource_selection_type
705
+ __props__.__dict__["rule_selection_criteria"] = rule_selection_criteria
706
+ __props__.__dict__["lifecycle_details"] = None
707
+ __props__.__dict__["resource_region"] = None
708
+ __props__.__dict__["state"] = None
709
+ __props__.__dict__["system_tags"] = None
710
+ __props__.__dict__["time_created"] = None
711
+ __props__.__dict__["time_updated"] = None
712
+ super(Fleet, __self__).__init__(
713
+ 'oci:FleetAppsManagement/fleet:Fleet',
714
+ resource_name,
715
+ __props__,
716
+ opts)
717
+
718
+ @staticmethod
719
+ def get(resource_name: str,
720
+ id: pulumi.Input[str],
721
+ opts: Optional[pulumi.ResourceOptions] = None,
722
+ application_type: Optional[pulumi.Input[str]] = None,
723
+ compartment_id: Optional[pulumi.Input[str]] = None,
724
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
725
+ description: Optional[pulumi.Input[str]] = None,
726
+ display_name: Optional[pulumi.Input[str]] = None,
727
+ environment_type: Optional[pulumi.Input[str]] = None,
728
+ fleet_type: Optional[pulumi.Input[str]] = None,
729
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
730
+ group_type: Optional[pulumi.Input[str]] = None,
731
+ is_target_auto_confirm: Optional[pulumi.Input[bool]] = None,
732
+ lifecycle_details: Optional[pulumi.Input[str]] = None,
733
+ notification_preferences: Optional[pulumi.Input[Union['FleetNotificationPreferencesArgs', 'FleetNotificationPreferencesArgsDict']]] = None,
734
+ products: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
735
+ resource_region: Optional[pulumi.Input[str]] = None,
736
+ resource_selection_type: Optional[pulumi.Input[str]] = None,
737
+ rule_selection_criteria: Optional[pulumi.Input[Union['FleetRuleSelectionCriteriaArgs', 'FleetRuleSelectionCriteriaArgsDict']]] = None,
738
+ state: Optional[pulumi.Input[str]] = None,
739
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
740
+ time_created: Optional[pulumi.Input[str]] = None,
741
+ time_updated: Optional[pulumi.Input[str]] = None) -> 'Fleet':
742
+ """
743
+ Get an existing Fleet resource's state with the given name, id, and optional extra
744
+ properties used to qualify the lookup.
745
+
746
+ :param str resource_name: The unique name of the resulting resource.
747
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
748
+ :param pulumi.ResourceOptions opts: Options for the resource.
749
+ :param pulumi.Input[str] application_type: Application Type associated with the Fleet.Applicable for Environment fleet types.
750
+ :param pulumi.Input[str] compartment_id: Tenancy OCID
751
+ :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. Example: `{"foo-namespace.bar-key": "value"}`
752
+ :param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
753
+ :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
754
+ :param pulumi.Input[str] environment_type: Environment Type associated with the Fleet.Applicable for Environment fleet types.
755
+ :param pulumi.Input[str] fleet_type: Type of the Fleet
756
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
757
+ :param pulumi.Input[str] group_type: Group Type associated with Group Fleet.Applicable for Group fleet types.
758
+ :param pulumi.Input[bool] is_target_auto_confirm: (Updatable) A value which represents if auto confirming of the targets can be enabled
759
+ :param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
760
+ :param pulumi.Input[Union['FleetNotificationPreferencesArgs', 'FleetNotificationPreferencesArgsDict']] notification_preferences: (Updatable) Conditions when met to send notifications on the fleet activities
761
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] products: Products associated with the Fleet
762
+ :param pulumi.Input[str] resource_region: Associated region
763
+ :param pulumi.Input[str] resource_selection_type: Type of resource selection in a fleet
764
+ :param pulumi.Input[Union['FleetRuleSelectionCriteriaArgs', 'FleetRuleSelectionCriteriaArgsDict']] rule_selection_criteria: (Updatable) Rule Selection Criteria
765
+ :param pulumi.Input[str] state: The lifecycle state of the Fleet.
766
+ :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"}`
767
+ :param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
768
+ :param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
769
+ """
770
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
771
+
772
+ __props__ = _FleetState.__new__(_FleetState)
773
+
774
+ __props__.__dict__["application_type"] = application_type
775
+ __props__.__dict__["compartment_id"] = compartment_id
776
+ __props__.__dict__["defined_tags"] = defined_tags
777
+ __props__.__dict__["description"] = description
778
+ __props__.__dict__["display_name"] = display_name
779
+ __props__.__dict__["environment_type"] = environment_type
780
+ __props__.__dict__["fleet_type"] = fleet_type
781
+ __props__.__dict__["freeform_tags"] = freeform_tags
782
+ __props__.__dict__["group_type"] = group_type
783
+ __props__.__dict__["is_target_auto_confirm"] = is_target_auto_confirm
784
+ __props__.__dict__["lifecycle_details"] = lifecycle_details
785
+ __props__.__dict__["notification_preferences"] = notification_preferences
786
+ __props__.__dict__["products"] = products
787
+ __props__.__dict__["resource_region"] = resource_region
788
+ __props__.__dict__["resource_selection_type"] = resource_selection_type
789
+ __props__.__dict__["rule_selection_criteria"] = rule_selection_criteria
790
+ __props__.__dict__["state"] = state
791
+ __props__.__dict__["system_tags"] = system_tags
792
+ __props__.__dict__["time_created"] = time_created
793
+ __props__.__dict__["time_updated"] = time_updated
794
+ return Fleet(resource_name, opts=opts, __props__=__props__)
795
+
796
+ @property
797
+ @pulumi.getter(name="applicationType")
798
+ def application_type(self) -> pulumi.Output[str]:
799
+ """
800
+ Application Type associated with the Fleet.Applicable for Environment fleet types.
801
+ """
802
+ return pulumi.get(self, "application_type")
803
+
804
+ @property
805
+ @pulumi.getter(name="compartmentId")
806
+ def compartment_id(self) -> pulumi.Output[str]:
807
+ """
808
+ Tenancy OCID
809
+ """
810
+ return pulumi.get(self, "compartment_id")
811
+
812
+ @property
813
+ @pulumi.getter(name="definedTags")
814
+ def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
815
+ """
816
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
817
+ """
818
+ return pulumi.get(self, "defined_tags")
819
+
820
+ @property
821
+ @pulumi.getter
822
+ def description(self) -> pulumi.Output[str]:
823
+ """
824
+ (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
825
+ """
826
+ return pulumi.get(self, "description")
827
+
828
+ @property
829
+ @pulumi.getter(name="displayName")
830
+ def display_name(self) -> pulumi.Output[str]:
831
+ """
832
+ (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
833
+ """
834
+ return pulumi.get(self, "display_name")
835
+
836
+ @property
837
+ @pulumi.getter(name="environmentType")
838
+ def environment_type(self) -> pulumi.Output[str]:
839
+ """
840
+ Environment Type associated with the Fleet.Applicable for Environment fleet types.
841
+ """
842
+ return pulumi.get(self, "environment_type")
843
+
844
+ @property
845
+ @pulumi.getter(name="fleetType")
846
+ def fleet_type(self) -> pulumi.Output[str]:
847
+ """
848
+ Type of the Fleet
849
+ """
850
+ return pulumi.get(self, "fleet_type")
851
+
852
+ @property
853
+ @pulumi.getter(name="freeformTags")
854
+ def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
855
+ """
856
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
857
+ """
858
+ return pulumi.get(self, "freeform_tags")
859
+
860
+ @property
861
+ @pulumi.getter(name="groupType")
862
+ def group_type(self) -> pulumi.Output[str]:
863
+ """
864
+ Group Type associated with Group Fleet.Applicable for Group fleet types.
865
+ """
866
+ return pulumi.get(self, "group_type")
867
+
868
+ @property
869
+ @pulumi.getter(name="isTargetAutoConfirm")
870
+ def is_target_auto_confirm(self) -> pulumi.Output[bool]:
871
+ """
872
+ (Updatable) A value which represents if auto confirming of the targets can be enabled
873
+ """
874
+ return pulumi.get(self, "is_target_auto_confirm")
875
+
876
+ @property
877
+ @pulumi.getter(name="lifecycleDetails")
878
+ def lifecycle_details(self) -> pulumi.Output[str]:
879
+ """
880
+ A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
881
+ """
882
+ return pulumi.get(self, "lifecycle_details")
883
+
884
+ @property
885
+ @pulumi.getter(name="notificationPreferences")
886
+ def notification_preferences(self) -> pulumi.Output['outputs.FleetNotificationPreferences']:
887
+ """
888
+ (Updatable) Conditions when met to send notifications on the fleet activities
889
+ """
890
+ return pulumi.get(self, "notification_preferences")
891
+
892
+ @property
893
+ @pulumi.getter
894
+ def products(self) -> pulumi.Output[Sequence[str]]:
895
+ """
896
+ Products associated with the Fleet
897
+ """
898
+ return pulumi.get(self, "products")
899
+
900
+ @property
901
+ @pulumi.getter(name="resourceRegion")
902
+ def resource_region(self) -> pulumi.Output[str]:
903
+ """
904
+ Associated region
905
+ """
906
+ return pulumi.get(self, "resource_region")
907
+
908
+ @property
909
+ @pulumi.getter(name="resourceSelectionType")
910
+ def resource_selection_type(self) -> pulumi.Output[str]:
911
+ """
912
+ Type of resource selection in a fleet
913
+ """
914
+ return pulumi.get(self, "resource_selection_type")
915
+
916
+ @property
917
+ @pulumi.getter(name="ruleSelectionCriteria")
918
+ def rule_selection_criteria(self) -> pulumi.Output['outputs.FleetRuleSelectionCriteria']:
919
+ """
920
+ (Updatable) Rule Selection Criteria
921
+ """
922
+ return pulumi.get(self, "rule_selection_criteria")
923
+
924
+ @property
925
+ @pulumi.getter
926
+ def state(self) -> pulumi.Output[str]:
927
+ """
928
+ The lifecycle state of the Fleet.
929
+ """
930
+ return pulumi.get(self, "state")
931
+
932
+ @property
933
+ @pulumi.getter(name="systemTags")
934
+ def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
935
+ """
936
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
937
+ """
938
+ return pulumi.get(self, "system_tags")
939
+
940
+ @property
941
+ @pulumi.getter(name="timeCreated")
942
+ def time_created(self) -> pulumi.Output[str]:
943
+ """
944
+ The time this resource was created. An RFC3339 formatted datetime string.
945
+ """
946
+ return pulumi.get(self, "time_created")
947
+
948
+ @property
949
+ @pulumi.getter(name="timeUpdated")
950
+ def time_updated(self) -> pulumi.Output[str]:
951
+ """
952
+ The time this resource was last updated. An RFC3339 formatted datetime string.
953
+ """
954
+ return pulumi.get(self, "time_updated")
955
+