pulumi-oci 2.19.0a1733984857__py3-none-any.whl → 2.20.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 (128) hide show
  1. pulumi_oci/__init__.py +56 -0
  2. pulumi_oci/bigdataservice/__init__.py +4 -0
  3. pulumi_oci/bigdataservice/_inputs.py +672 -6
  4. pulumi_oci/bigdataservice/bds_instance.py +169 -7
  5. pulumi_oci/bigdataservice/bds_instance_api_key.py +66 -3
  6. pulumi_oci/bigdataservice/bds_instance_identity_configuration.py +859 -0
  7. pulumi_oci/bigdataservice/bds_instance_patch_action.py +4 -0
  8. pulumi_oci/bigdataservice/get_bds_cluster_versions.py +123 -0
  9. pulumi_oci/bigdataservice/get_bds_instance.py +48 -1
  10. pulumi_oci/bigdataservice/get_bds_instance_api_key.py +17 -1
  11. pulumi_oci/bigdataservice/get_bds_instance_api_keys.py +3 -0
  12. pulumi_oci/bigdataservice/get_bds_instance_identity_configuration.py +322 -0
  13. pulumi_oci/bigdataservice/get_bds_instance_identity_configurations.py +207 -0
  14. pulumi_oci/bigdataservice/outputs.py +1466 -98
  15. pulumi_oci/blockchain/get_blockchain_platform.py +1 -1
  16. pulumi_oci/blockchain/outputs.py +2 -2
  17. pulumi_oci/core/outputs.py +4 -0
  18. pulumi_oci/database/autonomous_container_database.py +47 -0
  19. pulumi_oci/database/autonomous_database.py +94 -0
  20. pulumi_oci/database/exadb_vm_cluster.py +104 -0
  21. pulumi_oci/database/get_autonomous_container_database.py +15 -1
  22. pulumi_oci/database/get_autonomous_database.py +29 -1
  23. pulumi_oci/database/outputs.py +36 -0
  24. pulumi_oci/dataflow/application.py +75 -33
  25. pulumi_oci/dataflow/get_application.py +15 -1
  26. pulumi_oci/dataflow/outputs.py +7 -0
  27. pulumi_oci/datascience/_inputs.py +32 -12
  28. pulumi_oci/datascience/get_job_run.py +3 -3
  29. pulumi_oci/datascience/get_job_runs.py +2 -2
  30. pulumi_oci/datascience/job_run.py +7 -7
  31. pulumi_oci/datascience/model_deployment.py +2 -0
  32. pulumi_oci/datascience/outputs.py +62 -26
  33. pulumi_oci/desktops/_inputs.py +9 -9
  34. pulumi_oci/desktops/desktop_pool.py +84 -35
  35. pulumi_oci/desktops/get_desktop_pool.py +12 -1
  36. pulumi_oci/desktops/outputs.py +13 -6
  37. pulumi_oci/disasterrecovery/_inputs.py +46 -30
  38. pulumi_oci/disasterrecovery/dr_plan.py +194 -23
  39. pulumi_oci/disasterrecovery/get_dr_plan.py +54 -4
  40. pulumi_oci/disasterrecovery/get_dr_plans.py +23 -1
  41. pulumi_oci/disasterrecovery/outputs.py +113 -21
  42. pulumi_oci/fleetappsmanagement/__init__.py +19 -0
  43. pulumi_oci/fleetappsmanagement/_inputs.py +5334 -378
  44. pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +830 -0
  45. pulumi_oci/fleetappsmanagement/fleet.py +112 -67
  46. pulumi_oci/fleetappsmanagement/fleet_credential.py +44 -36
  47. pulumi_oci/fleetappsmanagement/fleet_property.py +35 -35
  48. pulumi_oci/fleetappsmanagement/fleet_resource.py +37 -37
  49. pulumi_oci/fleetappsmanagement/get_announcements.py +4 -4
  50. pulumi_oci/fleetappsmanagement/get_compliance_policies.py +199 -0
  51. pulumi_oci/fleetappsmanagement/get_compliance_policy.py +253 -0
  52. pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +324 -0
  53. pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +243 -0
  54. pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +144 -0
  55. pulumi_oci/fleetappsmanagement/get_compliance_records.py +279 -0
  56. pulumi_oci/fleetappsmanagement/get_fleet.py +29 -15
  57. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +8 -8
  58. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +7 -7
  59. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +61 -17
  60. pulumi_oci/fleetappsmanagement/get_fleet_products.py +6 -6
  61. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +8 -8
  62. pulumi_oci/fleetappsmanagement/get_fleet_property.py +11 -11
  63. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +11 -11
  64. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +10 -10
  65. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +8 -8
  66. pulumi_oci/fleetappsmanagement/get_fleets.py +16 -16
  67. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +12 -12
  68. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +8 -8
  69. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +31 -12
  70. pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +144 -0
  71. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +2 -2
  72. pulumi_oci/fleetappsmanagement/get_onboardings.py +2 -2
  73. pulumi_oci/fleetappsmanagement/get_patch.py +363 -0
  74. pulumi_oci/fleetappsmanagement/get_patches.py +335 -0
  75. pulumi_oci/fleetappsmanagement/get_platform_configuration.py +296 -0
  76. pulumi_oci/fleetappsmanagement/get_platform_configurations.py +221 -0
  77. pulumi_oci/fleetappsmanagement/get_properties.py +9 -9
  78. pulumi_oci/fleetappsmanagement/get_property.py +4 -4
  79. pulumi_oci/fleetappsmanagement/get_runbook.py +8 -8
  80. pulumi_oci/fleetappsmanagement/get_runbooks.py +16 -16
  81. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +10 -10
  82. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +2 -2
  83. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +33 -11
  84. pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +144 -0
  85. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_resources.py +245 -0
  86. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +245 -0
  87. pulumi_oci/fleetappsmanagement/get_task_record.py +3 -3
  88. pulumi_oci/fleetappsmanagement/maintenance_window.py +44 -44
  89. pulumi_oci/fleetappsmanagement/onboarding.py +108 -20
  90. pulumi_oci/fleetappsmanagement/outputs.py +11222 -2736
  91. pulumi_oci/fleetappsmanagement/patch.py +978 -0
  92. pulumi_oci/fleetappsmanagement/platform_configuration.py +687 -0
  93. pulumi_oci/fleetappsmanagement/property.py +27 -27
  94. pulumi_oci/fleetappsmanagement/runbook.py +1173 -0
  95. pulumi_oci/fleetappsmanagement/scheduler_definition.py +30 -30
  96. pulumi_oci/fleetappsmanagement/task_record.py +754 -0
  97. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +28 -0
  98. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +56 -0
  99. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +15 -1
  100. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +29 -1
  101. pulumi_oci/fleetsoftwareupdate/outputs.py +33 -0
  102. pulumi_oci/generativeai/dedicated_ai_cluster.py +21 -0
  103. pulumi_oci/goldengate/__init__.py +7 -0
  104. pulumi_oci/goldengate/_inputs.py +665 -0
  105. pulumi_oci/goldengate/connection.py +7 -7
  106. pulumi_oci/goldengate/get_pipeline.py +408 -0
  107. pulumi_oci/goldengate/get_pipeline_running_processes.py +144 -0
  108. pulumi_oci/goldengate/get_pipeline_schema_tables.py +207 -0
  109. pulumi_oci/goldengate/get_pipeline_schemas.py +163 -0
  110. pulumi_oci/goldengate/get_pipelines.py +213 -0
  111. pulumi_oci/goldengate/get_recipes.py +188 -0
  112. pulumi_oci/goldengate/get_trail_files.py +4 -2
  113. pulumi_oci/goldengate/get_trail_sequences.py +4 -2
  114. pulumi_oci/goldengate/outputs.py +1500 -0
  115. pulumi_oci/goldengate/pipeline.py +928 -0
  116. pulumi_oci/pulumi-plugin.json +1 -1
  117. pulumi_oci/stackmonitoring/_inputs.py +94 -14
  118. pulumi_oci/stackmonitoring/get_metric_extensions.py +22 -3
  119. pulumi_oci/stackmonitoring/metric_extension.py +8 -0
  120. pulumi_oci/stackmonitoring/outputs.py +166 -24
  121. pulumi_oci/visualbuilder/_inputs.py +57 -202
  122. pulumi_oci/visualbuilder/get_vb_instance.py +15 -29
  123. pulumi_oci/visualbuilder/outputs.py +114 -400
  124. pulumi_oci/visualbuilder/vb_instance.py +62 -59
  125. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/METADATA +3 -3
  126. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/RECORD +128 -98
  127. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/WHEEL +0 -0
  128. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/top_level.txt +0 -0
