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
@@ -28,7 +28,7 @@ class GetSchedulerDefinitionsResult:
28
28
  """
29
29
  A collection of values returned by getSchedulerDefinitions.
30
30
  """
31
- def __init__(__self__, compartment_id=None, display_name=None, filters=None, fleet_id=None, id=None, maintenance_window_id=None, product=None, scheduler_definition_collections=None, state=None):
31
+ def __init__(__self__, compartment_id=None, display_name=None, filters=None, fleet_id=None, id=None, maintenance_window_id=None, product=None, runbook_id=None, scheduler_definition_collections=None, state=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)
@@ -50,6 +50,9 @@ class GetSchedulerDefinitionsResult:
50
50
  if product and not isinstance(product, str):
51
51
  raise TypeError("Expected argument 'product' to be a str")
52
52
  pulumi.set(__self__, "product", product)
53
+ if runbook_id and not isinstance(runbook_id, str):
54
+ raise TypeError("Expected argument 'runbook_id' to be a str")
55
+ pulumi.set(__self__, "runbook_id", runbook_id)
53
56
  if scheduler_definition_collections and not isinstance(scheduler_definition_collections, list):
54
57
  raise TypeError("Expected argument 'scheduler_definition_collections' to be a list")
55
58
  pulumi.set(__self__, "scheduler_definition_collections", scheduler_definition_collections)
@@ -107,6 +110,14 @@ class GetSchedulerDefinitionsResult:
107
110
  """
108
111
  return pulumi.get(self, "product")
109
112
 
113
+ @property
114
+ @pulumi.getter(name="runbookId")
115
+ def runbook_id(self) -> Optional[str]:
116
+ """
117
+ ID of the runbook
118
+ """
119
+ return pulumi.get(self, "runbook_id")
120
+
110
121
  @property
111
122
  @pulumi.getter(name="schedulerDefinitionCollections")
112
123
  def scheduler_definition_collections(self) -> Sequence['outputs.GetSchedulerDefinitionsSchedulerDefinitionCollectionResult']:
@@ -137,6 +148,7 @@ class AwaitableGetSchedulerDefinitionsResult(GetSchedulerDefinitionsResult):
137
148
  id=self.id,
138
149
  maintenance_window_id=self.maintenance_window_id,
139
150
  product=self.product,
151
+ runbook_id=self.runbook_id,
140
152
  scheduler_definition_collections=self.scheduler_definition_collections,
141
153
  state=self.state)
142
154
 
@@ -148,12 +160,13 @@ def get_scheduler_definitions(compartment_id: Optional[str] = None,
148
160
  id: Optional[str] = None,
149
161
  maintenance_window_id: Optional[str] = None,
150
162
  product: Optional[str] = None,
163
+ runbook_id: Optional[str] = None,
151
164
  state: Optional[str] = None,
152
165
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSchedulerDefinitionsResult:
153
166
  """
154
167
  This data source provides the list of Scheduler Definitions in Oracle Cloud Infrastructure Fleet Apps Management service.
155
168
 
156
- Returns a list of SchedulerDefinitions.
169
+ List all lifecycle management schedules in Fleet Application Management.
157
170
 
158
171
  ## Example Usage
159
172
 
@@ -167,6 +180,7 @@ def get_scheduler_definitions(compartment_id: Optional[str] = None,
167
180
  id=scheduler_definition_id,
168
181
  maintenance_window_id=test_maintenance_window["id"],
169
182
  product=scheduler_definition_product,
183
+ runbook_id=test_runbook["id"],
170
184
  state=scheduler_definition_state)
