pulumi-oci 3.8.0a1758168665__py3-none-any.whl → 3.9.0a1758687119__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 (62) hide show
  1. pulumi_oci/__init__.py +24 -0
  2. pulumi_oci/database/__init__.py +1 -0
  3. pulumi_oci/database/_inputs.py +550 -0
  4. pulumi_oci/database/cloud_exadata_infrastructure.py +28 -0
  5. pulumi_oci/database/cloud_exadata_infrastructure_configure_exascale_management.py +1308 -0
  6. pulumi_oci/database/cloud_vm_cluster.py +77 -0
  7. pulumi_oci/database/get_cloud_exadata_infrastructure.py +15 -1
  8. pulumi_oci/database/get_cloud_vm_cluster.py +29 -1
  9. pulumi_oci/database/outputs.py +515 -0
  10. pulumi_oci/datasafe/_inputs.py +180 -0
  11. pulumi_oci/datasafe/audit_policy_management.py +7 -7
  12. pulumi_oci/datasafe/audit_trail_management.py +2 -0
  13. pulumi_oci/datasafe/discovery_jobs_result.py +40 -0
  14. pulumi_oci/datasafe/get_data_safe_configuration.py +2 -2
  15. pulumi_oci/datasafe/get_discovery_jobs_result.py +29 -1
  16. pulumi_oci/datasafe/get_discovery_jobs_results.py +23 -1
  17. pulumi_oci/datasafe/get_masking_reports.py +20 -1
  18. pulumi_oci/datasafe/get_security_assessment_finding.py +16 -1
  19. pulumi_oci/datasafe/get_security_assessment_findings.py +26 -3
  20. pulumi_oci/datasafe/get_sensitive_data_models_sensitive_column.py +30 -1
  21. pulumi_oci/datasafe/get_sensitive_data_models_sensitive_columns.py +44 -3
  22. pulumi_oci/datasafe/outputs.py +400 -2
  23. pulumi_oci/datasafe/sensitive_data_models_sensitive_column.py +58 -0
  24. pulumi_oci/jms/__init__.py +16 -0
  25. pulumi_oci/jms/_inputs.py +2068 -29
  26. pulumi_oci/jms/fleet.py +56 -0
  27. pulumi_oci/jms/get_fleet.py +29 -1
  28. pulumi_oci/jms/get_fleet_containers.py +289 -0
  29. pulumi_oci/jms/get_fleet_export_setting.py +16 -1
  30. pulumi_oci/jms/get_fleet_library_applications.py +280 -0
  31. pulumi_oci/jms/get_fleet_library_managed_instances.py +280 -0
  32. pulumi_oci/jms/get_fleet_summarize_library_inventory.py +211 -0
  33. pulumi_oci/jms/get_fleet_uncorrelated_package_applications.py +239 -0
  34. pulumi_oci/jms/get_fleet_uncorrelated_package_managed_instances.py +242 -0
  35. pulumi_oci/jms/get_fleet_uncorrelated_packages.py +242 -0
  36. pulumi_oci/jms/get_java_family.py +15 -1
  37. pulumi_oci/jms/get_jms_plugin.py +2 -2
  38. pulumi_oci/jms/get_jms_plugins.py +4 -4
  39. pulumi_oci/jms/get_task_schedule.py +262 -0
  40. pulumi_oci/jms/get_task_schedules.py +218 -0
  41. pulumi_oci/jms/get_utils_analyze_applications_configuration.py +153 -0
  42. pulumi_oci/jms/get_utils_java_migration_analysi.py +316 -0
  43. pulumi_oci/jms/get_utils_java_migration_analysis.py +177 -0
  44. pulumi_oci/jms/get_utils_performance_tuning_analysi.py +274 -0
  45. pulumi_oci/jms/get_utils_performance_tuning_analysis.py +196 -0
  46. pulumi_oci/jms/get_utils_subscription_acknowledgment_configuration.py +161 -0
  47. pulumi_oci/jms/jms_plugin.py +36 -15
  48. pulumi_oci/jms/outputs.py +8500 -3920
  49. pulumi_oci/jms/task_schedule.py +658 -0
  50. pulumi_oci/marketplace/__init__.py +2 -0
  51. pulumi_oci/marketplace/_inputs.py +49 -0
  52. pulumi_oci/marketplace/get_marketplace_metadata_public_keys.py +144 -0
  53. pulumi_oci/marketplace/marketplace_external_attested_metadata.py +298 -0
  54. pulumi_oci/marketplace/outputs.py +124 -0
  55. pulumi_oci/pulumi-plugin.json +1 -1
  56. pulumi_oci/redis/get_redis_cluster.py +29 -1
  57. pulumi_oci/redis/outputs.py +22 -0
  58. pulumi_oci/redis/redis_cluster.py +56 -0
  59. {pulumi_oci-3.8.0a1758168665.dist-info → pulumi_oci-3.9.0a1758687119.dist-info}/METADATA +1 -1
  60. {pulumi_oci-3.8.0a1758168665.dist-info → pulumi_oci-3.9.0a1758687119.dist-info}/RECORD +62 -43
  61. {pulumi_oci-3.8.0a1758168665.dist-info → pulumi_oci-3.9.0a1758687119.dist-info}/WHEEL +0 -0
  62. {pulumi_oci-3.8.0a1758168665.dist-info → pulumi_oci-3.9.0a1758687119.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,262 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins as _builtins
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
+
18
+ __all__ = [
19
+ 'GetTaskScheduleResult',
20
+ 'AwaitableGetTaskScheduleResult',
21
+ 'get_task_schedule',
22
+ 'get_task_schedule_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetTaskScheduleResult:
27
+ """
28
+ A collection of values returned by getTaskSchedule.
29
+ """
30
+ def __init__(__self__, created_by=None, execution_recurrences=None, fleet_id=None, id=None, name=None, state=None, task_details=None, task_schedule_id=None, time_created=None, time_last_run=None, time_last_updated=None, time_next_run=None):
31
+ if created_by and not isinstance(created_by, str):
32
+ raise TypeError("Expected argument 'created_by' to be a str")
33
+ pulumi.set(__self__, "created_by", created_by)
34
+ if execution_recurrences and not isinstance(execution_recurrences, str):
35
+ raise TypeError("Expected argument 'execution_recurrences' to be a str")
36
+ pulumi.set(__self__, "execution_recurrences", execution_recurrences)
37
+ if fleet_id and not isinstance(fleet_id, str):
38
+ raise TypeError("Expected argument 'fleet_id' to be a str")
39
+ pulumi.set(__self__, "fleet_id", fleet_id)
40
+ if id and not isinstance(id, str):
41
+ raise TypeError("Expected argument 'id' to be a str")
42
+ pulumi.set(__self__, "id", id)
43
+ if name and not isinstance(name, str):
44
+ raise TypeError("Expected argument 'name' to be a str")
45
+ pulumi.set(__self__, "name", name)
46
+ if state and not isinstance(state, str):
47
+ raise TypeError("Expected argument 'state' to be a str")
48
+ pulumi.set(__self__, "state", state)
49
+ if task_details and not isinstance(task_details, list):
50
+ raise TypeError("Expected argument 'task_details' to be a list")
51
+ pulumi.set(__self__, "task_details", task_details)
52
+ if task_schedule_id and not isinstance(task_schedule_id, str):
53
+ raise TypeError("Expected argument 'task_schedule_id' to be a str")
54
+ pulumi.set(__self__, "task_schedule_id", task_schedule_id)
55
+ if time_created and not isinstance(time_created, str):
56
+ raise TypeError("Expected argument 'time_created' to be a str")
57
+ pulumi.set(__self__, "time_created", time_created)
58
+ if time_last_run and not isinstance(time_last_run, str):
59
+ raise TypeError("Expected argument 'time_last_run' to be a str")
60
+ pulumi.set(__self__, "time_last_run", time_last_run)
61
+ if time_last_updated and not isinstance(time_last_updated, str):
62
+ raise TypeError("Expected argument 'time_last_updated' to be a str")
63
+ pulumi.set(__self__, "time_last_updated", time_last_updated)
64
+ if time_next_run and not isinstance(time_next_run, str):
65
+ raise TypeError("Expected argument 'time_next_run' to be a str")
66
+ pulumi.set(__self__, "time_next_run", time_next_run)
67
+
68
+ @_builtins.property
69
+ @pulumi.getter(name="createdBy")
70
+ def created_by(self) -> _builtins.str:
71
+ """
72
+ Name of the task creator.
73
+ """
74
+ return pulumi.get(self, "created_by")
75
+
76
+ @_builtins.property
77
+ @pulumi.getter(name="executionRecurrences")
78
+ def execution_recurrences(self) -> _builtins.str:
79
+ """
80
+ Recurrence specification for the task schedule execution (formatted according to [RFC-5545](https://icalendar.org/RFC-Specifications/iCalendar-RFC-5545/)). To run daily for 10 occurrences starts on September 2, 2024 09:00 EDT, it should be 'DTSTART;TZID=America/New_York:20240902T090000 RRULE:FREQ=DAILY;COUNT=10'. To run every 3 hours from 9:00 AM to 5:00 PM on August 5, 2024 EDT, it should be 'DTSTART;TZID=America/New_York:20240805T090000 RRULE:FREQ=HOURLY;INTERVAL=3;UNTIL=20240805T170000Z'.
81
+ """
82
+ return pulumi.get(self, "execution_recurrences")
83
+
84
+ @_builtins.property
85
+ @pulumi.getter(name="fleetId")
86
+ def fleet_id(self) -> Optional[_builtins.str]:
87
+ """
88
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
89
+ """
90
+ return pulumi.get(self, "fleet_id")
91
+
92
+ @_builtins.property
93
+ @pulumi.getter
94
+ def id(self) -> _builtins.str:
95
+ """
96
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to identify this task schedule.
97
+ """
98
+ return pulumi.get(self, "id")
99
+
100
+ @_builtins.property
101
+ @pulumi.getter
102
+ def name(self) -> _builtins.str:
103
+ """
104
+ The name of the task schedule.
105
+ """
106
+ return pulumi.get(self, "name")
107
+
108
+ @_builtins.property
109
+ @pulumi.getter
110
+ def state(self) -> _builtins.str:
111
+ """
112
+ All possible status of task schedule.
113
+ """
114
+ return pulumi.get(self, "state")
115
+
116
+ @_builtins.property
117
+ @pulumi.getter(name="taskDetails")
118
+ def task_details(self) -> Sequence['outputs.GetTaskScheduleTaskDetailResult']:
119
+ """
120
+ The minimum details of a task.
121
+ """
122
+ return pulumi.get(self, "task_details")
123
+
124
+ @_builtins.property
125
+ @pulumi.getter(name="taskScheduleId")
126
+ def task_schedule_id(self) -> _builtins.str:
127
+ return pulumi.get(self, "task_schedule_id")
128
+
129
+ @_builtins.property
130
+ @pulumi.getter(name="timeCreated")
131
+ def time_created(self) -> _builtins.str:
132
+ """
133
+ The date and time the task schedule was created (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
134
+ """
135
+ return pulumi.get(self, "time_created")
136
+
137
+ @_builtins.property
138
+ @pulumi.getter(name="timeLastRun")
139
+ def time_last_run(self) -> _builtins.str:
140
+ """
141
+ The date and time the task schedule ran last (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
142
+ """
143
+ return pulumi.get(self, "time_last_run")
144
+
145
+ @_builtins.property
146
+ @pulumi.getter(name="timeLastUpdated")
147
+ def time_last_updated(self) -> _builtins.str:
148
+ """
149
+ The date and time the task schedule was last updated (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
150
+ """
151
+ return pulumi.get(self, "time_last_updated")
152
+
153
+ @_builtins.property
154
+ @pulumi.getter(name="timeNextRun")
155
+ def time_next_run(self) -> _builtins.str:
156
+ """
157
+ The date and time the task schedule will run next (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
158
+ """
159
+ return pulumi.get(self, "time_next_run")
160
+
161
+
162
+ class AwaitableGetTaskScheduleResult(GetTaskScheduleResult):
163
+ # pylint: disable=using-constant-test
164
+ def __await__(self):
165
+ if False:
166
+ yield self
167
+ return GetTaskScheduleResult(
168
+ created_by=self.created_by,
169
+ execution_recurrences=self.execution_recurrences,
170
+ fleet_id=self.fleet_id,
171
+ id=self.id,
172
+ name=self.name,
173
+ state=self.state,
174
+ task_details=self.task_details,
175
+ task_schedule_id=self.task_schedule_id,
176
+ time_created=self.time_created,
177
+ time_last_run=self.time_last_run,
178
+ time_last_updated=self.time_last_updated,
179
+ time_next_run=self.time_next_run)
180
+
181
+
182
+ def get_task_schedule(fleet_id: Optional[_builtins.str] = None,
183
+ task_schedule_id: Optional[_builtins.str] = None,
184
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTaskScheduleResult:
185
+ """
186
+ This data source provides details about a specific Task Schedule resource in Oracle Cloud Infrastructure Jms service.
187
+
188
+ Returns a task schedule.
189
+
190
+ ## Example Usage
191
+
192
+ ```python
193
+ import pulumi
194
+ import pulumi_oci as oci
195
+
196
+ test_task_schedule = oci.Jms.get_task_schedule(task_schedule_id=test_task_schedule_oci_jms_task_schedule["id"],
197
+ fleet_id=test_fleet["id"])
198
+ ```
199
+
200
+
201
+ :param _builtins.str fleet_id: The ID of the Fleet.
202
+ :param _builtins.str task_schedule_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to identify this task schedule.
203
+ """
204
+ __args__ = dict()
205
+ __args__['fleetId'] = fleet_id
206
+ __args__['taskScheduleId'] = task_schedule_id
207
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
208
+ __ret__ = pulumi.runtime.invoke('oci:Jms/getTaskSchedule:getTaskSchedule', __args__, opts=opts, typ=GetTaskScheduleResult).value
209
+
210
+ return AwaitableGetTaskScheduleResult(
211
+ created_by=pulumi.get(__ret__, 'created_by'),
212
+ execution_recurrences=pulumi.get(__ret__, 'execution_recurrences'),
213
+ fleet_id=pulumi.get(__ret__, 'fleet_id'),
214
+ id=pulumi.get(__ret__, 'id'),
215
+ name=pulumi.get(__ret__, 'name'),
216
+ state=pulumi.get(__ret__, 'state'),
217
+ task_details=pulumi.get(__ret__, 'task_details'),
218
+ task_schedule_id=pulumi.get(__ret__, 'task_schedule_id'),
219
+ time_created=pulumi.get(__ret__, 'time_created'),
220
+ time_last_run=pulumi.get(__ret__, 'time_last_run'),
221
+ time_last_updated=pulumi.get(__ret__, 'time_last_updated'),
222
+ time_next_run=pulumi.get(__ret__, 'time_next_run'))
223
+ def get_task_schedule_output(fleet_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
224
+ task_schedule_id: Optional[pulumi.Input[_builtins.str]] = None,
225
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetTaskScheduleResult]:
226
+ """
227
+ This data source provides details about a specific Task Schedule resource in Oracle Cloud Infrastructure Jms service.
228
+
229
+ Returns a task schedule.
230
+
231
+ ## Example Usage
232
+
233
+ ```python
234
+ import pulumi
235
+ import pulumi_oci as oci
236
+
237
+ test_task_schedule = oci.Jms.get_task_schedule(task_schedule_id=test_task_schedule_oci_jms_task_schedule["id"],
238
+ fleet_id=test_fleet["id"])
239
+ ```
240
+
241
+
242
+ :param _builtins.str fleet_id: The ID of the Fleet.
243
+ :param _builtins.str task_schedule_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to identify this task schedule.
244
+ """
245
+ __args__ = dict()
246
+ __args__['fleetId'] = fleet_id
247
+ __args__['taskScheduleId'] = task_schedule_id
248
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
249
+ __ret__ = pulumi.runtime.invoke_output('oci:Jms/getTaskSchedule:getTaskSchedule', __args__, opts=opts, typ=GetTaskScheduleResult)
250
+ return __ret__.apply(lambda __response__: GetTaskScheduleResult(
251
+ created_by=pulumi.get(__response__, 'created_by'),
252
+ execution_recurrences=pulumi.get(__response__, 'execution_recurrences'),
253
+ fleet_id=pulumi.get(__response__, 'fleet_id'),
254
+ id=pulumi.get(__response__, 'id'),
255
+ name=pulumi.get(__response__, 'name'),
256
+ state=pulumi.get(__response__, 'state'),
257
+ task_details=pulumi.get(__response__, 'task_details'),
258
+ task_schedule_id=pulumi.get(__response__, 'task_schedule_id'),
259
+ time_created=pulumi.get(__response__, 'time_created'),
260
+ time_last_run=pulumi.get(__response__, 'time_last_run'),
261
+ time_last_updated=pulumi.get(__response__, 'time_last_updated'),
262
+ time_next_run=pulumi.get(__response__, 'time_next_run')))
@@ -0,0 +1,218 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins as _builtins
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
+ 'GetTaskSchedulesResult',
21
+ 'AwaitableGetTaskSchedulesResult',
22
+ 'get_task_schedules',
23
+ 'get_task_schedules_output',
24
+ ]
25
+
26
+ @pulumi.output_type
27
+ class GetTaskSchedulesResult:
28
+ """
29
+ A collection of values returned by getTaskSchedules.
30
+ """
31
+ def __init__(__self__, filters=None, fleet_id=None, id=None, managed_instance_id=None, name=None, task_schedule_collections=None, task_schedule_name_contains=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 fleet_id and not isinstance(fleet_id, str):
36
+ raise TypeError("Expected argument 'fleet_id' to be a str")
37
+ pulumi.set(__self__, "fleet_id", fleet_id)
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 managed_instance_id and not isinstance(managed_instance_id, str):
42
+ raise TypeError("Expected argument 'managed_instance_id' to be a str")
43
+ pulumi.set(__self__, "managed_instance_id", managed_instance_id)
44
+ if name and not isinstance(name, str):
45
+ raise TypeError("Expected argument 'name' to be a str")
46
+ pulumi.set(__self__, "name", name)
47
+ if task_schedule_collections and not isinstance(task_schedule_collections, list):
48
+ raise TypeError("Expected argument 'task_schedule_collections' to be a list")
49
+ pulumi.set(__self__, "task_schedule_collections", task_schedule_collections)
50
+ if task_schedule_name_contains and not isinstance(task_schedule_name_contains, str):
51
+ raise TypeError("Expected argument 'task_schedule_name_contains' to be a str")
52
+ pulumi.set(__self__, "task_schedule_name_contains", task_schedule_name_contains)
53
+
54
+ @_builtins.property
55
+ @pulumi.getter
56
+ def filters(self) -> Optional[Sequence['outputs.GetTaskSchedulesFilterResult']]:
57
+ return pulumi.get(self, "filters")
58
+
59
+ @_builtins.property
60
+ @pulumi.getter(name="fleetId")
61
+ def fleet_id(self) -> _builtins.str:
62
+ """
63
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
64
+ """
65
+ return pulumi.get(self, "fleet_id")
66
+
67
+ @_builtins.property
68
+ @pulumi.getter
69
+ def id(self) -> Optional[_builtins.str]:
70
+ """
71
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to identify this task schedule.
72
+ """
73
+ return pulumi.get(self, "id")
74
+
75
+ @_builtins.property
76
+ @pulumi.getter(name="managedInstanceId")
77
+ def managed_instance_id(self) -> Optional[_builtins.str]:
78
+ """
79
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related managed instance.
80
+ """
81
+ return pulumi.get(self, "managed_instance_id")
82
+
83
+ @_builtins.property
84
+ @pulumi.getter
85
+ def name(self) -> Optional[_builtins.str]:
86
+ """
87
+ The name of the task schedule.
88
+ """
89
+ return pulumi.get(self, "name")
90
+
91
+ @_builtins.property
92
+ @pulumi.getter(name="taskScheduleCollections")
93
+ def task_schedule_collections(self) -> Sequence['outputs.GetTaskSchedulesTaskScheduleCollectionResult']:
94
+ """
95
+ The list of task_schedule_collection.
96
+ """
97
+ return pulumi.get(self, "task_schedule_collections")
98
+
99
+ @_builtins.property
100
+ @pulumi.getter(name="taskScheduleNameContains")
101
+ def task_schedule_name_contains(self) -> Optional[_builtins.str]:
102
+ return pulumi.get(self, "task_schedule_name_contains")
103
+
104
+
105
+ class AwaitableGetTaskSchedulesResult(GetTaskSchedulesResult):
106
+ # pylint: disable=using-constant-test
107
+ def __await__(self):
108
+ if False:
109
+ yield self
110
+ return GetTaskSchedulesResult(
111
+ filters=self.filters,
112
+ fleet_id=self.fleet_id,
113
+ id=self.id,
114
+ managed_instance_id=self.managed_instance_id,
115
+ name=self.name,
116
+ task_schedule_collections=self.task_schedule_collections,
117
+ task_schedule_name_contains=self.task_schedule_name_contains)
118
+
119
+
120
+ def get_task_schedules(filters: Optional[Sequence[Union['GetTaskSchedulesFilterArgs', 'GetTaskSchedulesFilterArgsDict']]] = None,
121
+ fleet_id: Optional[_builtins.str] = None,
122
+ id: Optional[_builtins.str] = None,
123
+ managed_instance_id: Optional[_builtins.str] = None,
124
+ name: Optional[_builtins.str] = None,
125
+ task_schedule_name_contains: Optional[_builtins.str] = None,
126
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTaskSchedulesResult:
127
+ """
128
+ This data source provides the list of Task Schedules in Oracle Cloud Infrastructure Jms service.
129
+
130
+ Returns a list of task schedules.
131
+
132
+ ## Example Usage
133
+
134
+ ```python
135
+ import pulumi
136
+ import pulumi_oci as oci
137
+
138
+ test_task_schedules = oci.Jms.get_task_schedules(fleet_id=test_fleet["id"],
139
+ id=task_schedule_id,
140
+ managed_instance_id=test_managed_instance["id"],
141
+ name=task_schedule_name,
142
+ task_schedule_name_contains=task_schedule_task_schedule_name_contains)
143
+ ```
144
+
145
+
146
+ :param _builtins.str fleet_id: The ID of the Fleet.
147
+ :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to identify this task schedule.
148
+ :param _builtins.str managed_instance_id: The Fleet-unique identifier of the related managed instance.
149
+ :param _builtins.str name: The task name.
150
+ :param _builtins.str task_schedule_name_contains: Filter the list with task schedule name contains the given value.
151
+ """
152
+ __args__ = dict()
153
+ __args__['filters'] = filters
154
+ __args__['fleetId'] = fleet_id
155
+ __args__['id'] = id
156
+ __args__['managedInstanceId'] = managed_instance_id
157
+ __args__['name'] = name
158
+ __args__['taskScheduleNameContains'] = task_schedule_name_contains
159
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
160
+ __ret__ = pulumi.runtime.invoke('oci:Jms/getTaskSchedules:getTaskSchedules', __args__, opts=opts, typ=GetTaskSchedulesResult).value
161
+
162
+ return AwaitableGetTaskSchedulesResult(
163
+ filters=pulumi.get(__ret__, 'filters'),
164
+ fleet_id=pulumi.get(__ret__, 'fleet_id'),
165
+ id=pulumi.get(__ret__, 'id'),
166
+ managed_instance_id=pulumi.get(__ret__, 'managed_instance_id'),
167
+ name=pulumi.get(__ret__, 'name'),
168
+ task_schedule_collections=pulumi.get(__ret__, 'task_schedule_collections'),
169
+ task_schedule_name_contains=pulumi.get(__ret__, 'task_schedule_name_contains'))
170
+ def get_task_schedules_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetTaskSchedulesFilterArgs', 'GetTaskSchedulesFilterArgsDict']]]]] = None,
171
+ fleet_id: Optional[pulumi.Input[_builtins.str]] = None,
172
+ id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
173
+ managed_instance_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
174
+ name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
175
+ task_schedule_name_contains: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
176
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetTaskSchedulesResult]:
177
+ """
178
+ This data source provides the list of Task Schedules in Oracle Cloud Infrastructure Jms service.
179
+
180
+ Returns a list of task schedules.
181
+
182
+ ## Example Usage
183
+
184
+ ```python
185
+ import pulumi
186
+ import pulumi_oci as oci
187
+
188
+ test_task_schedules = oci.Jms.get_task_schedules(fleet_id=test_fleet["id"],
189
+ id=task_schedule_id,
190
+ managed_instance_id=test_managed_instance["id"],
191
+ name=task_schedule_name,
192
+ task_schedule_name_contains=task_schedule_task_schedule_name_contains)
193
+ ```
194
+
195
+
196
+ :param _builtins.str fleet_id: The ID of the Fleet.
197
+ :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) to identify this task schedule.
198
+ :param _builtins.str managed_instance_id: The Fleet-unique identifier of the related managed instance.
199
+ :param _builtins.str name: The task name.
200
+ :param _builtins.str task_schedule_name_contains: Filter the list with task schedule name contains the given value.
201
+ """
202
+ __args__ = dict()
203
+ __args__['filters'] = filters
204
+ __args__['fleetId'] = fleet_id
205
+ __args__['id'] = id
206
+ __args__['managedInstanceId'] = managed_instance_id
207
+ __args__['name'] = name
208
+ __args__['taskScheduleNameContains'] = task_schedule_name_contains
209
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
210
+ __ret__ = pulumi.runtime.invoke_output('oci:Jms/getTaskSchedules:getTaskSchedules', __args__, opts=opts, typ=GetTaskSchedulesResult)
211
+ return __ret__.apply(lambda __response__: GetTaskSchedulesResult(
212
+ filters=pulumi.get(__response__, 'filters'),
213
+ fleet_id=pulumi.get(__response__, 'fleet_id'),
214
+ id=pulumi.get(__response__, 'id'),
215
+ managed_instance_id=pulumi.get(__response__, 'managed_instance_id'),
216
+ name=pulumi.get(__response__, 'name'),
217
+ task_schedule_collections=pulumi.get(__response__, 'task_schedule_collections'),
218
+ task_schedule_name_contains=pulumi.get(__response__, 'task_schedule_name_contains')))
@@ -0,0 +1,153 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins as _builtins
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+
17
+ __all__ = [
18
+ 'GetUtilsAnalyzeApplicationsConfigurationResult',
19
+ 'AwaitableGetUtilsAnalyzeApplicationsConfigurationResult',
20
+ 'get_utils_analyze_applications_configuration',
21
+ 'get_utils_analyze_applications_configuration_output',
22
+ ]
23
+
24
+ @pulumi.output_type
25
+ class GetUtilsAnalyzeApplicationsConfigurationResult:
26
+ """
27
+ A collection of values returned by getUtilsAnalyzeApplicationsConfiguration.
28
+ """
29
+ def __init__(__self__, bucket=None, compartment_id=None, id=None, namespace=None):
30
+ if bucket and not isinstance(bucket, str):
31
+ raise TypeError("Expected argument 'bucket' to be a str")
32
+ pulumi.set(__self__, "bucket", bucket)
33
+ if compartment_id and not isinstance(compartment_id, str):
34
+ raise TypeError("Expected argument 'compartment_id' to be a str")
35
+ pulumi.set(__self__, "compartment_id", compartment_id)
36
+ if id and not isinstance(id, str):
37
+ raise TypeError("Expected argument 'id' to be a str")
38
+ pulumi.set(__self__, "id", id)
39
+ if namespace and not isinstance(namespace, str):
40
+ raise TypeError("Expected argument 'namespace' to be a str")
41
+ pulumi.set(__self__, "namespace", namespace)
42
+
43
+ @_builtins.property
44
+ @pulumi.getter
45
+ def bucket(self) -> _builtins.str:
46
+ """
47
+ The name of the bucket used for analyzing applications.
48
+ """
49
+ return pulumi.get(self, "bucket")
50
+
51
+ @_builtins.property
52
+ @pulumi.getter(name="compartmentId")
53
+ def compartment_id(self) -> _builtins.str:
54
+ return pulumi.get(self, "compartment_id")
55
+
56
+ @_builtins.property
57
+ @pulumi.getter
58
+ def id(self) -> _builtins.str:
59
+ """
60
+ The provider-assigned unique ID for this managed resource.
61
+ """
62
+ return pulumi.get(self, "id")
63
+
64
+ @_builtins.property
65
+ @pulumi.getter
66
+ def namespace(self) -> _builtins.str:
67
+ """
68
+ The Object Storage namespace used for analyzing applications.
69
+ """
70
+ return pulumi.get(self, "namespace")
71
+
72
+
73
+ class AwaitableGetUtilsAnalyzeApplicationsConfigurationResult(GetUtilsAnalyzeApplicationsConfigurationResult):
74
+ # pylint: disable=using-constant-test
75
+ def __await__(self):
76
+ if False:
77
+ yield self
78
+ return GetUtilsAnalyzeApplicationsConfigurationResult(
79
+ bucket=self.bucket,
80
+ compartment_id=self.compartment_id,
81
+ id=self.id,
82
+ namespace=self.namespace)
83
+
84
+
85
+ def get_utils_analyze_applications_configuration(bucket: Optional[_builtins.str] = None,
86
+ compartment_id: Optional[_builtins.str] = None,
87
+ namespace: Optional[_builtins.str] = None,
88
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetUtilsAnalyzeApplicationsConfigurationResult:
89
+ """
90
+ This data source provides details about a specific Analyze Applications Configuration resource in Oracle Cloud Infrastructure Jms Utils service.
91
+
92
+ Returns the configuration for analyzing applications.
93
+
94
+ ## Example Usage
95
+
96
+ ```python
97
+ import pulumi
98
+ import pulumi_oci as oci
99
+
100
+ test_analyze_applications_configuration = oci.Jms.get_utils_analyze_applications_configuration(compartment_id=compartment_id)
101
+ ```
102
+
103
+
104
+ :param _builtins.str bucket: The name of the bucket used for analyzing applications.
105
+ :param _builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
106
+ :param _builtins.str namespace: The Object Storage namespace used for analyzing applications.
107
+ """
108
+ __args__ = dict()
109
+ __args__['bucket'] = bucket
110
+ __args__['compartmentId'] = compartment_id
111
+ __args__['namespace'] = namespace
112
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
113
+ __ret__ = pulumi.runtime.invoke('oci:Jms/getUtilsAnalyzeApplicationsConfiguration:getUtilsAnalyzeApplicationsConfiguration', __args__, opts=opts, typ=GetUtilsAnalyzeApplicationsConfigurationResult).value
114
+
115
+ return AwaitableGetUtilsAnalyzeApplicationsConfigurationResult(
116
+ bucket=pulumi.get(__ret__, 'bucket'),
117
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
118
+ id=pulumi.get(__ret__, 'id'),
119
+ namespace=pulumi.get(__ret__, 'namespace'))
120
+ def get_utils_analyze_applications_configuration_output(bucket: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
121
+ compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
122
+ namespace: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
123
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetUtilsAnalyzeApplicationsConfigurationResult]:
124
+ """
125
+ This data source provides details about a specific Analyze Applications Configuration resource in Oracle Cloud Infrastructure Jms Utils service.
126
+
127
+ Returns the configuration for analyzing applications.
128
+
129
+ ## Example Usage
130
+
131
+ ```python
132
+ import pulumi
133
+ import pulumi_oci as oci
134
+
135
+ test_analyze_applications_configuration = oci.Jms.get_utils_analyze_applications_configuration(compartment_id=compartment_id)
136
+ ```
137
+
138
+
139
+ :param _builtins.str bucket: The name of the bucket used for analyzing applications.
140
+ :param _builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
141
+ :param _builtins.str namespace: The Object Storage namespace used for analyzing applications.
142
+ """
143
+ __args__ = dict()
144
+ __args__['bucket'] = bucket
145
+ __args__['compartmentId'] = compartment_id
146
+ __args__['namespace'] = namespace
147
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
148
+ __ret__ = pulumi.runtime.invoke_output('oci:Jms/getUtilsAnalyzeApplicationsConfiguration:getUtilsAnalyzeApplicationsConfiguration', __args__, opts=opts, typ=GetUtilsAnalyzeApplicationsConfigurationResult)
149
+ return __ret__.apply(lambda __response__: GetUtilsAnalyzeApplicationsConfigurationResult(
150
+ bucket=pulumi.get(__response__, 'bucket'),
151
+ compartment_id=pulumi.get(__response__, 'compartment_id'),
152
+ id=pulumi.get(__response__, 'id'),
153
+ namespace=pulumi.get(__response__, 'namespace')))