@@ -13,6 +13,8 @@ if sys.version_info >= (3, 11):
13
13
  else:
14
14
  from typing_extensions import NotRequired, TypedDict, TypeAlias
15
15
  from .. import _utilities
16
+ from . import outputs
17
+ from ._inputs import *
16
18
 
17
19
  __all__ = ['OnboardingArgs', 'Onboarding']
18
20
 
@@ -25,8 +27,8 @@ class OnboardingArgs:
25
27
  """
26
28
  The set of arguments for constructing a Onboarding resource.
27
29
  :param pulumi.Input[str] compartment_id: Tenancy OCID
28
- :param pulumi.Input[bool] is_cost_tracking_tag_enabled: A value determining if cost tracking tag is enabled or not
29
- :param pulumi.Input[bool] is_fams_tag_enabled: A value determining FAMS tag is enabled or not
30
+ :param pulumi.Input[bool] is_cost_tracking_tag_enabled: A value determining if the cost tracking tag is enabled or not. Allow Fleet Application Management to tag resources with cost tracking tag using "Oracle$FAMS-Tags.FAMSManaged" tag.
31
+ :param pulumi.Input[bool] is_fams_tag_enabled: A value determining if the Fleet Application Management tagging is enabled or not. Allow Fleet Application Management to tag resources with fleet name using "Oracle$FAMS-Tags.FleetName" tag.
30
32
 
31
33
 
32
34
  ** IMPORTANT **
@@ -54,7 +56,7 @@ class OnboardingArgs:
54
56
  @pulumi.getter(name="isCostTrackingTagEnabled")
55
57
  def is_cost_tracking_tag_enabled(self) -> Optional[pulumi.Input[bool]]:
56
58
  """