171
185
  ```
172
186
 
@@ -174,10 +188,11 @@ def get_scheduler_definitions(compartment_id: Optional[str] = None,
174
188
  :param str compartment_id: The ID of the compartment in which to list resources.
175
189
  :param str display_name: A filter to return only resources that match the entire display name given.
176
190
  :param str fleet_id: unique Fleet identifier
177
- :param str id: unique SchedulerDefinition identifier
178
- :param str maintenance_window_id: unique MaintenanceWindow identifier
179
- :param str product: A filter to return only Scheduler Definitions whose assocaited product matches the given product
180
- :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
191
+ :param str id: A filter to return only schedule definitions whose identifier matches the given identifier.
192
+ :param str maintenance_window_id: A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
193
+ :param str product: A filter to return only dchedule definitions whose assocaited product matches the given product
194
+ :param str runbook_id: A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
195
+ :param str state: A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
181
196
  """
182
197
  __args__ = dict()
183
198
  __args__['compartmentId'] = compartment_id
@@ -187,6 +202,7 @@ def get_scheduler_definitions(compartment_id: Optional[str] = None,
187
202
  __args__['id'] = id
188
203
  __args__['maintenanceWindowId'] = maintenance_window_id
189
204
  __args__['product'] = product
205
+ __args__['runbookId'] = runbook_id
190
206
  __args__['state'] = state
191
207
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
192
208
  __ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getSchedulerDefinitions:getSchedulerDefinitions', __args__, opts=opts, typ=GetSchedulerDefinitionsResult).value
@@ -199,6 +215,7 @@ def get_scheduler_definitions(compartment_id: Optional[str] = None,
199
215
  id=pulumi.get(__ret__, 'id'),
200
216
  maintenance_window_id=pulumi.get(__ret__, 'maintenance_window_id'),
201
217
  product=pulumi.get(__ret__, 'product'),
218
+ runbook_id=pulumi.get(__ret__, 'runbook_id'),
202
219
  scheduler_definition_collections=pulumi.get(__ret__, 'scheduler_definition_collections'),
203
220
  state=pulumi.get(__ret__, 'state'))
204
221
  def get_scheduler_definitions_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
@@ -208,12 +225,13 @@ def get_scheduler_definitions_output(compartment_id: Optional[pulumi.Input[Optio
208
225
  id: Optional[pulumi.Input[Optional[str]]] = None,
209
226
  maintenance_window_id: Optional[pulumi.Input[Optional[str]]] = None,
210
227
  product: Optional[pulumi.Input[Optional[str]]] = None,
228
+ runbook_id: Optional[pulumi.Input[Optional[str]]] = None,
211
229
  state: Optional[pulumi.Input[Optional[str]]] = None,
212
230
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSchedulerDefinitionsResult]:
213
231
  """
214
232
  This data source provides the list of Scheduler Definitions in Oracle Cloud Infrastructure Fleet Apps Management service.
215
233
 
216
- Returns a list of SchedulerDefinitions.
234
+ List all lifecycle management schedules in Fleet Application Management.
217
235
 
218
236
  ## Example Usage
219
237
 
@@ -227,6 +245,7 @@ def get_scheduler_definitions_output(compartment_id: Optional[pulumi.Input[Optio
227
245
  id=scheduler_definition_id,
228
246
  maintenance_window_id=test_maintenance_window["id"],
229
247
  product=scheduler_definition_product,
248
+ runbook_id=test_runbook["id"],
230
249
  state=scheduler_definition_state)
231
250
  ```
232
251
 
