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
@@ -98,7 +98,7 @@ class GetFleetResourceResult:
98
98
  @pulumi.getter(name="applicationType")
99
99
  def application_type(self) -> str:
100
100
  """
101
- Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
101
+ Application Type associated with the resource when the resource type is fleet. Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
102
102
  """
103
103
  return pulumi.get(self, "application_type")
104
104
 
@@ -106,7 +106,7 @@ class GetFleetResourceResult:
106
106
  @pulumi.getter
107
107
  def compartment(self) -> str:
108
108
  """
109
- Resource Compartment
109
+ Resource Compartment name.
110
110
  """
111
111
  return pulumi.get(self, "compartment")
112
112
 
@@ -122,7 +122,7 @@ class GetFleetResourceResult:
122
122
  @pulumi.getter(name="complianceState")
123
123
  def compliance_state(self) -> str:
124
124
  """
125
- Compliance State of the Resource
125
+ Compliance State of the Resource.
126
126
  """
127
127
  return pulumi.get(self, "compliance_state")
128
128
 
@@ -138,7 +138,7 @@ class GetFleetResourceResult:
138
138
  @pulumi.getter(name="environmentType")
139
139
  def environment_type(self) -> str:
140
140
  """
141
- Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
141
+ Environment Type associated with the Fleet when the resource type is fleet. Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
142
142
  """
143
143
  return pulumi.get(self, "environment_type")
144
144
 
@@ -172,7 +172,7 @@ class GetFleetResourceResult:
172
172
  @pulumi.getter
173
173
  def product(self) -> str:
174
174
  """
175
- Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
175
+ Product associated with the resource when the resource type is fleet. Will only be returned for PRODUCT fleets that are part of a GROUP Fleet.
176
176
  """
177
177
  return pulumi.get(self, "product")
178
178
 
@@ -228,7 +228,7 @@ class GetFleetResourceResult:
228
228
  @pulumi.getter(name="targetCount")
229
229
  def target_count(self) -> int:
230
230
  """
231
- Count of targets within the resource.
231
+ Count of targets within the resource.
232
232
  """
233
233
  return pulumi.get(self, "target_count")
234
234
 
@@ -244,7 +244,7 @@ class GetFleetResourceResult:
244
244
  @pulumi.getter(name="tenancyName")
245
245
  def tenancy_name(self) -> str:
246
246
  """
247
- Resource Tenancy Name
247
+ Resource Tenancy Name.
248
248
  """
249
249
  return pulumi.get(self, "tenancy_name")
250
250
 