57
- A value determining if cost tracking tag is enabled or not
59
+ A value determining if the cost tracking tag is enabled or not. Allow Fleet Application Management to tag resources with cost tracking tag using "Oracle$FAMS-Tags.FAMSManaged" tag.
58
60
  """
59
61
  return pulumi.get(self, "is_cost_tracking_tag_enabled")
60
62
 
@@ -66,7 +68,7 @@ class OnboardingArgs:
66
68
  @pulumi.getter(name="isFamsTagEnabled")
67
69
  def is_fams_tag_enabled(self) -> Optional[pulumi.Input[bool]]:
68
70
  """
69
- A value determining FAMS tag is enabled or not
71
+ A value determining if the Fleet Application Management tagging is enabled or not. Allow Fleet Application Management to tag resources with fleet name using "Oracle$FAMS-Tags.FleetName" tag.
70
72
 
71
73
 
72
74
  ** IMPORTANT **
@@ -82,9 +84,12 @@ class OnboardingArgs:
82
84
  @pulumi.input_type
83
85
  class _OnboardingState:
84
86
  def __init__(__self__, *,
87
+ applied_policies: Optional[pulumi.Input[Sequence[pulumi.Input['OnboardingAppliedPolicyArgs']]]] = None,
85
88
  compartment_id: Optional[pulumi.Input[str]] = None,
89
+ discovery_frequency: Optional[pulumi.Input[str]] = None,
86
90
  is_cost_tracking_tag_enabled: Optional[pulumi.Input[bool]] = None,
87
91
  is_fams_tag_enabled: Optional[pulumi.Input[bool]] = None,
92
+ items: Optional[pulumi.Input[Sequence[pulumi.Input['OnboardingItemArgs']]]] = None,
88
93
  resource_region: Optional[pulumi.Input[str]] = None,
89
94
  state: Optional[pulumi.Input[str]] = None,
90
95
  system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -93,26 +98,35 @@ class _OnboardingState:
93
98
  version: Optional[pulumi.Input[str]] = None):
