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.
- pulumi_oci/__init__.py +24 -0
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +550 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +28 -0
- pulumi_oci/database/cloud_exadata_infrastructure_configure_exascale_management.py +1308 -0
- pulumi_oci/database/cloud_vm_cluster.py +77 -0
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +29 -1
- pulumi_oci/database/outputs.py +515 -0
- pulumi_oci/datasafe/_inputs.py +180 -0
- pulumi_oci/datasafe/audit_policy_management.py +7 -7
- pulumi_oci/datasafe/audit_trail_management.py +2 -0
- pulumi_oci/datasafe/discovery_jobs_result.py +40 -0
- pulumi_oci/datasafe/get_data_safe_configuration.py +2 -2
- pulumi_oci/datasafe/get_discovery_jobs_result.py +29 -1
- pulumi_oci/datasafe/get_discovery_jobs_results.py +23 -1
- pulumi_oci/datasafe/get_masking_reports.py +20 -1
- pulumi_oci/datasafe/get_security_assessment_finding.py +16 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +26 -3
- pulumi_oci/datasafe/get_sensitive_data_models_sensitive_column.py +30 -1
- pulumi_oci/datasafe/get_sensitive_data_models_sensitive_columns.py +44 -3
- pulumi_oci/datasafe/outputs.py +400 -2
- pulumi_oci/datasafe/sensitive_data_models_sensitive_column.py +58 -0
- pulumi_oci/jms/__init__.py +16 -0
- pulumi_oci/jms/_inputs.py +2068 -29
- pulumi_oci/jms/fleet.py +56 -0
- pulumi_oci/jms/get_fleet.py +29 -1
- pulumi_oci/jms/get_fleet_containers.py +289 -0
- pulumi_oci/jms/get_fleet_export_setting.py +16 -1
- pulumi_oci/jms/get_fleet_library_applications.py +280 -0
- pulumi_oci/jms/get_fleet_library_managed_instances.py +280 -0
- pulumi_oci/jms/get_fleet_summarize_library_inventory.py +211 -0
- pulumi_oci/jms/get_fleet_uncorrelated_package_applications.py +239 -0
- pulumi_oci/jms/get_fleet_uncorrelated_package_managed_instances.py +242 -0
- pulumi_oci/jms/get_fleet_uncorrelated_packages.py +242 -0
- pulumi_oci/jms/get_java_family.py +15 -1
- pulumi_oci/jms/get_jms_plugin.py +2 -2
- pulumi_oci/jms/get_jms_plugins.py +4 -4
- pulumi_oci/jms/get_task_schedule.py +262 -0
- pulumi_oci/jms/get_task_schedules.py +218 -0
- pulumi_oci/jms/get_utils_analyze_applications_configuration.py +153 -0
- pulumi_oci/jms/get_utils_java_migration_analysi.py +316 -0
- pulumi_oci/jms/get_utils_java_migration_analysis.py +177 -0
- pulumi_oci/jms/get_utils_performance_tuning_analysi.py +274 -0
- pulumi_oci/jms/get_utils_performance_tuning_analysis.py +196 -0
- pulumi_oci/jms/get_utils_subscription_acknowledgment_configuration.py +161 -0
- pulumi_oci/jms/jms_plugin.py +36 -15
- pulumi_oci/jms/outputs.py +8500 -3920
- pulumi_oci/jms/task_schedule.py +658 -0
- pulumi_oci/marketplace/__init__.py +2 -0
- pulumi_oci/marketplace/_inputs.py +49 -0
- pulumi_oci/marketplace/get_marketplace_metadata_public_keys.py +144 -0
- pulumi_oci/marketplace/marketplace_external_attested_metadata.py +298 -0
- pulumi_oci/marketplace/outputs.py +124 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/get_redis_cluster.py +29 -1
- pulumi_oci/redis/outputs.py +22 -0
- pulumi_oci/redis/redis_cluster.py +56 -0
- {pulumi_oci-3.8.0.dist-info → pulumi_oci-3.9.0a1758687119.dist-info}/METADATA +1 -1
- {pulumi_oci-3.8.0.dist-info → pulumi_oci-3.9.0a1758687119.dist-info}/RECORD +62 -43
- {pulumi_oci-3.8.0.dist-info → pulumi_oci-3.9.0a1758687119.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.8.0.dist-info → pulumi_oci-3.9.0a1758687119.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,211 @@
|
|
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
|
+
'GetFleetSummarizeLibraryInventoryResult',
|
19
|
+
'AwaitableGetFleetSummarizeLibraryInventoryResult',
|
20
|
+
'get_fleet_summarize_library_inventory',
|
21
|
+
'get_fleet_summarize_library_inventory_output',
|
22
|
+
]
|
23
|
+
|
24
|
+
@pulumi.output_type
|
25
|
+
class GetFleetSummarizeLibraryInventoryResult:
|
26
|
+
"""
|
27
|
+
A collection of values returned by getFleetSummarizeLibraryInventory.
|
28
|
+
"""
|
29
|
+
def __init__(__self__, application_id=None, dynamically_detected_library_count=None, fleet_id=None, high_severity_library_count=None, id=None, low_severity_library_count=None, managed_instance_id=None, medium_severity_library_count=None, statically_detected_library_count=None, time_end=None, time_start=None, uncorrelated_package_count=None):
|
30
|
+
if application_id and not isinstance(application_id, str):
|
31
|
+
raise TypeError("Expected argument 'application_id' to be a str")
|
32
|
+
pulumi.set(__self__, "application_id", application_id)
|
33
|
+
if dynamically_detected_library_count and not isinstance(dynamically_detected_library_count, int):
|
34
|
+
raise TypeError("Expected argument 'dynamically_detected_library_count' to be a int")
|
35
|
+
pulumi.set(__self__, "dynamically_detected_library_count", dynamically_detected_library_count)
|
36
|
+
if fleet_id and not isinstance(fleet_id, str):
|
37
|
+
raise TypeError("Expected argument 'fleet_id' to be a str")
|
38
|
+
pulumi.set(__self__, "fleet_id", fleet_id)
|
39
|
+
if high_severity_library_count and not isinstance(high_severity_library_count, int):
|
40
|
+
raise TypeError("Expected argument 'high_severity_library_count' to be a int")
|
41
|
+
pulumi.set(__self__, "high_severity_library_count", high_severity_library_count)
|
42
|
+
if id and not isinstance(id, str):
|
43
|
+
raise TypeError("Expected argument 'id' to be a str")
|
44
|
+
pulumi.set(__self__, "id", id)
|
45
|
+
if low_severity_library_count and not isinstance(low_severity_library_count, int):
|
46
|
+
raise TypeError("Expected argument 'low_severity_library_count' to be a int")
|
47
|
+
pulumi.set(__self__, "low_severity_library_count", low_severity_library_count)
|
48
|
+
if managed_instance_id and not isinstance(managed_instance_id, str):
|
49
|
+
raise TypeError("Expected argument 'managed_instance_id' to be a str")
|
50
|
+
pulumi.set(__self__, "managed_instance_id", managed_instance_id)
|
51
|
+
if medium_severity_library_count and not isinstance(medium_severity_library_count, int):
|
52
|
+
raise TypeError("Expected argument 'medium_severity_library_count' to be a int")
|
53
|
+
pulumi.set(__self__, "medium_severity_library_count", medium_severity_library_count)
|
54
|
+
if statically_detected_library_count and not isinstance(statically_detected_library_count, int):
|
55
|
+
raise TypeError("Expected argument 'statically_detected_library_count' to be a int")
|
56
|
+
pulumi.set(__self__, "statically_detected_library_count", statically_detected_library_count)
|
57
|
+
if time_end and not isinstance(time_end, str):
|
58
|
+
raise TypeError("Expected argument 'time_end' to be a str")
|
59
|
+
pulumi.set(__self__, "time_end", time_end)
|
60
|
+
if time_start and not isinstance(time_start, str):
|
61
|
+
raise TypeError("Expected argument 'time_start' to be a str")
|
62
|
+
pulumi.set(__self__, "time_start", time_start)
|
63
|
+
if uncorrelated_package_count and not isinstance(uncorrelated_package_count, int):
|
64
|
+
raise TypeError("Expected argument 'uncorrelated_package_count' to be a int")
|
65
|
+
pulumi.set(__self__, "uncorrelated_package_count", uncorrelated_package_count)
|
66
|
+
|
67
|
+
@_builtins.property
|
68
|
+
@pulumi.getter(name="applicationId")
|
69
|
+
def application_id(self) -> Optional[_builtins.str]:
|
70
|
+
return pulumi.get(self, "application_id")
|
71
|
+
|
72
|
+
@_builtins.property
|
73
|
+
@pulumi.getter(name="dynamicallyDetectedLibraryCount")
|
74
|
+
def dynamically_detected_library_count(self) -> _builtins.int:
|
75
|
+
return pulumi.get(self, "dynamically_detected_library_count")
|
76
|
+
|
77
|
+
@_builtins.property
|
78
|
+
@pulumi.getter(name="fleetId")
|
79
|
+
def fleet_id(self) -> Optional[_builtins.str]:
|
80
|
+
return pulumi.get(self, "fleet_id")
|
81
|
+
|
82
|
+
@_builtins.property
|
83
|
+
@pulumi.getter(name="highSeverityLibraryCount")
|
84
|
+
def high_severity_library_count(self) -> _builtins.int:
|
85
|
+
return pulumi.get(self, "high_severity_library_count")
|
86
|
+
|
87
|
+
@_builtins.property
|
88
|
+
@pulumi.getter
|
89
|
+
def id(self) -> _builtins.str:
|
90
|
+
"""
|
91
|
+
The provider-assigned unique ID for this managed resource.
|
92
|
+
"""
|
93
|
+
return pulumi.get(self, "id")
|
94
|
+
|
95
|
+
@_builtins.property
|
96
|
+
@pulumi.getter(name="lowSeverityLibraryCount")
|
97
|
+
def low_severity_library_count(self) -> _builtins.int:
|
98
|
+
return pulumi.get(self, "low_severity_library_count")
|
99
|
+
|
100
|
+
@_builtins.property
|
101
|
+
@pulumi.getter(name="managedInstanceId")
|
102
|
+
def managed_instance_id(self) -> Optional[_builtins.str]:
|
103
|
+
return pulumi.get(self, "managed_instance_id")
|
104
|
+
|
105
|
+
@_builtins.property
|
106
|
+
@pulumi.getter(name="mediumSeverityLibraryCount")
|
107
|
+
def medium_severity_library_count(self) -> _builtins.int:
|
108
|
+
return pulumi.get(self, "medium_severity_library_count")
|
109
|
+
|
110
|
+
@_builtins.property
|
111
|
+
@pulumi.getter(name="staticallyDetectedLibraryCount")
|
112
|
+
def statically_detected_library_count(self) -> _builtins.int:
|
113
|
+
return pulumi.get(self, "statically_detected_library_count")
|
114
|
+
|
115
|
+
@_builtins.property
|
116
|
+
@pulumi.getter(name="timeEnd")
|
117
|
+
def time_end(self) -> Optional[_builtins.str]:
|
118
|
+
return pulumi.get(self, "time_end")
|
119
|
+
|
120
|
+
@_builtins.property
|
121
|
+
@pulumi.getter(name="timeStart")
|
122
|
+
def time_start(self) -> Optional[_builtins.str]:
|
123
|
+
return pulumi.get(self, "time_start")
|
124
|
+
|
125
|
+
@_builtins.property
|
126
|
+
@pulumi.getter(name="uncorrelatedPackageCount")
|
127
|
+
def uncorrelated_package_count(self) -> _builtins.int:
|
128
|
+
return pulumi.get(self, "uncorrelated_package_count")
|
129
|
+
|
130
|
+
|
131
|
+
class AwaitableGetFleetSummarizeLibraryInventoryResult(GetFleetSummarizeLibraryInventoryResult):
|
132
|
+
# pylint: disable=using-constant-test
|
133
|
+
def __await__(self):
|
134
|
+
if False:
|
135
|
+
yield self
|
136
|
+
return GetFleetSummarizeLibraryInventoryResult(
|
137
|
+
application_id=self.application_id,
|
138
|
+
dynamically_detected_library_count=self.dynamically_detected_library_count,
|
139
|
+
fleet_id=self.fleet_id,
|
140
|
+
high_severity_library_count=self.high_severity_library_count,
|
141
|
+
id=self.id,
|
142
|
+
low_severity_library_count=self.low_severity_library_count,
|
143
|
+
managed_instance_id=self.managed_instance_id,
|
144
|
+
medium_severity_library_count=self.medium_severity_library_count,
|
145
|
+
statically_detected_library_count=self.statically_detected_library_count,
|
146
|
+
time_end=self.time_end,
|
147
|
+
time_start=self.time_start,
|
148
|
+
uncorrelated_package_count=self.uncorrelated_package_count)
|
149
|
+
|
150
|
+
|
151
|
+
def get_fleet_summarize_library_inventory(application_id: Optional[_builtins.str] = None,
|
152
|
+
fleet_id: Optional[_builtins.str] = None,
|
153
|
+
managed_instance_id: Optional[_builtins.str] = None,
|
154
|
+
time_end: Optional[_builtins.str] = None,
|
155
|
+
time_start: Optional[_builtins.str] = None,
|
156
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFleetSummarizeLibraryInventoryResult:
|
157
|
+
"""
|
158
|
+
Use this data source to access information about an existing resource.
|
159
|
+
"""
|
160
|
+
__args__ = dict()
|
161
|
+
__args__['applicationId'] = application_id
|
162
|
+
__args__['fleetId'] = fleet_id
|
163
|
+
__args__['managedInstanceId'] = managed_instance_id
|
164
|
+
__args__['timeEnd'] = time_end
|
165
|
+
__args__['timeStart'] = time_start
|
166
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
167
|
+
__ret__ = pulumi.runtime.invoke('oci:Jms/getFleetSummarizeLibraryInventory:getFleetSummarizeLibraryInventory', __args__, opts=opts, typ=GetFleetSummarizeLibraryInventoryResult).value
|
168
|
+
|
169
|
+
return AwaitableGetFleetSummarizeLibraryInventoryResult(
|
170
|
+
application_id=pulumi.get(__ret__, 'application_id'),
|
171
|
+
dynamically_detected_library_count=pulumi.get(__ret__, 'dynamically_detected_library_count'),
|
172
|
+
fleet_id=pulumi.get(__ret__, 'fleet_id'),
|
173
|
+
high_severity_library_count=pulumi.get(__ret__, 'high_severity_library_count'),
|
174
|
+
id=pulumi.get(__ret__, 'id'),
|
175
|
+
low_severity_library_count=pulumi.get(__ret__, 'low_severity_library_count'),
|
176
|
+
managed_instance_id=pulumi.get(__ret__, 'managed_instance_id'),
|
177
|
+
medium_severity_library_count=pulumi.get(__ret__, 'medium_severity_library_count'),
|
178
|
+
statically_detected_library_count=pulumi.get(__ret__, 'statically_detected_library_count'),
|
179
|
+
time_end=pulumi.get(__ret__, 'time_end'),
|
180
|
+
time_start=pulumi.get(__ret__, 'time_start'),
|
181
|
+
uncorrelated_package_count=pulumi.get(__ret__, 'uncorrelated_package_count'))
|
182
|
+
def get_fleet_summarize_library_inventory_output(application_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
183
|
+
fleet_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
184
|
+
managed_instance_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
185
|
+
time_end: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
186
|
+
time_start: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
187
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFleetSummarizeLibraryInventoryResult]:
|
188
|
+
"""
|
189
|
+
Use this data source to access information about an existing resource.
|
190
|
+
"""
|
191
|
+
__args__ = dict()
|
192
|
+
__args__['applicationId'] = application_id
|
193
|
+
__args__['fleetId'] = fleet_id
|
194
|
+
__args__['managedInstanceId'] = managed_instance_id
|
195
|
+
__args__['timeEnd'] = time_end
|
196
|
+
__args__['timeStart'] = time_start
|
197
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
198
|
+
__ret__ = pulumi.runtime.invoke_output('oci:Jms/getFleetSummarizeLibraryInventory:getFleetSummarizeLibraryInventory', __args__, opts=opts, typ=GetFleetSummarizeLibraryInventoryResult)
|
199
|
+
return __ret__.apply(lambda __response__: GetFleetSummarizeLibraryInventoryResult(
|
200
|
+
application_id=pulumi.get(__response__, 'application_id'),
|
201
|
+
dynamically_detected_library_count=pulumi.get(__response__, 'dynamically_detected_library_count'),
|
202
|
+
fleet_id=pulumi.get(__response__, 'fleet_id'),
|
203
|
+
high_severity_library_count=pulumi.get(__response__, 'high_severity_library_count'),
|
204
|
+
id=pulumi.get(__response__, 'id'),
|
205
|
+
low_severity_library_count=pulumi.get(__response__, 'low_severity_library_count'),
|
206
|
+
managed_instance_id=pulumi.get(__response__, 'managed_instance_id'),
|
207
|
+
medium_severity_library_count=pulumi.get(__response__, 'medium_severity_library_count'),
|
208
|
+
statically_detected_library_count=pulumi.get(__response__, 'statically_detected_library_count'),
|
209
|
+
time_end=pulumi.get(__response__, 'time_end'),
|
210
|
+
time_start=pulumi.get(__response__, 'time_start'),
|
211
|
+
uncorrelated_package_count=pulumi.get(__response__, 'uncorrelated_package_count')))
|
@@ -0,0 +1,239 @@
|
|
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
|
+
'GetFleetUncorrelatedPackageApplicationsResult',
|
21
|
+
'AwaitableGetFleetUncorrelatedPackageApplicationsResult',
|
22
|
+
'get_fleet_uncorrelated_package_applications',
|
23
|
+
'get_fleet_uncorrelated_package_applications_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetFleetUncorrelatedPackageApplicationsResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getFleetUncorrelatedPackageApplications.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, application_id=None, filters=None, fleet_id=None, id=None, managed_instance_id=None, package_name=None, time_end=None, time_start=None, uncorrelated_package_application_usage_collections=None):
|
32
|
+
if application_id and not isinstance(application_id, str):
|
33
|
+
raise TypeError("Expected argument 'application_id' to be a str")
|
34
|
+
pulumi.set(__self__, "application_id", application_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 fleet_id and not isinstance(fleet_id, str):
|
39
|
+
raise TypeError("Expected argument 'fleet_id' to be a str")
|
40
|
+
pulumi.set(__self__, "fleet_id", fleet_id)
|
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 managed_instance_id and not isinstance(managed_instance_id, str):
|
45
|
+
raise TypeError("Expected argument 'managed_instance_id' to be a str")
|
46
|
+
pulumi.set(__self__, "managed_instance_id", managed_instance_id)
|
47
|
+
if package_name and not isinstance(package_name, str):
|
48
|
+
raise TypeError("Expected argument 'package_name' to be a str")
|
49
|
+
pulumi.set(__self__, "package_name", package_name)
|
50
|
+
if time_end and not isinstance(time_end, str):
|
51
|
+
raise TypeError("Expected argument 'time_end' to be a str")
|
52
|
+
pulumi.set(__self__, "time_end", time_end)
|
53
|
+
if time_start and not isinstance(time_start, str):
|
54
|
+
raise TypeError("Expected argument 'time_start' to be a str")
|
55
|
+
pulumi.set(__self__, "time_start", time_start)
|
56
|
+
if uncorrelated_package_application_usage_collections and not isinstance(uncorrelated_package_application_usage_collections, list):
|
57
|
+
raise TypeError("Expected argument 'uncorrelated_package_application_usage_collections' to be a list")
|
58
|
+
pulumi.set(__self__, "uncorrelated_package_application_usage_collections", uncorrelated_package_application_usage_collections)
|
59
|
+
|
60
|
+
@_builtins.property
|
61
|
+
@pulumi.getter(name="applicationId")
|
62
|
+
def application_id(self) -> Optional[_builtins.str]:
|
63
|
+
return pulumi.get(self, "application_id")
|
64
|
+
|
65
|
+
@_builtins.property
|
66
|
+
@pulumi.getter
|
67
|
+
def filters(self) -> Optional[Sequence['outputs.GetFleetUncorrelatedPackageApplicationsFilterResult']]:
|
68
|
+
return pulumi.get(self, "filters")
|
69
|
+
|
70
|
+
@_builtins.property
|
71
|
+
@pulumi.getter(name="fleetId")
|
72
|
+
def fleet_id(self) -> _builtins.str:
|
73
|
+
return pulumi.get(self, "fleet_id")
|
74
|
+
|
75
|
+
@_builtins.property
|
76
|
+
@pulumi.getter
|
77
|
+
def id(self) -> _builtins.str:
|
78
|
+
"""
|
79
|
+
The provider-assigned unique ID for this managed resource.
|
80
|
+
"""
|
81
|
+
return pulumi.get(self, "id")
|
82
|
+
|
83
|
+
@_builtins.property
|
84
|
+
@pulumi.getter(name="managedInstanceId")
|
85
|
+
def managed_instance_id(self) -> Optional[_builtins.str]:
|
86
|
+
return pulumi.get(self, "managed_instance_id")
|
87
|
+
|
88
|
+
@_builtins.property
|
89
|
+
@pulumi.getter(name="packageName")
|
90
|
+
def package_name(self) -> _builtins.str:
|
91
|
+
return pulumi.get(self, "package_name")
|
92
|
+
|
93
|
+
@_builtins.property
|
94
|
+
@pulumi.getter(name="timeEnd")
|
95
|
+
def time_end(self) -> Optional[_builtins.str]:
|
96
|
+
return pulumi.get(self, "time_end")
|
97
|
+
|
98
|
+
@_builtins.property
|
99
|
+
@pulumi.getter(name="timeStart")
|
100
|
+
def time_start(self) -> Optional[_builtins.str]:
|
101
|
+
return pulumi.get(self, "time_start")
|
102
|
+
|
103
|
+
@_builtins.property
|
104
|
+
@pulumi.getter(name="uncorrelatedPackageApplicationUsageCollections")
|
105
|
+
def uncorrelated_package_application_usage_collections(self) -> Sequence['outputs.GetFleetUncorrelatedPackageApplicationsUncorrelatedPackageApplicationUsageCollectionResult']:
|
106
|
+
"""
|
107
|
+
The list of uncorrelated_package_application_usage_collection.
|
108
|
+
"""
|
109
|
+
return pulumi.get(self, "uncorrelated_package_application_usage_collections")
|
110
|
+
|
111
|
+
|
112
|
+
class AwaitableGetFleetUncorrelatedPackageApplicationsResult(GetFleetUncorrelatedPackageApplicationsResult):
|
113
|
+
# pylint: disable=using-constant-test
|
114
|
+
def __await__(self):
|
115
|
+
if False:
|
116
|
+
yield self
|
117
|
+
return GetFleetUncorrelatedPackageApplicationsResult(
|
118
|
+
application_id=self.application_id,
|
119
|
+
filters=self.filters,
|
120
|
+
fleet_id=self.fleet_id,
|
121
|
+
id=self.id,
|
122
|
+
managed_instance_id=self.managed_instance_id,
|
123
|
+
package_name=self.package_name,
|
124
|
+
time_end=self.time_end,
|
125
|
+
time_start=self.time_start,
|
126
|
+
uncorrelated_package_application_usage_collections=self.uncorrelated_package_application_usage_collections)
|
127
|
+
|
128
|
+
|
129
|
+
def get_fleet_uncorrelated_package_applications(application_id: Optional[_builtins.str] = None,
|
130
|
+
filters: Optional[Sequence[Union['GetFleetUncorrelatedPackageApplicationsFilterArgs', 'GetFleetUncorrelatedPackageApplicationsFilterArgsDict']]] = None,
|
131
|
+
fleet_id: Optional[_builtins.str] = None,
|
132
|
+
managed_instance_id: Optional[_builtins.str] = None,
|
133
|
+
package_name: Optional[_builtins.str] = None,
|
134
|
+
time_end: Optional[_builtins.str] = None,
|
135
|
+
time_start: Optional[_builtins.str] = None,
|
136
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFleetUncorrelatedPackageApplicationsResult:
|
137
|
+
"""
|
138
|
+
This data source provides the list of Fleet Uncorrelated Package Applications in Oracle Cloud Infrastructure Jms service.
|
139
|
+
|
140
|
+
List applications where an uncorrelated package has been detected, filtered by query parameters.
|
141
|
+
|
142
|
+
## Example Usage
|
143
|
+
|
144
|
+
```python
|
145
|
+
import pulumi
|
146
|
+
import pulumi_oci as oci
|
147
|
+
|
148
|
+
test_fleet_uncorrelated_package_applications = oci.Jms.get_fleet_uncorrelated_package_applications(fleet_id=test_fleet["id"],
|
149
|
+
package_name=fleet_uncorrelated_package_application_package_name,
|
150
|
+
application_id=test_application["id"],
|
151
|
+
managed_instance_id=test_managed_instance["id"],
|
152
|
+
time_end=fleet_uncorrelated_package_application_time_end,
|
153
|
+
time_start=fleet_uncorrelated_package_application_time_start)
|
154
|
+
```
|
155
|
+
|
156
|
+
|
157
|
+
:param _builtins.str application_id: The Fleet-unique identifier of the application.
|
158
|
+
:param _builtins.str fleet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
159
|
+
:param _builtins.str managed_instance_id: The Fleet-unique identifier of the managed instance.
|
160
|
+
:param _builtins.str package_name: The unique identifier of a Java package.
|
161
|
+
:param _builtins.str time_end: The end of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
162
|
+
:param _builtins.str time_start: The start of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
163
|
+
"""
|
164
|
+
__args__ = dict()
|
165
|
+
__args__['applicationId'] = application_id
|
166
|
+
__args__['filters'] = filters
|
167
|
+
__args__['fleetId'] = fleet_id
|
168
|
+
__args__['managedInstanceId'] = managed_instance_id
|
169
|
+
__args__['packageName'] = package_name
|
170
|
+
__args__['timeEnd'] = time_end
|
171
|
+
__args__['timeStart'] = time_start
|
172
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
173
|
+
__ret__ = pulumi.runtime.invoke('oci:Jms/getFleetUncorrelatedPackageApplications:getFleetUncorrelatedPackageApplications', __args__, opts=opts, typ=GetFleetUncorrelatedPackageApplicationsResult).value
|
174
|
+
|
175
|
+
return AwaitableGetFleetUncorrelatedPackageApplicationsResult(
|
176
|
+
application_id=pulumi.get(__ret__, 'application_id'),
|
177
|
+
filters=pulumi.get(__ret__, 'filters'),
|
178
|
+
fleet_id=pulumi.get(__ret__, 'fleet_id'),
|
179
|
+
id=pulumi.get(__ret__, 'id'),
|
180
|
+
managed_instance_id=pulumi.get(__ret__, 'managed_instance_id'),
|
181
|
+
package_name=pulumi.get(__ret__, 'package_name'),
|
182
|
+
time_end=pulumi.get(__ret__, 'time_end'),
|
183
|
+
time_start=pulumi.get(__ret__, 'time_start'),
|
184
|
+
uncorrelated_package_application_usage_collections=pulumi.get(__ret__, 'uncorrelated_package_application_usage_collections'))
|
185
|
+
def get_fleet_uncorrelated_package_applications_output(application_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
186
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetFleetUncorrelatedPackageApplicationsFilterArgs', 'GetFleetUncorrelatedPackageApplicationsFilterArgsDict']]]]] = None,
|
187
|
+
fleet_id: Optional[pulumi.Input[_builtins.str]] = None,
|
188
|
+
managed_instance_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
189
|
+
package_name: Optional[pulumi.Input[_builtins.str]] = None,
|
190
|
+
time_end: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
191
|
+
time_start: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
192
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFleetUncorrelatedPackageApplicationsResult]:
|
193
|
+
"""
|
194
|
+
This data source provides the list of Fleet Uncorrelated Package Applications in Oracle Cloud Infrastructure Jms service.
|
195
|
+
|
196
|
+
List applications where an uncorrelated package has been detected, filtered by query parameters.
|
197
|
+
|
198
|
+
## Example Usage
|
199
|
+
|
200
|
+
```python
|
201
|
+
import pulumi
|
202
|
+
import pulumi_oci as oci
|
203
|
+
|
204
|
+
test_fleet_uncorrelated_package_applications = oci.Jms.get_fleet_uncorrelated_package_applications(fleet_id=test_fleet["id"],
|
205
|
+
package_name=fleet_uncorrelated_package_application_package_name,
|
206
|
+
application_id=test_application["id"],
|
207
|
+
managed_instance_id=test_managed_instance["id"],
|
208
|
+
time_end=fleet_uncorrelated_package_application_time_end,
|
209
|
+
time_start=fleet_uncorrelated_package_application_time_start)
|
210
|
+
```
|
211
|
+
|
212
|
+
|
213
|
+
:param _builtins.str application_id: The Fleet-unique identifier of the application.
|
214
|
+
:param _builtins.str fleet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
215
|
+
:param _builtins.str managed_instance_id: The Fleet-unique identifier of the managed instance.
|
216
|
+
:param _builtins.str package_name: The unique identifier of a Java package.
|
217
|
+
:param _builtins.str time_end: The end of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
218
|
+
:param _builtins.str time_start: The start of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
219
|
+
"""
|
220
|
+
__args__ = dict()
|
221
|
+
__args__['applicationId'] = application_id
|
222
|
+
__args__['filters'] = filters
|
223
|
+
__args__['fleetId'] = fleet_id
|
224
|
+
__args__['managedInstanceId'] = managed_instance_id
|
225
|
+
__args__['packageName'] = package_name
|
226
|
+
__args__['timeEnd'] = time_end
|
227
|
+
__args__['timeStart'] = time_start
|
228
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
229
|
+
__ret__ = pulumi.runtime.invoke_output('oci:Jms/getFleetUncorrelatedPackageApplications:getFleetUncorrelatedPackageApplications', __args__, opts=opts, typ=GetFleetUncorrelatedPackageApplicationsResult)
|
230
|
+
return __ret__.apply(lambda __response__: GetFleetUncorrelatedPackageApplicationsResult(
|
231
|
+
application_id=pulumi.get(__response__, 'application_id'),
|
232
|
+
filters=pulumi.get(__response__, 'filters'),
|
233
|
+
fleet_id=pulumi.get(__response__, 'fleet_id'),
|
234
|
+
id=pulumi.get(__response__, 'id'),
|
235
|
+
managed_instance_id=pulumi.get(__response__, 'managed_instance_id'),
|
236
|
+
package_name=pulumi.get(__response__, 'package_name'),
|
237
|
+
time_end=pulumi.get(__response__, 'time_end'),
|
238
|
+
time_start=pulumi.get(__response__, 'time_start'),
|
239
|
+
uncorrelated_package_application_usage_collections=pulumi.get(__response__, 'uncorrelated_package_application_usage_collections')))
|