@@ -301,7 +301,7 @@ def get_fleet_resource(fleet_id: Optional[str] = None,
301
301
  """
302
302
  This data source provides details about a specific Fleet Resource resource in Oracle Cloud Infrastructure Fleet Apps Management service.
303
303
 
304
- Gets a FleetResource by identifier
304
+ Gets a Fleet Resource by identifier.
305
305
 
306
306
  ## Example Usage
307
307
 
@@ -314,7 +314,7 @@ def get_fleet_resource(fleet_id: Optional[str] = None,
314
314
  ```
315
315
 
316
316
 
317
- :param str fleet_id: unique Fleet identifier
317
+ :param str fleet_id: Unique Fleet identifier.
318
318
  :param str fleet_resource_id: unique FleetResource identifier
319
319
  """
320
320
  __args__ = dict()
@@ -352,7 +352,7 @@ def get_fleet_resource_output(fleet_id: Optional[pulumi.Input[str]] = None,
352
352
  """
353
353
  This data source provides details about a specific Fleet Resource resource in Oracle Cloud Infrastructure Fleet Apps Management service.
354
354
 
355
- Gets a FleetResource by identifier
355
+ Gets a Fleet Resource by identifier.
356
356
 
357
357
  ## Example Usage
358
358
 
@@ -365,7 +365,7 @@ def get_fleet_resource_output(fleet_id: Optional[pulumi.Input[str]] = None,
365
365
  ```
366
366
 
367
367
 
368
- :param str fleet_id: unique Fleet identifier
368
+ :param str fleet_id: Unique Fleet identifier.
369
369
  :param str fleet_resource_id: unique FleetResource identifier
370
370
  """
371
371
  __args__ = dict()
@@ -137,7 +137,7 @@ def get_fleet_resources(display_name: Optional[str] = None,
137
137
  """
138
138
  This data source provides the list of Fleet Resources in Oracle Cloud Infrastructure Fleet Apps Management service.
139
139
 
140
- Returns a list of FleetResources.
140
+ List resources for a fleet in Fleet Application Management.
141
141
 
142
142
  ## Example Usage
143
143
 
@@ -155,10 +155,10 @@ def get_fleet_resources(display_name: Optional[str] = None,
155
155
 
156
156
 
157
157
  :param str display_name: A filter to return only resources that match the entire display name given.
158
- :param str fleet_id: unique Fleet identifier
159
- :param str fleet_resource_type: A filter to return resources that match the Type
160
- :param str id: unique FleetResource identifier
161
- :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
158
+ :param str fleet_id: Unique Fleet identifier.
159
+ :param str fleet_resource_type: A filter to return only resources whose resourceType matches the given resourceType.
160
+ :param str id: A filter to return only resources whose identifier matches the given identifier.
161
+ :param str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
162
162
  :param str tenancy_id: Resource Tenancy Id
163
163
  """
164
164
  __args__ = dict()
@@ -192,7 +192,7 @@ def get_fleet_resources_output(display_name: Optional[pulumi.Input[Optional[str]
192
192
  """
193
193
  This data source provides the list of Fleet Resources in Oracle Cloud Infrastructure Fleet Apps Management service.
194
194
 
195
- Returns a list of FleetResources.
195
+ List resources for a fleet in Fleet Application Management.
196
196
 
197
197
  ## Example Usage
198
198
 
@@ -210,10 +210,10 @@ def get_fleet_resources_output(display_name: Optional[pulumi.Input[Optional[str]
210
210
 
211
211
 
212
212
  :param str display_name: A filter to return only resources that match the entire display name given.
213
- :param str fleet_id: unique Fleet identifier
214
- :param str fleet_resource_type: A filter to return resources that match the Type
215
- :param str id: unique FleetResource identifier
216
- :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
213
+ :param str fleet_id: Unique Fleet identifier.
214
+ :param str fleet_resource_type: A filter to return only resources whose resourceType matches the given resourceType.
215
+ :param str id: A filter to return only resources whose identifier matches the given identifier.
216
+ :param str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
217
217
  :param str tenancy_id: Resource Tenancy Id
218
218
  """
219
219
  __args__ = dict()
@@ -139,7 +139,7 @@ def get_fleet_targets(display_name: Optional[str] = None,
139
139
  """
140
140
  This data source provides the list of Fleet Targets in Oracle Cloud Infrastructure Fleet Apps Management service.
141
141
 
142
- Returns a list of FleetTargets.
142
+ Returns the list of all confirmed targets within a fleet.
143
143
 
144
144
  ## Example Usage
145
145
 
@@ -156,9 +156,9 @@ def get_fleet_targets(display_name: Optional[str] = None,
156
156
 
157
157
 
158
158
  :param str display_name: A filter to return only resources that match the entire display name given.
159
- :param str fleet_id: unique Fleet identifier
160
- :param str product: Product Name
161
- :param str resource_display_name: Resource Display Name
159
+ :param str fleet_id: Unique Fleet identifier.
160
+ :param str product: Product Name.
161
+ :param str resource_display_name: Resource Display Name.
162
162
  :param str resource_id: Resource Identifier
163
163
  """
164
164
  __args__ = dict()
@@ -190,7 +190,7 @@ def get_fleet_targets_output(display_name: Optional[pulumi.Input[Optional[str]]]
190
190
  """
191
191
  This data source provides the list of Fleet Targets in Oracle Cloud Infrastructure Fleet Apps Management service.
192
192
 
193
- Returns a list of FleetTargets.
193
+ Returns the list of all confirmed targets within a fleet.
194
194
 
195
195
  ## Example Usage
196
196
 
@@ -207,9 +207,9 @@ def get_fleet_targets_output(display_name: Optional[pulumi.Input[Optional[str]]]
207
207
 
208
208
 
209
209
  :param str display_name: A filter to return only resources that match the entire display name given.
210
- :param str fleet_id: unique Fleet identifier
211
- :param str product: Product Name
212
- :param str resource_display_name: Resource Display Name
210
+ :param str fleet_id: Unique Fleet identifier.
211
+ :param str product: Product Name.
212
+ :param str resource_display_name: Resource Display Name.
213
213
  :param str resource_id: Resource Identifier
214
214
  """
215
215
  __args__ = dict()
@@ -64,7 +64,7 @@ class GetFleetsResult:
64
64
  @pulumi.getter(name="applicationType")
65
65
  def application_type(self) -> Optional[str]:
66
66
  """
67
- Application Type associated with the Fleet.Applicable for ENVIRONMENT fleet types.
67
+ Product stack associated with the Fleet. Applicable for ENVIRONMENT fleet types.
68
68
  """
69
69
  return pulumi.get(self, "application_type")
70
70
 
@@ -72,7 +72,7 @@ class GetFleetsResult:
72
72
  @pulumi.getter(name="compartmentId")
73
73
  def compartment_id(self) -> Optional[str]:
74
74
  """
75
- Please provide the root compartmentId (TenancyId).
75
+ Tenancy Id (Root Compartment Id)for which the rule is created.
76
76
  """
77
77
  return pulumi.get(self, "compartment_id")
78
78
 
@@ -88,7 +88,7 @@ class GetFleetsResult:
88
88
  @pulumi.getter(name="environmentType")
89
89
  def environment_type(self) -> Optional[str]:
90
90
  """
91
- Environment Type associated with the Fleet.Applicable for ENVIRONMENT fleet types.
91
+ Environment Type associated with the Fleet. Applicable for ENVIRONMENT fleet types.
92
92
  """
93
93
  return pulumi.get(self, "environment_type")
94
94
 
@@ -109,7 +109,7 @@ class GetFleetsResult:
109
109
  @pulumi.getter(name="fleetType")
110
110
  def fleet_type(self) -> Optional[str]:
111
111
  """
112
- Type of the Fleet.
112
+ Type of the Fleet. PRODUCT - A fleet of product-specific resources for a product type. ENVIRONMENT - A fleet of environment-specific resources for a product stack. GROUP - A fleet of a fleet of either environment or product fleets. GENERIC - A fleet of resources selected dynamically or manually for reporting purposes
113
113
  """
114
114
  return pulumi.get(self, "fleet_type")
115
115
 
@@ -185,14 +185,14 @@ def get_fleets(application_type: Optional[str] = None,
185
185
  ```
186
186
 
187
187
 
188
- :param str application_type: A filter to return only resources that match the Application Type given.
188
+ :param str application_type: A filter to return resources that match the Application Type/Product Stack given..
189
189
  :param str compartment_id: The ID of the compartment in which to list resources.
190
190
  :param str display_name: A filter to return only resources that match the entire display name given.
191
- :param str environment_type: A filter to return only resources that match the Environment Type given.
192
- :param str fleet_type: A filter to return only resources their fleetType matches the given fleetType.
193
- :param str id: unique Fleet identifier
194
- :param str product: A filter to return only resources that match the Product Type given.
195
- :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
191
+ :param str environment_type: A filter to return resources that match the Environment Type given.
192
+ :param str fleet_type: A filter to return fleets whose fleetType matches the given fleetType.
193
+ :param str id: A filter to return fleets whose id matches the given Fleet identifier
194
+ :param str product: A filter to return resources that match the Product given.
195
+ :param str state: A filter to return fleets whose lifecycleState matches the given lifecycleState.
196
196
  """
197
197
  __args__ = dict()
198
198
  __args__['applicationType'] = application_type
@@ -250,14 +250,14 @@ def get_fleets_output(application_type: Optional[pulumi.Input[Optional[str]]] =
250
250
  ```
251
251
 
252
252
 
253
- :param str application_type: A filter to return only resources that match the Application Type given.
253
+ :param str application_type: A filter to return resources that match the Application Type/Product Stack given..
254
254
  :param str compartment_id: The ID of the compartment in which to list resources.
255
255
  :param str display_name: A filter to return only resources that match the entire display name given.
256
- :param str environment_type: A filter to return only resources that match the Environment Type given.
257
- :param str fleet_type: A filter to return only resources their fleetType matches the given fleetType.
258
- :param str id: unique Fleet identifier
259
- :param str product: A filter to return only resources that match the Product Type given.
260
- :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
256
+ :param str environment_type: A filter to return resources that match the Environment Type given.
257
+ :param str fleet_type: A filter to return fleets whose fleetType matches the given fleetType.
258
+ :param str id: A filter to return fleets whose id matches the given Fleet identifier
259
+ :param str product: A filter to return resources that match the Product given.
260
+ :param str state: A filter to return fleets whose lifecycleState matches the given lifecycleState.
261
261
  """
262
262
  __args__ = dict()
263
263
  __args__['applicationType'] = application_type
@@ -127,7 +127,7 @@ class GetInventoryResourcesResult:
127
127
  @pulumi.getter(name="resourceCompartmentId")
128
128
  def resource_compartment_id(self) -> str:
129
129
  """
130
- Compartment Id of the resource
130
+ Compartment Id of the resource.
131
131
  """
132
132
  return pulumi.get(self, "resource_compartment_id")
133
133
 
@@ -135,7 +135,7 @@ class GetInventoryResourcesResult:
135
135
  @pulumi.getter(name="resourceRegion")
136
136
  def resource_region(self) -> Optional[str]:
137
137
  """
138
- Region the resource belongs to
138
+ The region the resource belongs to.
139
139
  """
140
140
  return pulumi.get(self, "resource_region")
141
141
 
@@ -202,13 +202,13 @@ def get_inventory_resources(compartment_id: Optional[str] = None,
202
202
  ```
203
203
 
204
204
 
205
- :param str compartment_id: The ID of the compartment in which to list resources.
206
- :param Sequence[str] defined_tag_equals: A list of tag filters to apply. Only resources with a defined tag matching the value will be returned. Each item in the list has the format "{namespace}.{tagName}={value}". All inputs are case-insensitive. Multiple values for the same key (i.e. same namespace and tag name) are interpreted as "OR". Values for different keys (i.e. different namespaces, different tag names, or both) are interpreted as "AND".
205
+ :param str compartment_id: A filter to return only resources whose base Compartment ID(TenancyId) matches the given base Compartment ID.
206
+ :param Sequence[str] defined_tag_equals: A list of tag filters to apply. Only resources with a defined tag matching the value will be returned. Each item in the list has the format "{namespace}.{tagName}={value}". All inputs are case-insensitive. Multiple values for the same key (i.e. same namespace and tag name) are interpreted as "OR". Values for different keys (i.e. different namespaces, different tag names, or both) are interpreted as "AND". Example: Identification.Development=Yes
207
207
  :param str display_name: A filter to return only resources that match the entire display name given.
208
208
  :param Sequence[str] freeform_tag_equals: A list of tag filters to apply. Only resources with a freeform tag matching the value will be returned. The key for each tag is "{tagName}.{value}". All inputs are case-insensitive. Multiple values for the same tag name are interpreted as "OR". Values for different tag names are interpreted as "AND".
209
- :param Sequence[str] inventory_properties: A list of inventory properties filters to apply. The key for each inventory property and value for each resource type is "{resourceType}.{inventoryProperty}={value}".
210
- :param str matching_criteria: Fetch resources matching matching ANY or ALL criteria passed as params in "tags" and "inventoryProperties"
211
- :param str resource_compartment_id: Resource Compartment ID
209
+ :param Sequence[str] inventory_properties: A list of inventory properties filters to apply. The key for each inventory property and value for each resource type is "{resourceType}.{inventoryProperty}={value}". Example: Instance.displayName=TEST_INSTANCE
210
+ :param str matching_criteria: Fetch resources matching ANY or ALL criteria passed as params in "tags" and "inventoryProperties". Example: matchingCriteria=ANY
211
+ :param str resource_compartment_id: A filter to return only resources whose resource Compartment ID matches the given resource Compartment ID.
212
212
  :param str resource_region: Resource Region
213
213
  :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
214
214
  """
@@ -273,13 +273,13 @@ def get_inventory_resources_output(compartment_id: Optional[pulumi.Input[str]] =
273
273
  ```
274
274
 
275
275
 
276
- :param str compartment_id: The ID of the compartment in which to list resources.
277
- :param Sequence[str] defined_tag_equals: A list of tag filters to apply. Only resources with a defined tag matching the value will be returned. Each item in the list has the format "{namespace}.{tagName}={value}". All inputs are case-insensitive. Multiple values for the same key (i.e. same namespace and tag name) are interpreted as "OR". Values for different keys (i.e. different namespaces, different tag names, or both) are interpreted as "AND".
276
+ :param str compartment_id: A filter to return only resources whose base Compartment ID(TenancyId) matches the given base Compartment ID.
277
+ :param Sequence[str] defined_tag_equals: A list of tag filters to apply. Only resources with a defined tag matching the value will be returned. Each item in the list has the format "{namespace}.{tagName}={value}". All inputs are case-insensitive. Multiple values for the same key (i.e. same namespace and tag name) are interpreted as "OR". Values for different keys (i.e. different namespaces, different tag names, or both) are interpreted as "AND". Example: Identification.Development=Yes
278
278
  :param str display_name: A filter to return only resources that match the entire display name given.
279
279
  :param Sequence[str] freeform_tag_equals: A list of tag filters to apply. Only resources with a freeform tag matching the value will be returned. The key for each tag is "{tagName}.{value}". All inputs are case-insensitive. Multiple values for the same tag name are interpreted as "OR". Values for different tag names are interpreted as "AND".
280
- :param Sequence[str] inventory_properties: A list of inventory properties filters to apply. The key for each inventory property and value for each resource type is "{resourceType}.{inventoryProperty}={value}".
281
- :param str matching_criteria: Fetch resources matching matching ANY or ALL criteria passed as params in "tags" and "inventoryProperties"
282
- :param str resource_compartment_id: Resource Compartment ID
280
+ :param Sequence[str] inventory_properties: A list of inventory properties filters to apply. The key for each inventory property and value for each resource type is "{resourceType}.{inventoryProperty}={value}". Example: Instance.displayName=TEST_INSTANCE
281
+ :param str matching_criteria: Fetch resources matching ANY or ALL criteria passed as params in "tags" and "inventoryProperties". Example: matchingCriteria=ANY
282
+ :param str resource_compartment_id: A filter to return only resources whose resource Compartment ID matches the given resource Compartment ID.
283
283
  :param str resource_region: Resource Region
284
284
  :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
285
285
  """
@@ -124,7 +124,7 @@ class GetMaintenanceWindowResult:
124
124
  @pulumi.getter
125
125
  def duration(self) -> str:
126
126
  """
127
- Duration if schedule type is Custom
127
+ Duration of the maintenance window. Specify how long the maintenance window remains open.
128
128
  """
129
129
  return pulumi.get(self, "duration")
130
130
 
@@ -148,7 +148,7 @@ class GetMaintenanceWindowResult:
148
148
  @pulumi.getter(name="isOutage")
149
149
  def is_outage(self) -> bool:
150
150
  """
151
- Does the maintenenace window cause outage?
151
+ Does the maintenenace window cause outage? An outage indicates whether a maintenance window can consider operations that require downtime. It means a period when the application is not accessible.
152
152
  """
153
153
  return pulumi.get(self, "is_outage")
154
154
 
@@ -156,7 +156,7 @@ class GetMaintenanceWindowResult:
156
156
  @pulumi.getter(name="isRecurring")
157
157
  def is_recurring(self) -> bool:
158
158
  """
159
- Is this is a recurring maintenance window
159
+ Is this a recurring maintenance window?
160
160
  """
161
161
  return pulumi.get(self, "is_recurring")
162
162
 
@@ -185,7 +185,7 @@ class GetMaintenanceWindowResult:
185
185
  @pulumi.getter
186
186
  def recurrences(self) -> str:
187
187
  """
188
- Recurrence rule specification if recurring
188
+ Recurrence rule specification if maintenance window recurring. Specify the frequency of running the maintenance window.
189
189
  """
190
190
  return pulumi.get(self, "recurrences")
191
191
 
@@ -217,7 +217,7 @@ class GetMaintenanceWindowResult:
217
217
  @pulumi.getter(name="taskInitiationCutoff")
218
218
  def task_initiation_cutoff(self) -> int:
219
219
  """
220
- Task initiation cutoff
220
+ Task initiation cutoff time for the maintenance window.
221
221
  """
222
222
  return pulumi.get(self, "task_initiation_cutoff")
223
223
 
@@ -233,7 +233,7 @@ class GetMaintenanceWindowResult:
233
233
  @pulumi.getter(name="timeScheduleStart")
234
234
  def time_schedule_start(self) -> str:
235
235
  """
236
- Start time of schedule
236
+ Specify the date and time of the day that the maintenance window starts.
237
237
  """
238
238
  return pulumi.get(self, "time_schedule_start")
239
239
 
@@ -279,7 +279,7 @@ def get_maintenance_window(maintenance_window_id: Optional[str] = None,
279
279
  """
280
280
  This data source provides details about a specific Maintenance Window resource in Oracle Cloud Infrastructure Fleet Apps Management service.
281
281
 
282
- Gets a MaintenanceWindow by identifier
282
+ Get the details for a maintenance window in Fleet Application Management.
283
283
 
284
284
  ## Example Usage
285
285
 
@@ -324,7 +324,7 @@ def get_maintenance_window_output(maintenance_window_id: Optional[pulumi.Input[s
324
324
  """
325
325
  This data source provides details about a specific Maintenance Window resource in Oracle Cloud Infrastructure Fleet Apps Management service.
326
326
 
327
- Gets a MaintenanceWindow by identifier
327
+ Get the details for a maintenance window in Fleet Application Management.
328
328
 
329
329
  ## Example Usage
330
330
 
@@ -28,7 +28,7 @@ class GetMaintenanceWindowsResult:
28
28
  """
29
29
  A collection of values returned by getMaintenanceWindows.
30
30
  """
31
- def __init__(__self__, compartment_id=None, display_name=None, filters=None, id=None, maintenance_window_collections=None, state=None):
31
+ def __init__(__self__, compartment_id=None, display_name=None, filters=None, id=None, maintenance_window_collections=None, state=None, time_schedule_start_greater_than_or_equal_to=None):
32
32
  if compartment_id and not isinstance(compartment_id, str):
33
33
  raise TypeError("Expected argument 'compartment_id' to be a str")
34
34
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -47,6 +47,9 @@ class GetMaintenanceWindowsResult:
47
47
  if state and not isinstance(state, str):
48
48
  raise TypeError("Expected argument 'state' to be a str")
49
49
  pulumi.set(__self__, "state", state)
50
+ if time_schedule_start_greater_than_or_equal_to and not isinstance(time_schedule_start_greater_than_or_equal_to, str):
51
+ raise TypeError("Expected argument 'time_schedule_start_greater_than_or_equal_to' to be a str")
52
+ pulumi.set(__self__, "time_schedule_start_greater_than_or_equal_to", time_schedule_start_greater_than_or_equal_to)
50
53
 
51
54
  @property
52
55
  @pulumi.getter(name="compartmentId")
@@ -93,6 +96,11 @@ class GetMaintenanceWindowsResult:
93
96
  """
94
97
  return pulumi.get(self, "state")
95
98
 
99
+ @property
100
+ @pulumi.getter(name="timeScheduleStartGreaterThanOrEqualTo")
101
+ def time_schedule_start_greater_than_or_equal_to(self) -> Optional[str]:
102
+ return pulumi.get(self, "time_schedule_start_greater_than_or_equal_to")
103
+
96
104
 
97
105
  class AwaitableGetMaintenanceWindowsResult(GetMaintenanceWindowsResult):
98
106
  # pylint: disable=using-constant-test
@@ -105,7 +113,8 @@ class AwaitableGetMaintenanceWindowsResult(GetMaintenanceWindowsResult):
105
113
  filters=self.filters,
106
114
  id=self.id,
107
115
  maintenance_window_collections=self.maintenance_window_collections,
108
- state=self.state)
116
+ state=self.state,
117
+ time_schedule_start_greater_than_or_equal_to=self.time_schedule_start_greater_than_or_equal_to)
109
118
 
110
119
 
111
120
  def get_maintenance_windows(compartment_id: Optional[str] = None,
@@ -113,11 +122,12 @@ def get_maintenance_windows(compartment_id: Optional[str] = None,
113
122
  filters: Optional[Sequence[Union['GetMaintenanceWindowsFilterArgs', 'GetMaintenanceWindowsFilterArgsDict']]] = None,
114
123
  id: Optional[str] = None,
115
124
  state: Optional[str] = None,
125
+ time_schedule_start_greater_than_or_equal_to: Optional[str] = None,
116
126
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMaintenanceWindowsResult:
117
127
  """
118
128
  This data source provides the list of Maintenance Windows in Oracle Cloud Infrastructure Fleet Apps Management service.
119
129
 
120
- Returns a list of MaintenanceWindows in the specified Tenancy.
130
+ List maintenance windows for a specified tenancy in Fleet Application Management.
121
131
 
122
132
  ## Example Usage
123
133
 
@@ -128,14 +138,16 @@ def get_maintenance_windows(compartment_id: Optional[str] = None,
128
138
  test_maintenance_windows = oci.FleetAppsManagement.get_maintenance_windows(compartment_id=compartment_id,
129
139
  display_name=maintenance_window_display_name,
130
140
  id=maintenance_window_id,
131
- state=maintenance_window_state)
141
+ state=maintenance_window_state,
142
+ time_schedule_start_greater_than_or_equal_to=maintenance_window_time_schedule_start_greater_than_or_equal_to)
132
143
  ```
133
144
 
134
145
 
135
146
  :param str compartment_id: The ID of the compartment in which to list resources.
136
147
  :param str display_name: A filter to return only resources that match the entire display name given.
137
- :param str id: unique MaintenanceWindow identifier
138
- :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
148
+ :param str id: A filter to return only the Maintenance Windows whose identifier matches the given identifier.
149
+ :param str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
150
+ :param str time_schedule_start_greater_than_or_equal_to: A filter to return only resources whose timeScheduleStart is greater than or equal to the provided date and time.
139
151
  """
140
152
  __args__ = dict()
141
153
  __args__['compartmentId'] = compartment_id
@@ -143,6 +155,7 @@ def get_maintenance_windows(compartment_id: Optional[str] = None,
143
155
  __args__['filters'] = filters
144
156
  __args__['id'] = id
145
157
  __args__['state'] = state
158
+ __args__['timeScheduleStartGreaterThanOrEqualTo'] = time_schedule_start_greater_than_or_equal_to
146
159
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
147
160
  __ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getMaintenanceWindows:getMaintenanceWindows', __args__, opts=opts, typ=GetMaintenanceWindowsResult).value
148
161
 
@@ -152,17 +165,19 @@ def get_maintenance_windows(compartment_id: Optional[str] = None,
152
165
  filters=pulumi.get(__ret__, 'filters'),
153
166
  id=pulumi.get(__ret__, 'id'),
154
167
  maintenance_window_collections=pulumi.get(__ret__, 'maintenance_window_collections'),
155
- state=pulumi.get(__ret__, 'state'))
168
+ state=pulumi.get(__ret__, 'state'),
169
+ time_schedule_start_greater_than_or_equal_to=pulumi.get(__ret__, 'time_schedule_start_greater_than_or_equal_to'))
156
170
  def get_maintenance_windows_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
157
171
  display_name: Optional[pulumi.Input[Optional[str]]] = None,
158
172
  filters: Optional[pulumi.Input[Optional[Sequence[Union['GetMaintenanceWindowsFilterArgs', 'GetMaintenanceWindowsFilterArgsDict']]]]] = None,
159
173
  id: Optional[pulumi.Input[Optional[str]]] = None,
160
174
  state: Optional[pulumi.Input[Optional[str]]] = None,
175
+ time_schedule_start_greater_than_or_equal_to: Optional[pulumi.Input[Optional[str]]] = None,
161
176
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMaintenanceWindowsResult]:
162
177
  """
163
178
  This data source provides the list of Maintenance Windows in Oracle Cloud Infrastructure Fleet Apps Management service.
164
179
 
165
- Returns a list of MaintenanceWindows in the specified Tenancy.
180
+ List maintenance windows for a specified tenancy in Fleet Application Management.
166
181
 
167
182
  ## Example Usage
168
183
 
@@ -173,14 +188,16 @@ def get_maintenance_windows_output(compartment_id: Optional[pulumi.Input[Optiona
173
188
  test_maintenance_windows = oci.FleetAppsManagement.get_maintenance_windows(compartment_id=compartment_id,
174
189
  display_name=maintenance_window_display_name,
175
190
  id=maintenance_window_id,
176
- state=maintenance_window_state)
191
+ state=maintenance_window_state,
192
+ time_schedule_start_greater_than_or_equal_to=maintenance_window_time_schedule_start_greater_than_or_equal_to)
177
193
  ```
178
194
 
179
195
 
180
196
  :param str compartment_id: The ID of the compartment in which to list resources.
181
197
  :param str display_name: A filter to return only resources that match the entire display name given.
182
- :param str id: unique MaintenanceWindow identifier
183
- :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
198
+ :param str id: A filter to return only the Maintenance Windows whose identifier matches the given identifier.
199
+ :param str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
200
+ :param str time_schedule_start_greater_than_or_equal_to: A filter to return only resources whose timeScheduleStart is greater than or equal to the provided date and time.
184
201
  """
185
202
  __args__ = dict()
186
203
  __args__['compartmentId'] = compartment_id
@@ -188,6 +205,7 @@ def get_maintenance_windows_output(compartment_id: Optional[pulumi.Input[Optiona
188
205
  __args__['filters'] = filters
189
206
  __args__['id'] = id
190
207
  __args__['state'] = state
208
+ __args__['timeScheduleStartGreaterThanOrEqualTo'] = time_schedule_start_greater_than_or_equal_to
191
209
  opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
192
210
  __ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getMaintenanceWindows:getMaintenanceWindows', __args__, opts=opts, typ=GetMaintenanceWindowsResult)
193
211
  return __ret__.apply(lambda __response__: GetMaintenanceWindowsResult(
@@ -196,4 +214,5 @@ def get_maintenance_windows_output(compartment_id: Optional[pulumi.Input[Optiona
196
214
  filters=pulumi.get(__response__, 'filters'),
197
215
  id=pulumi.get(__response__, 'id'),
198
216
  maintenance_window_collections=pulumi.get(__response__, 'maintenance_window_collections'),
199
- state=pulumi.get(__response__, 'state')))
217
+ state=pulumi.get(__response__, 'state'),
218
+ time_schedule_start_greater_than_or_equal_to=pulumi.get(__response__, 'time_schedule_start_greater_than_or_equal_to')))