94
99
  """
95
100
  Input properties used for looking up and filtering Onboarding resources.
101
+ :param pulumi.Input[Sequence[pulumi.Input['OnboardingAppliedPolicyArgs']]] applied_policies: Summary of the Fleet Application Management Onboard Policy.
96
102
  :param pulumi.Input[str] compartment_id: Tenancy OCID
97
- :param pulumi.Input[bool] is_cost_tracking_tag_enabled: A value determining if cost tracking tag is enabled or not
98
- :param pulumi.Input[bool] is_fams_tag_enabled: A value determining FAMS tag is enabled or not
103
+ :param pulumi.Input[str] discovery_frequency: Provide discovery frequency.
104
+ :param pulumi.Input[bool] is_cost_tracking_tag_enabled: A value determining if the cost tracking tag is enabled or not. Allow Fleet Application Management to tag resources with cost tracking tag using "Oracle$FAMS-Tags.FAMSManaged" tag.
105
+ :param pulumi.Input[bool] is_fams_tag_enabled: A value determining if the Fleet Application Management tagging is enabled or not. Allow Fleet Application Management to tag resources with fleet name using "Oracle$FAMS-Tags.FleetName" tag.
99
106
 
100
107
 
101
108
  ** IMPORTANT **
102
109
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
110
+ :param pulumi.Input[Sequence[pulumi.Input['OnboardingItemArgs']]] items: List of Fleet Application Management Onboardings.
103
111
  :param pulumi.Input[str] resource_region: Associated region
104
112
  :param pulumi.Input[str] state: The current state of the Onboarding.
105
113
  :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"}`
106
114
  :param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
107
115
  :param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
108
- :param pulumi.Input[str] version: Version of FAMS the tenant is onboarded to.
116
+ :param pulumi.Input[str] version: The version of Fleet Application Management that the tenant is onboarded to.
109
117
  """
118
+ if applied_policies is not None:
119
+ pulumi.set(__self__, "applied_policies", applied_policies)
110
120
  if compartment_id is not None:
111
121
  pulumi.set(__self__, "compartment_id", compartment_id)
122
+ if discovery_frequency is not None:
123
+ pulumi.set(__self__, "discovery_frequency", discovery_frequency)
112
124
  if is_cost_tracking_tag_enabled is not None:
113
125
  pulumi.set(__self__, "is_cost_tracking_tag_enabled", is_cost_tracking_tag_enabled)
114
126
  if is_fams_tag_enabled is not None:
115
127
  pulumi.set(__self__, "is_fams_tag_enabled", is_fams_tag_enabled)
128
+ if items is not None:
129
+ pulumi.set(__self__, "items", items)
116
130
  if resource_region is not None:
117
131
  pulumi.set(__self__, "resource_region", resource_region)
118
132
  if state is not None:
@@ -126,6 +140,18 @@ class _OnboardingState:
126
140
  if version is not None:
127
141
  pulumi.set(__self__, "version", version)
128
142
 