@@ -234,10 +253,11 @@ def get_scheduler_definitions_output(compartment_id: Optional[pulumi.Input[Optio
234
253
  :param str compartment_id: The ID of the compartment in which to list resources.
235
254
  :param str display_name: A filter to return only resources that match the entire display name given.
236
255
  :param str fleet_id: unique Fleet identifier
237
- :param str id: unique SchedulerDefinition identifier
238
- :param str maintenance_window_id: unique MaintenanceWindow identifier
239
- :param str product: A filter to return only Scheduler Definitions whose assocaited product matches the given product
240
- :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
256
+ :param str id: A filter to return only schedule definitions whose identifier matches the given identifier.
257
+ :param str maintenance_window_id: A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
258
+ :param str product: A filter to return only dchedule definitions whose assocaited product matches the given product
259
+ :param str runbook_id: A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
260
+ :param str state: A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
241
261
  """
242
262
  __args__ = dict()
243
263
  __args__['compartmentId'] = compartment_id
@@ -247,6 +267,7 @@ def get_scheduler_definitions_output(compartment_id: Optional[pulumi.Input[Optio
247
267
  __args__['id'] = id
248
268
  __args__['maintenanceWindowId'] = maintenance_window_id
249
269
  __args__['product'] = product
270
+ __args__['runbookId'] = runbook_id
250
271
  __args__['state'] = state
251
272
  opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
252
273
  __ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getSchedulerDefinitions:getSchedulerDefinitions', __args__, opts=opts, typ=GetSchedulerDefinitionsResult)
@@ -258,5 +279,6 @@ def get_scheduler_definitions_output(compartment_id: Optional[pulumi.Input[Optio
258
279
  id=pulumi.get(__response__, 'id'),
259
280
  maintenance_window_id=pulumi.get(__response__, 'maintenance_window_id'),
260
281
  product=pulumi.get(__response__, 'product'),
282
+ runbook_id=pulumi.get(__response__, 'runbook_id'),
261
283
  scheduler_definition_collections=pulumi.get(__response__, 'scheduler_definition_collections'),
262
284
  state=pulumi.get(__response__, 'state')))
@@ -0,0 +1,144 @@
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__ = [
20
+ 'GetSchedulerJobCountsResult',
21
+ 'AwaitableGetSchedulerJobCountsResult',
22
+ 'get_scheduler_job_counts',
23
+ 'get_scheduler_job_counts_output',
24
+ ]
25
+
26
+ @pulumi.output_type
27
+ class GetSchedulerJobCountsResult:
28
+ """
29
+ A collection of values returned by getSchedulerJobCounts.
30
+ """
31
+ def __init__(__self__, compartment_id=None, filters=None, id=None, scheduler_job_aggregation_collections=None):
32
+ if compartment_id and not isinstance(compartment_id, str):
33
+ raise TypeError("Expected argument 'compartment_id' to be a str")
34
+ pulumi.set(__self__, "compartment_id", compartment_id)
35
+ if filters and not isinstance(filters, list):
36
+ raise TypeError("Expected argument 'filters' to be a list")
37
+ pulumi.set(__self__, "filters", filters)
38
+ if id and not isinstance(id, str):
39
+ raise TypeError("Expected argument 'id' to be a str")
40
+ pulumi.set(__self__, "id", id)
41
+ if scheduler_job_aggregation_collections and not isinstance(scheduler_job_aggregation_collections, list):
42
+ raise TypeError("Expected argument 'scheduler_job_aggregation_collections' to be a list")
43
+ pulumi.set(__self__, "scheduler_job_aggregation_collections", scheduler_job_aggregation_collections)
44
+
45
+ @property
46
+ @pulumi.getter(name="compartmentId")
47
+ def compartment_id(self) -> Optional[str]:
48
+ return pulumi.get(self, "compartment_id")
49
+
50
+ @property
51
+ @pulumi.getter
52
+ def filters(self) -> Optional[Sequence['outputs.GetSchedulerJobCountsFilterResult']]:
53
+ return pulumi.get(self, "filters")
54
+
55
+ @property
56
+ @pulumi.getter
57
+ def id(self) -> str:
58
+ """
59
+ The provider-assigned unique ID for this managed resource.
60
+ """
61
+ return pulumi.get(self, "id")
62
+
63
+ @property
64
+ @pulumi.getter(name="schedulerJobAggregationCollections")
65
+ def scheduler_job_aggregation_collections(self) -> Sequence['outputs.GetSchedulerJobCountsSchedulerJobAggregationCollectionResult']:
66
+ """
67
+ The list of scheduler_job_aggregation_collection.
68
+ """
69
+ return pulumi.get(self, "scheduler_job_aggregation_collections")
70
+
71
+
72
+ class AwaitableGetSchedulerJobCountsResult(GetSchedulerJobCountsResult):
73
+ # pylint: disable=using-constant-test
74
+ def __await__(self):
75
+ if False:
76
+ yield self
77
+ return GetSchedulerJobCountsResult(
78
+ compartment_id=self.compartment_id,
79
+ filters=self.filters,
80
+ id=self.id,
81
+ scheduler_job_aggregation_collections=self.scheduler_job_aggregation_collections)
82
+
83
+
84
+ def get_scheduler_job_counts(compartment_id: Optional[str] = None,
85
+ filters: Optional[Sequence[Union['GetSchedulerJobCountsFilterArgs', 'GetSchedulerJobCountsFilterArgsDict']]] = None,
86
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSchedulerJobCountsResult:
87
+ """
88
+ This data source provides the list of Scheduler Job Counts in Oracle Cloud Infrastructure Fleet Apps Management service.
89
+
90
+ Retrieve aggregated summary information of Scheduler Jobs within a Tenancy.
91
+
92
+ ## Example Usage
93
+
94
+ ```python
95
+ import pulumi
96
+ import pulumi_oci as oci
97
+
98
+ test_scheduler_job_counts = oci.FleetAppsManagement.get_scheduler_job_counts(compartment_id=compartment_id)
99
+ ```
100
+
101
+
102
+ :param str compartment_id: The ID of the compartment in which to list resources.
103
+ """
104
+ __args__ = dict()
105
+ __args__['compartmentId'] = compartment_id
106
+ __args__['filters'] = filters
107
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
108
+ __ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getSchedulerJobCounts:getSchedulerJobCounts', __args__, opts=opts, typ=GetSchedulerJobCountsResult).value
109
+
110
+ return AwaitableGetSchedulerJobCountsResult(
111
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
112
+ filters=pulumi.get(__ret__, 'filters'),
113
+ id=pulumi.get(__ret__, 'id'),
114
+ scheduler_job_aggregation_collections=pulumi.get(__ret__, 'scheduler_job_aggregation_collections'))
115
+ def get_scheduler_job_counts_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
116
+ filters: Optional[pulumi.Input[Optional[Sequence[Union['GetSchedulerJobCountsFilterArgs', 'GetSchedulerJobCountsFilterArgsDict']]]]] = None,
117
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSchedulerJobCountsResult]:
118
+ """
119
+ This data source provides the list of Scheduler Job Counts in Oracle Cloud Infrastructure Fleet Apps Management service.
120
+
121
+ Retrieve aggregated summary information of Scheduler Jobs within a Tenancy.
122
+
123
+ ## Example Usage
124
+
125
+ ```python
126
+ import pulumi
127
+ import pulumi_oci as oci
128
+
129
+ test_scheduler_job_counts = oci.FleetAppsManagement.get_scheduler_job_counts(compartment_id=compartment_id)
130
+ ```
131
+
132
+
133
+ :param str compartment_id: The ID of the compartment in which to list resources.
134
+ """
135
+ __args__ = dict()
136
+ __args__['compartmentId'] = compartment_id
137
+ __args__['filters'] = filters
138
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
139
+ __ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getSchedulerJobCounts:getSchedulerJobCounts', __args__, opts=opts, typ=GetSchedulerJobCountsResult)
140
+ return __ret__.apply(lambda __response__: GetSchedulerJobCountsResult(
141
+ compartment_id=pulumi.get(__response__, 'compartment_id'),
142
+ filters=pulumi.get(__response__, 'filters'),
143
+ id=pulumi.get(__response__, 'id'),
144
+ scheduler_job_aggregation_collections=pulumi.get(__response__, 'scheduler_job_aggregation_collections')))
@@ -0,0 +1,245 @@
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__ = [
20
+ 'GetSchedulerJobJobActivityResourcesResult',
21
+ 'AwaitableGetSchedulerJobJobActivityResourcesResult',
22
+ 'get_scheduler_job_job_activity_resources',
23
+ 'get_scheduler_job_job_activity_resources_output',
24
+ ]
25
+
26
+ @pulumi.output_type
27
+ class GetSchedulerJobJobActivityResourcesResult:
28
+ """
29
+ A collection of values returned by getSchedulerJobJobActivityResources.
30
+ """
31
+ def __init__(__self__, filters=None, id=None, job_activity_id=None, resource_collections=None, resource_task_id=None, scheduler_job_id=None, sequence=None, step_name=None, target_name=None):
32
+ if filters and not isinstance(filters, list):
33
+ raise TypeError("Expected argument 'filters' to be a list")
34
+ pulumi.set(__self__, "filters", filters)
35
+ if id and not isinstance(id, str):
36
+ raise TypeError("Expected argument 'id' to be a str")
37
+ pulumi.set(__self__, "id", id)
38
+ if job_activity_id and not isinstance(job_activity_id, str):
39
+ raise TypeError("Expected argument 'job_activity_id' to be a str")
40
+ pulumi.set(__self__, "job_activity_id", job_activity_id)
41
+ if resource_collections and not isinstance(resource_collections, list):
42
+ raise TypeError("Expected argument 'resource_collections' to be a list")
43
+ pulumi.set(__self__, "resource_collections", resource_collections)
44
+ if resource_task_id and not isinstance(resource_task_id, str):
45
+ raise TypeError("Expected argument 'resource_task_id' to be a str")
46
+ pulumi.set(__self__, "resource_task_id", resource_task_id)
47
+ if scheduler_job_id and not isinstance(scheduler_job_id, str):
48
+ raise TypeError("Expected argument 'scheduler_job_id' to be a str")
49
+ pulumi.set(__self__, "scheduler_job_id", scheduler_job_id)
50
+ if sequence and not isinstance(sequence, str):
51
+ raise TypeError("Expected argument 'sequence' to be a str")
52
+ pulumi.set(__self__, "sequence", sequence)
53
+ if step_name and not isinstance(step_name, str):
54
+ raise TypeError("Expected argument 'step_name' to be a str")
55
+ pulumi.set(__self__, "step_name", step_name)
56
+ if target_name and not isinstance(target_name, str):
57
+ raise TypeError("Expected argument 'target_name' to be a str")
58
+ pulumi.set(__self__, "target_name", target_name)
59
+
60
+ @property
61
+ @pulumi.getter
62
+ def filters(self) -> Optional[Sequence['outputs.GetSchedulerJobJobActivityResourcesFilterResult']]:
63
+ return pulumi.get(self, "filters")
64
+
65
+ @property
66
+ @pulumi.getter
67
+ def id(self) -> str:
68
+ """
69
+ The provider-assigned unique ID for this managed resource.
70
+ """
71
+ return pulumi.get(self, "id")
72
+
73
+ @property
74
+ @pulumi.getter(name="jobActivityId")
75
+ def job_activity_id(self) -> str:
76
+ return pulumi.get(self, "job_activity_id")
77
+
78
+ @property
79
+ @pulumi.getter(name="resourceCollections")
80
+ def resource_collections(self) -> Sequence['outputs.GetSchedulerJobJobActivityResourcesResourceCollectionResult']:
81
+ """
82
+ The list of resource_collection.
83
+ """
84
+ return pulumi.get(self, "resource_collections")
85
+
86
+ @property
87
+ @pulumi.getter(name="resourceTaskId")
88
+ def resource_task_id(self) -> Optional[str]:
89
+ return pulumi.get(self, "resource_task_id")
90
+
91
+ @property
92
+ @pulumi.getter(name="schedulerJobId")
93
+ def scheduler_job_id(self) -> str:
94
+ return pulumi.get(self, "scheduler_job_id")
95
+
96
+ @property
97
+ @pulumi.getter
98
+ def sequence(self) -> Optional[str]:
99
+ """
100
+ The sequence of the Resource.
101
+ """
102
+ return pulumi.get(self, "sequence")
103
+
104
+ @property
105
+ @pulumi.getter(name="stepName")
106
+ def step_name(self) -> Optional[str]:
107
+ return pulumi.get(self, "step_name")
108
+
109
+ @property
110
+ @pulumi.getter(name="targetName")
111
+ def target_name(self) -> Optional[str]:
112
+ """
113
+ Target Name.
114
+ """
115
+ return pulumi.get(self, "target_name")
116
+
117
+
118
+ class AwaitableGetSchedulerJobJobActivityResourcesResult(GetSchedulerJobJobActivityResourcesResult):
119
+ # pylint: disable=using-constant-test
120
+ def __await__(self):
121
+ if False:
122
+ yield self
123
+ return GetSchedulerJobJobActivityResourcesResult(
124
+ filters=self.filters,
125
+ id=self.id,
126
+ job_activity_id=self.job_activity_id,
127
+ resource_collections=self.resource_collections,
128
+ resource_task_id=self.resource_task_id,
129
+ scheduler_job_id=self.scheduler_job_id,
130
+ sequence=self.sequence,
131
+ step_name=self.step_name,
132
+ target_name=self.target_name)
133
+
134
+
135
+ def get_scheduler_job_job_activity_resources(filters: Optional[Sequence[Union['GetSchedulerJobJobActivityResourcesFilterArgs', 'GetSchedulerJobJobActivityResourcesFilterArgsDict']]] = None,
136
+ job_activity_id: Optional[str] = None,
137
+ resource_task_id: Optional[str] = None,
138
+ scheduler_job_id: Optional[str] = None,
139
+ sequence: Optional[str] = None,
140
+ step_name: Optional[str] = None,
141
+ target_name: Optional[str] = None,
142
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSchedulerJobJobActivityResourcesResult:
143
+ """
144
+ This data source provides the list of Scheduler Job Job Activity Resources in Oracle Cloud Infrastructure Fleet Apps Management service.
145
+
146
+ Returns a list of resources for an Activity Execution.
147
+
148
+ ## Example Usage
149
+
150
+ ```python
151
+ import pulumi
152
+ import pulumi_oci as oci
153
+
154
+ test_scheduler_job_job_activity_resources = oci.FleetAppsManagement.get_scheduler_job_job_activity_resources(job_activity_id=test_job_activity["id"],
155
+ scheduler_job_id=test_job["id"],
156
+ resource_task_id=test_resource_task["id"],
157
+ sequence=scheduler_job_job_activity_resource_sequence,
158
+ step_name=scheduler_job_job_activity_resource_step_name,
159
+ target_name=test_target["name"])
160
+ ```
161
+
162
+
163
+ :param str job_activity_id: unique jobActivity identifier
164
+ :param str resource_task_id: Task Id
165
+ :param str scheduler_job_id: unique SchedulerJob identifier
166
+ :param str sequence: Task Order Sequence
167
+ :param str step_name: Unique step name
168
+ :param str target_name: Unique target name
169
+ """
170
+ __args__ = dict()
171
+ __args__['filters'] = filters
172
+ __args__['jobActivityId'] = job_activity_id
173
+ __args__['resourceTaskId'] = resource_task_id
174
+ __args__['schedulerJobId'] = scheduler_job_id
175
+ __args__['sequence'] = sequence
176
+ __args__['stepName'] = step_name
177
+ __args__['targetName'] = target_name
178
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
179
+ __ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getSchedulerJobJobActivityResources:getSchedulerJobJobActivityResources', __args__, opts=opts, typ=GetSchedulerJobJobActivityResourcesResult).value
180
+
181
+ return AwaitableGetSchedulerJobJobActivityResourcesResult(
182
+ filters=pulumi.get(__ret__, 'filters'),
183
+ id=pulumi.get(__ret__, 'id'),
184
+ job_activity_id=pulumi.get(__ret__, 'job_activity_id'),
185
+ resource_collections=pulumi.get(__ret__, 'resource_collections'),
186
+ resource_task_id=pulumi.get(__ret__, 'resource_task_id'),
187
+ scheduler_job_id=pulumi.get(__ret__, 'scheduler_job_id'),
188
+ sequence=pulumi.get(__ret__, 'sequence'),
189
+ step_name=pulumi.get(__ret__, 'step_name'),
190
+ target_name=pulumi.get(__ret__, 'target_name'))
191
+ def get_scheduler_job_job_activity_resources_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetSchedulerJobJobActivityResourcesFilterArgs', 'GetSchedulerJobJobActivityResourcesFilterArgsDict']]]]] = None,
192
+ job_activity_id: Optional[pulumi.Input[str]] = None,
193
+ resource_task_id: Optional[pulumi.Input[Optional[str]]] = None,
194
+ scheduler_job_id: Optional[pulumi.Input[str]] = None,
195
+ sequence: Optional[pulumi.Input[Optional[str]]] = None,
196
+ step_name: Optional[pulumi.Input[Optional[str]]] = None,
197
+ target_name: Optional[pulumi.Input[Optional[str]]] = None,
198
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSchedulerJobJobActivityResourcesResult]:
199
+ """
200
+ This data source provides the list of Scheduler Job Job Activity Resources in Oracle Cloud Infrastructure Fleet Apps Management service.
201
+
202
+ Returns a list of resources for an Activity Execution.
203
+
204
+ ## Example Usage
205
+
206
+ ```python
207
+ import pulumi
208
+ import pulumi_oci as oci
209
+
210
+ test_scheduler_job_job_activity_resources = oci.FleetAppsManagement.get_scheduler_job_job_activity_resources(job_activity_id=test_job_activity["id"],
211
+ scheduler_job_id=test_job["id"],
212
+ resource_task_id=test_resource_task["id"],
213
+ sequence=scheduler_job_job_activity_resource_sequence,
214
+ step_name=scheduler_job_job_activity_resource_step_name,
215
+ target_name=test_target["name"])
216
+ ```
217
+
218
+
219
+ :param str job_activity_id: unique jobActivity identifier
220
+ :param str resource_task_id: Task Id
221
+ :param str scheduler_job_id: unique SchedulerJob identifier
222
+ :param str sequence: Task Order Sequence
223
+ :param str step_name: Unique step name
224
+ :param str target_name: Unique target name
225
+ """
226
+ __args__ = dict()
227
+ __args__['filters'] = filters
228
+ __args__['jobActivityId'] = job_activity_id
229
+ __args__['resourceTaskId'] = resource_task_id
230
+ __args__['schedulerJobId'] = scheduler_job_id
231
+ __args__['sequence'] = sequence
232
+ __args__['stepName'] = step_name
233
+ __args__['targetName'] = target_name
234
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
235
+ __ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getSchedulerJobJobActivityResources:getSchedulerJobJobActivityResources', __args__, opts=opts, typ=GetSchedulerJobJobActivityResourcesResult)
236
+ return __ret__.apply(lambda __response__: GetSchedulerJobJobActivityResourcesResult(
237
+ filters=pulumi.get(__response__, 'filters'),
238
+ id=pulumi.get(__response__, 'id'),
239
+ job_activity_id=pulumi.get(__response__, 'job_activity_id'),
240
+ resource_collections=pulumi.get(__response__, 'resource_collections'),
241
+ resource_task_id=pulumi.get(__response__, 'resource_task_id'),
242
+ scheduler_job_id=pulumi.get(__response__, 'scheduler_job_id'),
243
+ sequence=pulumi.get(__response__, 'sequence'),
244
+ step_name=pulumi.get(__response__, 'step_name'),
245
+ target_name=pulumi.get(__response__, 'target_name')))