pulumi-oci 3.8.0__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.0.dist-info → pulumi_oci-3.9.0a1758687119.dist-info}/METADATA +1 -1
  60. {pulumi_oci-3.8.0.dist-info → pulumi_oci-3.9.0a1758687119.dist-info}/RECORD +62 -43
  61. {pulumi_oci-3.8.0.dist-info → pulumi_oci-3.9.0a1758687119.dist-info}/WHEEL +0 -0
  62. {pulumi_oci-3.8.0.dist-info → pulumi_oci-3.9.0a1758687119.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,274 @@
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
+ 'GetUtilsPerformanceTuningAnalysiResult',
20
+ 'AwaitableGetUtilsPerformanceTuningAnalysiResult',
21
+ 'get_utils_performance_tuning_analysi',
22
+ 'get_utils_performance_tuning_analysi_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetUtilsPerformanceTuningAnalysiResult:
27
+ """
28
+ A collection of values returned by getUtilsPerformanceTuningAnalysi.
29
+ """
30
+ def __init__(__self__, analysis_project_name=None, artifact_object_storage_path=None, compartment_id=None, created_bies=None, id=None, performance_tuning_analysis_id=None, result=None, result_object_storage_path=None, time_created=None, time_finished=None, time_started=None, warning_count=None, work_request_id=None):
31
+ if analysis_project_name and not isinstance(analysis_project_name, str):
32
+ raise TypeError("Expected argument 'analysis_project_name' to be a str")
33
+ pulumi.set(__self__, "analysis_project_name", analysis_project_name)
34
+ if artifact_object_storage_path and not isinstance(artifact_object_storage_path, str):
35
+ raise TypeError("Expected argument 'artifact_object_storage_path' to be a str")
36
+ pulumi.set(__self__, "artifact_object_storage_path", artifact_object_storage_path)
37
+ if compartment_id and not isinstance(compartment_id, str):
38
+ raise TypeError("Expected argument 'compartment_id' to be a str")
39
+ pulumi.set(__self__, "compartment_id", compartment_id)
40
+ if created_bies and not isinstance(created_bies, list):
41
+ raise TypeError("Expected argument 'created_bies' to be a list")
42
+ pulumi.set(__self__, "created_bies", created_bies)
43
+ if id and not isinstance(id, str):
44
+ raise TypeError("Expected argument 'id' to be a str")
45
+ pulumi.set(__self__, "id", id)
46
+ if performance_tuning_analysis_id and not isinstance(performance_tuning_analysis_id, str):
47
+ raise TypeError("Expected argument 'performance_tuning_analysis_id' to be a str")
48
+ pulumi.set(__self__, "performance_tuning_analysis_id", performance_tuning_analysis_id)
49
+ if result and not isinstance(result, str):
50
+ raise TypeError("Expected argument 'result' to be a str")
51
+ pulumi.set(__self__, "result", result)
52
+ if result_object_storage_path and not isinstance(result_object_storage_path, str):
53
+ raise TypeError("Expected argument 'result_object_storage_path' to be a str")
54
+ pulumi.set(__self__, "result_object_storage_path", result_object_storage_path)
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_finished and not isinstance(time_finished, str):
59
+ raise TypeError("Expected argument 'time_finished' to be a str")
60
+ pulumi.set(__self__, "time_finished", time_finished)
61
+ if time_started and not isinstance(time_started, str):
62
+ raise TypeError("Expected argument 'time_started' to be a str")
63
+ pulumi.set(__self__, "time_started", time_started)
64
+ if warning_count and not isinstance(warning_count, int):
65
+ raise TypeError("Expected argument 'warning_count' to be a int")
66
+ pulumi.set(__self__, "warning_count", warning_count)
67
+ if work_request_id and not isinstance(work_request_id, str):
68
+ raise TypeError("Expected argument 'work_request_id' to be a str")
69
+ pulumi.set(__self__, "work_request_id", work_request_id)
70
+
71
+ @_builtins.property
72
+ @pulumi.getter(name="analysisProjectName")
73
+ def analysis_project_name(self) -> _builtins.str:
74
+ """
75
+ Name of the analysis project.
76
+ """
77
+ return pulumi.get(self, "analysis_project_name")
78
+
79
+ @_builtins.property
80
+ @pulumi.getter(name="artifactObjectStoragePath")
81
+ def artifact_object_storage_path(self) -> _builtins.str:
82
+ """
83
+ Object storage path to the artifact.
84
+ """
85
+ return pulumi.get(self, "artifact_object_storage_path")
86
+
87
+ @_builtins.property
88
+ @pulumi.getter(name="compartmentId")
89
+ def compartment_id(self) -> Optional[_builtins.str]:
90
+ """
91
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
92
+ """
93
+ return pulumi.get(self, "compartment_id")
94
+
95
+ @_builtins.property
96
+ @pulumi.getter(name="createdBies")
97
+ def created_bies(self) -> Sequence['outputs.GetUtilsPerformanceTuningAnalysiCreatedByResult']:
98
+ """
99
+ An authorized principal.
100
+ """
101
+ return pulumi.get(self, "created_bies")
102
+
103
+ @_builtins.property
104
+ @pulumi.getter
105
+ def id(self) -> _builtins.str:
106
+ """
107
+ The provider-assigned unique ID for this managed resource.
108
+ """
109
+ return pulumi.get(self, "id")
110
+
111
+ @_builtins.property
112
+ @pulumi.getter(name="performanceTuningAnalysisId")
113
+ def performance_tuning_analysis_id(self) -> _builtins.str:
114
+ return pulumi.get(self, "performance_tuning_analysis_id")
115
+
116
+ @_builtins.property
117
+ @pulumi.getter
118
+ def result(self) -> _builtins.str:
119
+ """
120
+ Possible Performance Tuning Result statuses.
121
+ """
122
+ return pulumi.get(self, "result")
123
+
124
+ @_builtins.property
125
+ @pulumi.getter(name="resultObjectStoragePath")
126
+ def result_object_storage_path(self) -> _builtins.str:
127
+ """
128
+ Object storage path to the analysis.
129
+ """
130
+ return pulumi.get(self, "result_object_storage_path")
131
+
132
+ @_builtins.property
133
+ @pulumi.getter(name="timeCreated")
134
+ def time_created(self) -> _builtins.str:
135
+ """
136
+ The date and time the Performance Tuning Analysis was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
137
+ """
138
+ return pulumi.get(self, "time_created")
139
+
140
+ @_builtins.property
141
+ @pulumi.getter(name="timeFinished")
142
+ def time_finished(self) -> _builtins.str:
143
+ """
144
+ The date and time the Performance Tuning Analysis was finished, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
145
+ """
146
+ return pulumi.get(self, "time_finished")
147
+
148
+ @_builtins.property
149
+ @pulumi.getter(name="timeStarted")
150
+ def time_started(self) -> _builtins.str:
151
+ """
152
+ The date and time the Performance Tuning Analysis was started, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
153
+ """
154
+ return pulumi.get(self, "time_started")
155
+
156
+ @_builtins.property
157
+ @pulumi.getter(name="warningCount")
158
+ def warning_count(self) -> _builtins.int:
159
+ """
160
+ Number of warnings in the Performance Tuning Analysis.
161
+ """
162
+ return pulumi.get(self, "warning_count")
163
+
164
+ @_builtins.property
165
+ @pulumi.getter(name="workRequestId")
166
+ def work_request_id(self) -> _builtins.str:
167
+ """
168
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Work Request.
169
+ """
170
+ return pulumi.get(self, "work_request_id")
171
+
172
+
173
+ class AwaitableGetUtilsPerformanceTuningAnalysiResult(GetUtilsPerformanceTuningAnalysiResult):
174
+ # pylint: disable=using-constant-test
175
+ def __await__(self):
176
+ if False:
177
+ yield self
178
+ return GetUtilsPerformanceTuningAnalysiResult(
179
+ analysis_project_name=self.analysis_project_name,
180
+ artifact_object_storage_path=self.artifact_object_storage_path,
181
+ compartment_id=self.compartment_id,
182
+ created_bies=self.created_bies,
183
+ id=self.id,
184
+ performance_tuning_analysis_id=self.performance_tuning_analysis_id,
185
+ result=self.result,
186
+ result_object_storage_path=self.result_object_storage_path,
187
+ time_created=self.time_created,
188
+ time_finished=self.time_finished,
189
+ time_started=self.time_started,
190
+ warning_count=self.warning_count,
191
+ work_request_id=self.work_request_id)
192
+
193
+
194
+ def get_utils_performance_tuning_analysi(compartment_id: Optional[_builtins.str] = None,
195
+ performance_tuning_analysis_id: Optional[_builtins.str] = None,
196
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetUtilsPerformanceTuningAnalysiResult:
197
+ """
198
+ This data source provides details about a specific Performance Tuning Analysi resource in Oracle Cloud Infrastructure Jms Utils service.
199
+
200
+ Gets information about a Performance Tuning Analysis.
201
+
202
+ ## Example Usage
203
+
204
+ ```python
205
+ import pulumi
206
+ import pulumi_oci as oci
207
+
208
+ test_performance_tuning_analysi = oci.Jms.get_utils_performance_tuning_analysi(performance_tuning_analysis_id=test_performance_tuning_analysi_oci_jms_utils_performance_tuning_analysi["id"])
209
+ ```
210
+
211
+
212
+ :param _builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
213
+ :param _builtins.str performance_tuning_analysis_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Performance Tuning Analysis.
214
+ """
215
+ __args__ = dict()
216
+ __args__['compartmentId'] = compartment_id
217
+ __args__['performanceTuningAnalysisId'] = performance_tuning_analysis_id
218
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
219
+ __ret__ = pulumi.runtime.invoke('oci:Jms/getUtilsPerformanceTuningAnalysi:getUtilsPerformanceTuningAnalysi', __args__, opts=opts, typ=GetUtilsPerformanceTuningAnalysiResult).value
220
+
221
+ return AwaitableGetUtilsPerformanceTuningAnalysiResult(
222
+ analysis_project_name=pulumi.get(__ret__, 'analysis_project_name'),
223
+ artifact_object_storage_path=pulumi.get(__ret__, 'artifact_object_storage_path'),
224
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
225
+ created_bies=pulumi.get(__ret__, 'created_bies'),
226
+ id=pulumi.get(__ret__, 'id'),
227
+ performance_tuning_analysis_id=pulumi.get(__ret__, 'performance_tuning_analysis_id'),
228
+ result=pulumi.get(__ret__, 'result'),
229
+ result_object_storage_path=pulumi.get(__ret__, 'result_object_storage_path'),
230
+ time_created=pulumi.get(__ret__, 'time_created'),
231
+ time_finished=pulumi.get(__ret__, 'time_finished'),
232
+ time_started=pulumi.get(__ret__, 'time_started'),
233
+ warning_count=pulumi.get(__ret__, 'warning_count'),
234
+ work_request_id=pulumi.get(__ret__, 'work_request_id'))
235
+ def get_utils_performance_tuning_analysi_output(compartment_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
236
+ performance_tuning_analysis_id: Optional[pulumi.Input[_builtins.str]] = None,
237
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetUtilsPerformanceTuningAnalysiResult]:
238
+ """
239
+ This data source provides details about a specific Performance Tuning Analysi resource in Oracle Cloud Infrastructure Jms Utils service.
240
+
241
+ Gets information about a Performance Tuning Analysis.
242
+
243
+ ## Example Usage
244
+
245
+ ```python
246
+ import pulumi
247
+ import pulumi_oci as oci
248
+
249
+ test_performance_tuning_analysi = oci.Jms.get_utils_performance_tuning_analysi(performance_tuning_analysis_id=test_performance_tuning_analysi_oci_jms_utils_performance_tuning_analysi["id"])
250
+ ```
251
+
252
+
253
+ :param _builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
254
+ :param _builtins.str performance_tuning_analysis_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Performance Tuning Analysis.
255
+ """
256
+ __args__ = dict()
257
+ __args__['compartmentId'] = compartment_id
258
+ __args__['performanceTuningAnalysisId'] = performance_tuning_analysis_id
259
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
260
+ __ret__ = pulumi.runtime.invoke_output('oci:Jms/getUtilsPerformanceTuningAnalysi:getUtilsPerformanceTuningAnalysi', __args__, opts=opts, typ=GetUtilsPerformanceTuningAnalysiResult)
261
+ return __ret__.apply(lambda __response__: GetUtilsPerformanceTuningAnalysiResult(
262
+ analysis_project_name=pulumi.get(__response__, 'analysis_project_name'),
263
+ artifact_object_storage_path=pulumi.get(__response__, 'artifact_object_storage_path'),
264
+ compartment_id=pulumi.get(__response__, 'compartment_id'),
265
+ created_bies=pulumi.get(__response__, 'created_bies'),
266
+ id=pulumi.get(__response__, 'id'),
267
+ performance_tuning_analysis_id=pulumi.get(__response__, 'performance_tuning_analysis_id'),
268
+ result=pulumi.get(__response__, 'result'),
269
+ result_object_storage_path=pulumi.get(__response__, 'result_object_storage_path'),
270
+ time_created=pulumi.get(__response__, 'time_created'),
271
+ time_finished=pulumi.get(__response__, 'time_finished'),
272
+ time_started=pulumi.get(__response__, 'time_started'),
273
+ warning_count=pulumi.get(__response__, 'warning_count'),
274
+ work_request_id=pulumi.get(__response__, 'work_request_id')))
@@ -0,0 +1,196 @@
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
+ 'GetUtilsPerformanceTuningAnalysisResult',
21
+ 'AwaitableGetUtilsPerformanceTuningAnalysisResult',
22
+ 'get_utils_performance_tuning_analysis',
23
+ 'get_utils_performance_tuning_analysis_output',
24
+ ]
25
+
26
+ @pulumi.output_type
27
+ class GetUtilsPerformanceTuningAnalysisResult:
28
+ """
29
+ A collection of values returned by getUtilsPerformanceTuningAnalysis.
30
+ """
31
+ def __init__(__self__, analysis_project_name=None, compartment_id=None, filters=None, id=None, performance_tuning_analysis_collections=None, performance_tuning_analysis_result=None):
32
+ if analysis_project_name and not isinstance(analysis_project_name, str):
33
+ raise TypeError("Expected argument 'analysis_project_name' to be a str")
34
+ pulumi.set(__self__, "analysis_project_name", analysis_project_name)
35
+ if compartment_id and not isinstance(compartment_id, str):
36
+ raise TypeError("Expected argument 'compartment_id' to be a str")
37
+ pulumi.set(__self__, "compartment_id", compartment_id)
38
+ if filters and not isinstance(filters, list):
39
+ raise TypeError("Expected argument 'filters' to be a list")
40
+ pulumi.set(__self__, "filters", filters)
41
+ if id and not isinstance(id, str):
42
+ raise TypeError("Expected argument 'id' to be a str")
43
+ pulumi.set(__self__, "id", id)
44
+ if performance_tuning_analysis_collections and not isinstance(performance_tuning_analysis_collections, list):
45
+ raise TypeError("Expected argument 'performance_tuning_analysis_collections' to be a list")
46
+ pulumi.set(__self__, "performance_tuning_analysis_collections", performance_tuning_analysis_collections)
47
+ if performance_tuning_analysis_result and not isinstance(performance_tuning_analysis_result, str):
48
+ raise TypeError("Expected argument 'performance_tuning_analysis_result' to be a str")
49
+ pulumi.set(__self__, "performance_tuning_analysis_result", performance_tuning_analysis_result)
50
+
51
+ @_builtins.property
52
+ @pulumi.getter(name="analysisProjectName")
53
+ def analysis_project_name(self) -> Optional[_builtins.str]:
54
+ """
55
+ Name of the analysis project.
56
+ """
57
+ return pulumi.get(self, "analysis_project_name")
58
+
59
+ @_builtins.property
60
+ @pulumi.getter(name="compartmentId")
61
+ def compartment_id(self) -> Optional[_builtins.str]:
62
+ """
63
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
64
+ """
65
+ return pulumi.get(self, "compartment_id")
66
+
67
+ @_builtins.property
68
+ @pulumi.getter
69
+ def filters(self) -> Optional[Sequence['outputs.GetUtilsPerformanceTuningAnalysisFilterResult']]:
70
+ return pulumi.get(self, "filters")
71
+
72
+ @_builtins.property
73
+ @pulumi.getter
74
+ def id(self) -> Optional[_builtins.str]:
75
+ """
76
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Performance Tuning Analysis.
77
+ """
78
+ return pulumi.get(self, "id")
79
+
80
+ @_builtins.property
81
+ @pulumi.getter(name="performanceTuningAnalysisCollections")
82
+ def performance_tuning_analysis_collections(self) -> Sequence['outputs.GetUtilsPerformanceTuningAnalysisPerformanceTuningAnalysisCollectionResult']:
83
+ """
84
+ The list of performance_tuning_analysis_collection.
85
+ """
86
+ return pulumi.get(self, "performance_tuning_analysis_collections")
87
+
88
+ @_builtins.property
89
+ @pulumi.getter(name="performanceTuningAnalysisResult")
90
+ def performance_tuning_analysis_result(self) -> Optional[_builtins.str]:
91
+ return pulumi.get(self, "performance_tuning_analysis_result")
92
+
93
+
94
+ class AwaitableGetUtilsPerformanceTuningAnalysisResult(GetUtilsPerformanceTuningAnalysisResult):
95
+ # pylint: disable=using-constant-test
96
+ def __await__(self):
97
+ if False:
98
+ yield self
99
+ return GetUtilsPerformanceTuningAnalysisResult(
100
+ analysis_project_name=self.analysis_project_name,
101
+ compartment_id=self.compartment_id,
102
+ filters=self.filters,
103
+ id=self.id,
104
+ performance_tuning_analysis_collections=self.performance_tuning_analysis_collections,
105
+ performance_tuning_analysis_result=self.performance_tuning_analysis_result)
106
+
107
+
108
+ def get_utils_performance_tuning_analysis(analysis_project_name: Optional[_builtins.str] = None,
109
+ compartment_id: Optional[_builtins.str] = None,
110
+ filters: Optional[Sequence[Union['GetUtilsPerformanceTuningAnalysisFilterArgs', 'GetUtilsPerformanceTuningAnalysisFilterArgsDict']]] = None,
111
+ id: Optional[_builtins.str] = None,
112
+ performance_tuning_analysis_result: Optional[_builtins.str] = None,
113
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetUtilsPerformanceTuningAnalysisResult:
114
+ """
115
+ This data source provides the list of Performance Tuning Analysis in Oracle Cloud Infrastructure Jms Utils service.
116
+
117
+ Gets a list of Performance tuning Analysis.
118
+
119
+ ## Example Usage
120
+
121
+ ```python
122
+ import pulumi
123
+ import pulumi_oci as oci
124
+
125
+ test_performance_tuning_analysis = oci.Jms.get_utils_performance_tuning_analysis(analysis_project_name=test_project["name"],
126
+ compartment_id=compartment_id,
127
+ id=performance_tuning_analysi_id,
128
+ performance_tuning_analysis_result=performance_tuning_analysi_performance_tuning_analysis_result)
129
+ ```
130
+
131
+
132
+ :param _builtins.str analysis_project_name: The project name of the Performance Tuning Analysis to query for.
133
+ :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.
134
+ :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Performance Tuning Analysis.
135
+ :param _builtins.str performance_tuning_analysis_result: The result of the Performance Tuning Analysis to query for.
136
+ """
137
+ __args__ = dict()
138
+ __args__['analysisProjectName'] = analysis_project_name
139
+ __args__['compartmentId'] = compartment_id
140
+ __args__['filters'] = filters
141
+ __args__['id'] = id
142
+ __args__['performanceTuningAnalysisResult'] = performance_tuning_analysis_result
143
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
144
+ __ret__ = pulumi.runtime.invoke('oci:Jms/getUtilsPerformanceTuningAnalysis:getUtilsPerformanceTuningAnalysis', __args__, opts=opts, typ=GetUtilsPerformanceTuningAnalysisResult).value
145
+
146
+ return AwaitableGetUtilsPerformanceTuningAnalysisResult(
147
+ analysis_project_name=pulumi.get(__ret__, 'analysis_project_name'),
148
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
149
+ filters=pulumi.get(__ret__, 'filters'),
150
+ id=pulumi.get(__ret__, 'id'),
151
+ performance_tuning_analysis_collections=pulumi.get(__ret__, 'performance_tuning_analysis_collections'),
152
+ performance_tuning_analysis_result=pulumi.get(__ret__, 'performance_tuning_analysis_result'))
153
+ def get_utils_performance_tuning_analysis_output(analysis_project_name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
154
+ compartment_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
155
+ filters: Optional[pulumi.Input[Optional[Sequence[Union['GetUtilsPerformanceTuningAnalysisFilterArgs', 'GetUtilsPerformanceTuningAnalysisFilterArgsDict']]]]] = None,
156
+ id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
157
+ performance_tuning_analysis_result: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
158
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetUtilsPerformanceTuningAnalysisResult]:
159
+ """
160
+ This data source provides the list of Performance Tuning Analysis in Oracle Cloud Infrastructure Jms Utils service.
161
+
162
+ Gets a list of Performance tuning Analysis.
163
+
164
+ ## Example Usage
165
+
166
+ ```python
167
+ import pulumi
168
+ import pulumi_oci as oci
169
+
170
+ test_performance_tuning_analysis = oci.Jms.get_utils_performance_tuning_analysis(analysis_project_name=test_project["name"],
171
+ compartment_id=compartment_id,
172
+ id=performance_tuning_analysi_id,
173
+ performance_tuning_analysis_result=performance_tuning_analysi_performance_tuning_analysis_result)
174
+ ```
175
+
176
+
177
+ :param _builtins.str analysis_project_name: The project name of the Performance Tuning Analysis to query for.
178
+ :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.
179
+ :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Performance Tuning Analysis.
180
+ :param _builtins.str performance_tuning_analysis_result: The result of the Performance Tuning Analysis to query for.
181
+ """
182
+ __args__ = dict()
183
+ __args__['analysisProjectName'] = analysis_project_name
184
+ __args__['compartmentId'] = compartment_id
185
+ __args__['filters'] = filters
186
+ __args__['id'] = id
187
+ __args__['performanceTuningAnalysisResult'] = performance_tuning_analysis_result
188
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
189
+ __ret__ = pulumi.runtime.invoke_output('oci:Jms/getUtilsPerformanceTuningAnalysis:getUtilsPerformanceTuningAnalysis', __args__, opts=opts, typ=GetUtilsPerformanceTuningAnalysisResult)
190
+ return __ret__.apply(lambda __response__: GetUtilsPerformanceTuningAnalysisResult(
191
+ analysis_project_name=pulumi.get(__response__, 'analysis_project_name'),
192
+ compartment_id=pulumi.get(__response__, 'compartment_id'),
193
+ filters=pulumi.get(__response__, 'filters'),
194
+ id=pulumi.get(__response__, 'id'),
195
+ performance_tuning_analysis_collections=pulumi.get(__response__, 'performance_tuning_analysis_collections'),
196
+ performance_tuning_analysis_result=pulumi.get(__response__, 'performance_tuning_analysis_result')))
@@ -0,0 +1,161 @@
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
+ 'GetUtilsSubscriptionAcknowledgmentConfigurationResult',
19
+ 'AwaitableGetUtilsSubscriptionAcknowledgmentConfigurationResult',
20
+ 'get_utils_subscription_acknowledgment_configuration',
21
+ 'get_utils_subscription_acknowledgment_configuration_output',
22
+ ]
23
+
24
+ @pulumi.output_type
25
+ class GetUtilsSubscriptionAcknowledgmentConfigurationResult:
26
+ """
27
+ A collection of values returned by getUtilsSubscriptionAcknowledgmentConfiguration.
28
+ """
29
+ def __init__(__self__, acknowledged_by=None, compartment_id=None, id=None, is_acknowledged=None, time_acknowledged=None):
30
+ if acknowledged_by and not isinstance(acknowledged_by, str):
31
+ raise TypeError("Expected argument 'acknowledged_by' to be a str")
32
+ pulumi.set(__self__, "acknowledged_by", acknowledged_by)
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 is_acknowledged and not isinstance(is_acknowledged, bool):
40
+ raise TypeError("Expected argument 'is_acknowledged' to be a bool")
41
+ pulumi.set(__self__, "is_acknowledged", is_acknowledged)
42
+ if time_acknowledged and not isinstance(time_acknowledged, str):
43
+ raise TypeError("Expected argument 'time_acknowledged' to be a str")
44
+ pulumi.set(__self__, "time_acknowledged", time_acknowledged)
45
+
46
+ @_builtins.property
47
+ @pulumi.getter(name="acknowledgedBy")
48
+ def acknowledged_by(self) -> _builtins.str:
49
+ """
50
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the principal that ackwnoledged the subscription.
51
+ """
52
+ return pulumi.get(self, "acknowledged_by")
53
+
54
+ @_builtins.property
55
+ @pulumi.getter(name="compartmentId")
56
+ def compartment_id(self) -> _builtins.str:
57
+ return pulumi.get(self, "compartment_id")
58
+
59
+ @_builtins.property
60
+ @pulumi.getter
61
+ def id(self) -> _builtins.str:
62
+ """
63
+ The provider-assigned unique ID for this managed resource.
64
+ """
65
+ return pulumi.get(self, "id")
66
+
67
+ @_builtins.property
68
+ @pulumi.getter(name="isAcknowledged")
69
+ def is_acknowledged(self) -> _builtins.bool:
70
+ """
71
+ Flag to determine whether the subscription was acknowledged or not.
72
+ """
73
+ return pulumi.get(self, "is_acknowledged")
74
+
75
+ @_builtins.property
76
+ @pulumi.getter(name="timeAcknowledged")
77
+ def time_acknowledged(self) -> _builtins.str:
78
+ """
79
+ The date and time the subscription was acknowledged (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
80
+ """
81
+ return pulumi.get(self, "time_acknowledged")
82
+
83
+
84
+ class AwaitableGetUtilsSubscriptionAcknowledgmentConfigurationResult(GetUtilsSubscriptionAcknowledgmentConfigurationResult):
85
+ # pylint: disable=using-constant-test
86
+ def __await__(self):
87
+ if False:
88
+ yield self
89
+ return GetUtilsSubscriptionAcknowledgmentConfigurationResult(
90
+ acknowledged_by=self.acknowledged_by,
91
+ compartment_id=self.compartment_id,
92
+ id=self.id,
93
+ is_acknowledged=self.is_acknowledged,
94
+ time_acknowledged=self.time_acknowledged)
95
+
96
+
97
+ def get_utils_subscription_acknowledgment_configuration(compartment_id: Optional[_builtins.str] = None,
98
+ is_acknowledged: Optional[_builtins.bool] = None,
99
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetUtilsSubscriptionAcknowledgmentConfigurationResult:
100
+ """
101
+ This data source provides details about a specific Subscription Acknowledgment Configuration resource in Oracle Cloud Infrastructure Jms Utils service.
102
+
103
+ Returns the configuration for subscription acknowledgment.
104
+
105
+ ## Example Usage
106
+
107
+ ```python
108
+ import pulumi
109
+ import pulumi_oci as oci
110
+
111
+ test_subscription_acknowledgment_configuration = oci.Jms.get_utils_subscription_acknowledgment_configuration(compartment_id=compartment_id)
112
+ ```
113
+
114
+
115
+ :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.
116
+ :param _builtins.bool is_acknowledged: Flag to determine whether the subscription was acknowledged or not.
117
+ """
118
+ __args__ = dict()
119
+ __args__['compartmentId'] = compartment_id
120
+ __args__['isAcknowledged'] = is_acknowledged
121
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
122
+ __ret__ = pulumi.runtime.invoke('oci:Jms/getUtilsSubscriptionAcknowledgmentConfiguration:getUtilsSubscriptionAcknowledgmentConfiguration', __args__, opts=opts, typ=GetUtilsSubscriptionAcknowledgmentConfigurationResult).value
123
+
124
+ return AwaitableGetUtilsSubscriptionAcknowledgmentConfigurationResult(
125
+ acknowledged_by=pulumi.get(__ret__, 'acknowledged_by'),
126
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
127
+ id=pulumi.get(__ret__, 'id'),
128
+ is_acknowledged=pulumi.get(__ret__, 'is_acknowledged'),
129
+ time_acknowledged=pulumi.get(__ret__, 'time_acknowledged'))
130
+ def get_utils_subscription_acknowledgment_configuration_output(compartment_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
131
+ is_acknowledged: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
132
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetUtilsSubscriptionAcknowledgmentConfigurationResult]:
133
+ """
134
+ This data source provides details about a specific Subscription Acknowledgment Configuration resource in Oracle Cloud Infrastructure Jms Utils service.
135
+
136
+ Returns the configuration for subscription acknowledgment.
137
+
138
+ ## Example Usage
139
+
140
+ ```python
141
+ import pulumi
142
+ import pulumi_oci as oci
143
+
144
+ test_subscription_acknowledgment_configuration = oci.Jms.get_utils_subscription_acknowledgment_configuration(compartment_id=compartment_id)
145
+ ```
146
+
147
+
148
+ :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.
149
+ :param _builtins.bool is_acknowledged: Flag to determine whether the subscription was acknowledged or not.
150
+ """
151
+ __args__ = dict()
152
+ __args__['compartmentId'] = compartment_id
153
+ __args__['isAcknowledged'] = is_acknowledged
154
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
155
+ __ret__ = pulumi.runtime.invoke_output('oci:Jms/getUtilsSubscriptionAcknowledgmentConfiguration:getUtilsSubscriptionAcknowledgmentConfiguration', __args__, opts=opts, typ=GetUtilsSubscriptionAcknowledgmentConfigurationResult)
156
+ return __ret__.apply(lambda __response__: GetUtilsSubscriptionAcknowledgmentConfigurationResult(
157
+ acknowledged_by=pulumi.get(__response__, 'acknowledged_by'),
158
+ compartment_id=pulumi.get(__response__, 'compartment_id'),
159
+ id=pulumi.get(__response__, 'id'),
160
+ is_acknowledged=pulumi.get(__response__, 'is_acknowledged'),
161
+ time_acknowledged=pulumi.get(__response__, 'time_acknowledged')))