143
+ @property
144
+ @pulumi.getter(name="appliedPolicies")
145
+ def applied_policies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OnboardingAppliedPolicyArgs']]]]:
146
+ """
147
+ Summary of the Fleet Application Management Onboard Policy.
148
+ """
149
+ return pulumi.get(self, "applied_policies")
150
+
151
+ @applied_policies.setter
152
+ def applied_policies(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OnboardingAppliedPolicyArgs']]]]):
153
+ pulumi.set(self, "applied_policies", value)
154
+
129
155
  @property
130
156
  @pulumi.getter(name="compartmentId")
131
157
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
@@ -138,11 +164,23 @@ class _OnboardingState:
138
164
  def compartment_id(self, value: Optional[pulumi.Input[str]]):
139
165
  pulumi.set(self, "compartment_id", value)
140
166
 
167
+ @property
168
+ @pulumi.getter(name="discoveryFrequency")
169
+ def discovery_frequency(self) -> Optional[pulumi.Input[str]]:
170
+ """
171
+ Provide discovery frequency.
172
+ """
173
+ return pulumi.get(self, "discovery_frequency")
174
+
175
+ @discovery_frequency.setter
176
+ def discovery_frequency(self, value: Optional[pulumi.Input[str]]):
177
+ pulumi.set(self, "discovery_frequency", value)
178
+
141
179
  @property
142
180
  @pulumi.getter(name="isCostTrackingTagEnabled")
143
181
  def is_cost_tracking_tag_enabled(self) -> Optional[pulumi.Input[bool]]:
144
182
  """
145
- A value determining if cost tracking tag is enabled or not
183
+ A value determining if the cost tracking tag is enabled or not. Allow Fleet Application Management to tag resources with cost tracking tag using "Oracle$FAMS-Tags.FAMSManaged" tag.
146
184
  """
147
185
  return pulumi.get(self, "is_cost_tracking_tag_enabled")
148
186
 
@@ -154,7 +192,7 @@ class _OnboardingState:
154
192
  @pulumi.getter(name="isFamsTagEnabled")
155
193
  def is_fams_tag_enabled(self) -> Optional[pulumi.Input[bool]]:
156
194
  """
157
- A value determining FAMS tag is enabled or not
195
+ A value determining if the Fleet Application Management tagging is enabled or not. Allow Fleet Application Management to tag resources with fleet name using "Oracle$FAMS-Tags.FleetName" tag.
158
196
 
159
197
 
160
198
  ** IMPORTANT **
@@ -166,6 +204,18 @@ class _OnboardingState:
166
204
  def is_fams_tag_enabled(self, value: Optional[pulumi.Input[bool]]):
167
205
  pulumi.set(self, "is_fams_tag_enabled", value)
168
206
 
207
+ @property
208
+ @pulumi.getter
209
+ def items(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OnboardingItemArgs']]]]:
210
+ """
211
+ List of Fleet Application Management Onboardings.
212
+ """
213
+ return pulumi.get(self, "items")
214
+
215
+ @items.setter
216
+ def items(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OnboardingItemArgs']]]]):
217
+ pulumi.set(self, "items", value)
218
+
169
219
  @property
170
220
  @pulumi.getter(name="resourceRegion")
171
221
  def resource_region(self) -> Optional[pulumi.Input[str]]:
@@ -230,7 +280,7 @@ class _OnboardingState:
230
280
  @pulumi.getter
231
281
  def version(self) -> Optional[pulumi.Input[str]]:
232
282
  """
233
- Version of FAMS the tenant is onboarded to.
283
+ The version of Fleet Application Management that the tenant is onboarded to.
234
284
  """
235
285
  return pulumi.get(self, "version")
236
286
 
@@ -251,7 +301,8 @@ class Onboarding(pulumi.CustomResource):
251
301
  """
252
302
  This resource provides the Onboarding resource in Oracle Cloud Infrastructure Fleet Apps Management service.
253
303
 
254
- Onboard a tenant to Fleet Application Management Service
304
+ Onboard a tenant to Fleet Application Management.
305
+ The onboarding process lets Fleet Application Management create a few required policies that you need to start using it and its features.
255
306
 
256
307
  ## Example Usage
257
308
 
@@ -272,8 +323,8 @@ class Onboarding(pulumi.CustomResource):
272
323
  :param str resource_name: The name of the resource.
273
324
  :param pulumi.ResourceOptions opts: Options for the resource.
274
325
  :param pulumi.Input[str] compartment_id: Tenancy OCID
275
- :param pulumi.Input[bool] is_cost_tracking_tag_enabled: A value determining if cost tracking tag is enabled or not
276
- :param pulumi.Input[bool] is_fams_tag_enabled: A value determining FAMS tag is enabled or not
326
+ :param pulumi.Input[bool] is_cost_tracking_tag_enabled: A value determining if the cost tracking tag is enabled or not. Allow Fleet Application Management to tag resources with cost tracking tag using "Oracle$FAMS-Tags.FAMSManaged" tag.
327
+ :param pulumi.Input[bool] is_fams_tag_enabled: A value determining if the Fleet Application Management tagging is enabled or not. Allow Fleet Application Management to tag resources with fleet name using "Oracle$FAMS-Tags.FleetName" tag.
277
328
 
278
329
 
279
330
  ** IMPORTANT **
@@ -288,7 +339,8 @@ class Onboarding(pulumi.CustomResource):
288
339
  """
289
340
  This resource provides the Onboarding resource in Oracle Cloud Infrastructure Fleet Apps Management service.
290
341
 
291
- Onboard a tenant to Fleet Application Management Service
342
+ Onboard a tenant to Fleet Application Management.
343
+ The onboarding process lets Fleet Application Management create a few required policies that you need to start using it and its features.
292
344
 
293
345
  ## Example Usage
294
346
 
@@ -338,6 +390,9 @@ class Onboarding(pulumi.CustomResource):
338
390
  __props__.__dict__["compartment_id"] = compartment_id
339
391
  __props__.__dict__["is_cost_tracking_tag_enabled"] = is_cost_tracking_tag_enabled
340
392
  __props__.__dict__["is_fams_tag_enabled"] = is_fams_tag_enabled
393
+ __props__.__dict__["applied_policies"] = None
394
+ __props__.__dict__["discovery_frequency"] = None
395
+ __props__.__dict__["items"] = None
341
396
  __props__.__dict__["resource_region"] = None
342
397
  __props__.__dict__["state"] = None
343
398
  __props__.__dict__["system_tags"] = None
@@ -354,9 +409,12 @@ class Onboarding(pulumi.CustomResource):
354
409
  def get(resource_name: str,
355
410
  id: pulumi.Input[str],
356
411
  opts: Optional[pulumi.ResourceOptions] = None,
412
+ applied_policies: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OnboardingAppliedPolicyArgs', 'OnboardingAppliedPolicyArgsDict']]]]] = None,
357
413
  compartment_id: Optional[pulumi.Input[str]] = None,
414
+ discovery_frequency: Optional[pulumi.Input[str]] = None,
358
415
  is_cost_tracking_tag_enabled: Optional[pulumi.Input[bool]] = None,
359
416
  is_fams_tag_enabled: Optional[pulumi.Input[bool]] = None,
417
+ items: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OnboardingItemArgs', 'OnboardingItemArgsDict']]]]] = None,
360
418
  resource_region: Optional[pulumi.Input[str]] = None,
361
419
  state: Optional[pulumi.Input[str]] = None,
362
420
  system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -370,27 +428,33 @@ class Onboarding(pulumi.CustomResource):
370
428
  :param str resource_name: The unique name of the resulting resource.
371
429
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
372
430
  :param pulumi.ResourceOptions opts: Options for the resource.
431
+ :param pulumi.Input[Sequence[pulumi.Input[Union['OnboardingAppliedPolicyArgs', 'OnboardingAppliedPolicyArgsDict']]]] applied_policies: Summary of the Fleet Application Management Onboard Policy.
373
432
  :param pulumi.Input[str] compartment_id: Tenancy OCID
374
- :param pulumi.Input[bool] is_cost_tracking_tag_enabled: A value determining if cost tracking tag is enabled or not
375
- :param pulumi.Input[bool] is_fams_tag_enabled: A value determining FAMS tag is enabled or not
433
+ :param pulumi.Input[str] discovery_frequency: Provide discovery frequency.
434
+ :param pulumi.Input[bool] is_cost_tracking_tag_enabled: A value determining if the cost tracking tag is enabled or not. Allow Fleet Application Management to tag resources with cost tracking tag using "Oracle$FAMS-Tags.FAMSManaged" tag.
435
+ :param pulumi.Input[bool] is_fams_tag_enabled: A value determining if the Fleet Application Management tagging is enabled or not. Allow Fleet Application Management to tag resources with fleet name using "Oracle$FAMS-Tags.FleetName" tag.
376
436
 
377
437
 
378
438
  ** IMPORTANT **
379
439
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
440
+ :param pulumi.Input[Sequence[pulumi.Input[Union['OnboardingItemArgs', 'OnboardingItemArgsDict']]]] items: List of Fleet Application Management Onboardings.
380
441
  :param pulumi.Input[str] resource_region: Associated region
381
442
  :param pulumi.Input[str] state: The current state of the Onboarding.
382
443
  :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"}`
383
444
  :param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
384
445
  :param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
385
- :param pulumi.Input[str] version: Version of FAMS the tenant is onboarded to.
446
+ :param pulumi.Input[str] version: The version of Fleet Application Management that the tenant is onboarded to.
386
447
  """
387
448
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
388
449
 
389
450
  __props__ = _OnboardingState.__new__(_OnboardingState)
390
451
 
452
+ __props__.__dict__["applied_policies"] = applied_policies
391
453
  __props__.__dict__["compartment_id"] = compartment_id
454
+ __props__.__dict__["discovery_frequency"] = discovery_frequency
392
455
  __props__.__dict__["is_cost_tracking_tag_enabled"] = is_cost_tracking_tag_enabled
393
456
  __props__.__dict__["is_fams_tag_enabled"] = is_fams_tag_enabled
457
+ __props__.__dict__["items"] = items
394
458
  __props__.__dict__["resource_region"] = resource_region
395
459
  __props__.__dict__["state"] = state
396
460
  __props__.__dict__["system_tags"] = system_tags
@@ -399,6 +463,14 @@ class Onboarding(pulumi.CustomResource):
399
463
  __props__.__dict__["version"] = version
400
464
  return Onboarding(resource_name, opts=opts, __props__=__props__)
401
465
 
466
+ @property
467
+ @pulumi.getter(name="appliedPolicies")
468
+ def applied_policies(self) -> pulumi.Output[Sequence['outputs.OnboardingAppliedPolicy']]:
469
+ """
470
+ Summary of the Fleet Application Management Onboard Policy.
471
+ """
472
+ return pulumi.get(self, "applied_policies")
473
+
402
474
  @property
403
475
  @pulumi.getter(name="compartmentId")
404
476
  def compartment_id(self) -> pulumi.Output[str]:
@@ -407,11 +479,19 @@ class Onboarding(pulumi.CustomResource):
407
479
  """
408
480
  return pulumi.get(self, "compartment_id")
409
481
 
482
+ @property
483
+ @pulumi.getter(name="discoveryFrequency")
484
+ def discovery_frequency(self) -> pulumi.Output[str]:
485
+ """
486
+ Provide discovery frequency.
487
+ """
488
+ return pulumi.get(self, "discovery_frequency")
489
+
410
490
  @property
411
491
  @pulumi.getter(name="isCostTrackingTagEnabled")
412
492
  def is_cost_tracking_tag_enabled(self) -> pulumi.Output[bool]:
413
493
  """
414
- A value determining if cost tracking tag is enabled or not
494
+ A value determining if the cost tracking tag is enabled or not. Allow Fleet Application Management to tag resources with cost tracking tag using "Oracle$FAMS-Tags.FAMSManaged" tag.
415
495
  """
416
496
  return pulumi.get(self, "is_cost_tracking_tag_enabled")
417
497
 
@@ -419,7 +499,7 @@ class Onboarding(pulumi.CustomResource):
419
499
  @pulumi.getter(name="isFamsTagEnabled")
420
500
  def is_fams_tag_enabled(self) -> pulumi.Output[bool]:
421
501
  """
422
- A value determining FAMS tag is enabled or not
502
+ A value determining if the Fleet Application Management tagging is enabled or not. Allow Fleet Application Management to tag resources with fleet name using "Oracle$FAMS-Tags.FleetName" tag.
423
503
 
424
504
 
425
505
  ** IMPORTANT **
@@ -427,6 +507,14 @@ class Onboarding(pulumi.CustomResource):
427
507
  """
428
508
  return pulumi.get(self, "is_fams_tag_enabled")
429
509
 
510
+ @property
511
+ @pulumi.getter
512
+ def items(self) -> pulumi.Output[Sequence['outputs.OnboardingItem']]:
513
+ """
514
+ List of Fleet Application Management Onboardings.
515
+ """
516
+ return pulumi.get(self, "items")
517
+
430
518
  @property
431
519
  @pulumi.getter(name="resourceRegion")
432
520
  def resource_region(self) -> pulumi.Output[str]:
@@ -471,7 +559,7 @@ class Onboarding(pulumi.CustomResource):
471
559
  @pulumi.getter
472
560
  def version(self) -> pulumi.Output[str]:
473
561
  """
474
- Version of FAMS the tenant is onboarded to.
562
+ The version of Fleet Application Management that the tenant is onboarded to.
475
563
  """
476
564
  return pulumi.get(self, "version")
477
565