pulumi-oci 2.6.0a1722924801__py3-none-any.whl → 2.6.0a1723107075__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 +32 -0
- pulumi_oci/bigdataservice/_inputs.py +157 -14
- pulumi_oci/bigdataservice/bds_instance.py +128 -0
- pulumi_oci/bigdataservice/bds_instance_patch_action.py +64 -3
- pulumi_oci/bigdataservice/get_bds_instance.py +31 -1
- pulumi_oci/bigdataservice/outputs.py +257 -30
- pulumi_oci/devops/__init__.py +6 -0
- pulumi_oci/devops/_inputs.py +531 -32
- pulumi_oci/devops/get_build_runs.py +0 -5
- pulumi_oci/devops/get_project_repository_setting.py +129 -0
- pulumi_oci/devops/get_repositories.py +1 -1
- pulumi_oci/devops/get_repository.py +17 -4
- pulumi_oci/devops/get_repository_diffs.py +20 -3
- pulumi_oci/devops/get_repository_protected_branches.py +150 -0
- pulumi_oci/devops/get_repository_ref.py +2 -2
- pulumi_oci/devops/get_repository_setting.py +142 -0
- pulumi_oci/devops/get_triggers.py +0 -5
- pulumi_oci/devops/outputs.py +1216 -180
- pulumi_oci/devops/project_repository_setting.py +338 -0
- pulumi_oci/devops/repository.py +66 -75
- pulumi_oci/devops/repository_protected_branch_management.py +333 -0
- pulumi_oci/devops/repository_ref.py +2 -2
- pulumi_oci/devops/repository_setting.py +391 -0
- pulumi_oci/jms/__init__.py +4 -0
- pulumi_oci/jms/_inputs.py +80 -0
- pulumi_oci/jms/get_agent_installers.py +190 -0
- pulumi_oci/jms/get_fleet_blocklists.py +2 -2
- pulumi_oci/jms/get_fleet_crypto_analysis_result.py +29 -3
- pulumi_oci/jms/get_fleet_crypto_analysis_results.py +97 -3
- pulumi_oci/jms/get_fleet_export_setting.py +3 -3
- pulumi_oci/jms/get_fleet_export_status.py +2 -2
- pulumi_oci/jms/get_fleet_java_migration_analysis_result.py +2 -2
- pulumi_oci/jms/get_fleet_java_migration_analysis_results.py +45 -5
- pulumi_oci/jms/get_fleet_performance_tuning_analysis_result.py +4 -4
- pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +25 -5
- pulumi_oci/jms/get_fleets.py +2 -2
- pulumi_oci/jms/get_installation_site.py +4 -4
- pulumi_oci/jms/get_installation_sites.py +4 -4
- pulumi_oci/jms/get_java_downloads_java_download_tokens.py +2 -2
- pulumi_oci/jms/get_java_downloads_java_license_acceptance_records.py +2 -2
- pulumi_oci/jms/get_java_family.py +14 -1
- pulumi_oci/jms/get_jms_plugin.py +313 -0
- pulumi_oci/jms/get_jms_plugins.py +291 -0
- pulumi_oci/jms/jms_plugin.py +731 -0
- pulumi_oci/jms/outputs.py +488 -32
- pulumi_oci/osmanagementhub/get_software_source.py +19 -1
- pulumi_oci/osmanagementhub/software_source.py +82 -0
- pulumi_oci/psql/_inputs.py +8 -4
- pulumi_oci/psql/backup.py +4 -4
- pulumi_oci/psql/configuration.py +141 -38
- pulumi_oci/psql/db_system.py +53 -55
- pulumi_oci/psql/get_backup.py +1 -1
- pulumi_oci/psql/get_configuration.py +27 -1
- pulumi_oci/psql/get_configurations.py +2 -2
- pulumi_oci/psql/get_default_configuration.py +15 -2
- pulumi_oci/psql/get_default_configurations.py +2 -2
- pulumi_oci/psql/outputs.py +176 -13
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.6.0a1722924801.dist-info → pulumi_oci-2.6.0a1723107075.dist-info}/METADATA +1 -1
- {pulumi_oci-2.6.0a1722924801.dist-info → pulumi_oci-2.6.0a1723107075.dist-info}/RECORD +62 -52
- {pulumi_oci-2.6.0a1722924801.dist-info → pulumi_oci-2.6.0a1723107075.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.6.0a1722924801.dist-info → pulumi_oci-2.6.0a1723107075.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,190 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from .. import _utilities
|
11
|
+
from . import outputs
|
12
|
+
from ._inputs import *
|
13
|
+
|
14
|
+
__all__ = [
|
15
|
+
'GetAgentInstallersResult',
|
16
|
+
'AwaitableGetAgentInstallersResult',
|
17
|
+
'get_agent_installers',
|
18
|
+
'get_agent_installers_output',
|
19
|
+
]
|
20
|
+
|
21
|
+
@pulumi.output_type
|
22
|
+
class GetAgentInstallersResult:
|
23
|
+
"""
|
24
|
+
A collection of values returned by getAgentInstallers.
|
25
|
+
"""
|
26
|
+
def __init__(__self__, agent_installer_collections=None, compartment_id=None, filters=None, fleet_id=None, id=None, os_family=None, platform_architecture=None):
|
27
|
+
if agent_installer_collections and not isinstance(agent_installer_collections, list):
|
28
|
+
raise TypeError("Expected argument 'agent_installer_collections' to be a list")
|
29
|
+
pulumi.set(__self__, "agent_installer_collections", agent_installer_collections)
|
30
|
+
if compartment_id and not isinstance(compartment_id, str):
|
31
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
32
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
33
|
+
if filters and not isinstance(filters, list):
|
34
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
35
|
+
pulumi.set(__self__, "filters", filters)
|
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 id and not isinstance(id, str):
|
40
|
+
raise TypeError("Expected argument 'id' to be a str")
|
41
|
+
pulumi.set(__self__, "id", id)
|
42
|
+
if os_family and not isinstance(os_family, str):
|
43
|
+
raise TypeError("Expected argument 'os_family' to be a str")
|
44
|
+
pulumi.set(__self__, "os_family", os_family)
|
45
|
+
if platform_architecture and not isinstance(platform_architecture, str):
|
46
|
+
raise TypeError("Expected argument 'platform_architecture' to be a str")
|
47
|
+
pulumi.set(__self__, "platform_architecture", platform_architecture)
|
48
|
+
|
49
|
+
@property
|
50
|
+
@pulumi.getter(name="agentInstallerCollections")
|
51
|
+
def agent_installer_collections(self) -> Sequence['outputs.GetAgentInstallersAgentInstallerCollectionResult']:
|
52
|
+
"""
|
53
|
+
The list of agent_installer_collection.
|
54
|
+
"""
|
55
|
+
return pulumi.get(self, "agent_installer_collections")
|
56
|
+
|
57
|
+
@property
|
58
|
+
@pulumi.getter(name="compartmentId")
|
59
|
+
def compartment_id(self) -> Optional[str]:
|
60
|
+
return pulumi.get(self, "compartment_id")
|
61
|
+
|
62
|
+
@property
|
63
|
+
@pulumi.getter
|
64
|
+
def filters(self) -> Optional[Sequence['outputs.GetAgentInstallersFilterResult']]:
|
65
|
+
return pulumi.get(self, "filters")
|
66
|
+
|
67
|
+
@property
|
68
|
+
@pulumi.getter(name="fleetId")
|
69
|
+
def fleet_id(self) -> Optional[str]:
|
70
|
+
return pulumi.get(self, "fleet_id")
|
71
|
+
|
72
|
+
@property
|
73
|
+
@pulumi.getter
|
74
|
+
def id(self) -> str:
|
75
|
+
"""
|
76
|
+
The provider-assigned unique ID for this managed resource.
|
77
|
+
"""
|
78
|
+
return pulumi.get(self, "id")
|
79
|
+
|
80
|
+
@property
|
81
|
+
@pulumi.getter(name="osFamily")
|
82
|
+
def os_family(self) -> Optional[str]:
|
83
|
+
"""
|
84
|
+
The target operating system family for the agent installer.
|
85
|
+
"""
|
86
|
+
return pulumi.get(self, "os_family")
|
87
|
+
|
88
|
+
@property
|
89
|
+
@pulumi.getter(name="platformArchitecture")
|
90
|
+
def platform_architecture(self) -> Optional[str]:
|
91
|
+
"""
|
92
|
+
The target operating system architecture for the installer.
|
93
|
+
"""
|
94
|
+
return pulumi.get(self, "platform_architecture")
|
95
|
+
|
96
|
+
|
97
|
+
class AwaitableGetAgentInstallersResult(GetAgentInstallersResult):
|
98
|
+
# pylint: disable=using-constant-test
|
99
|
+
def __await__(self):
|
100
|
+
if False:
|
101
|
+
yield self
|
102
|
+
return GetAgentInstallersResult(
|
103
|
+
agent_installer_collections=self.agent_installer_collections,
|
104
|
+
compartment_id=self.compartment_id,
|
105
|
+
filters=self.filters,
|
106
|
+
fleet_id=self.fleet_id,
|
107
|
+
id=self.id,
|
108
|
+
os_family=self.os_family,
|
109
|
+
platform_architecture=self.platform_architecture)
|
110
|
+
|
111
|
+
|
112
|
+
def get_agent_installers(compartment_id: Optional[str] = None,
|
113
|
+
filters: Optional[Sequence[pulumi.InputType['GetAgentInstallersFilterArgs']]] = None,
|
114
|
+
fleet_id: Optional[str] = None,
|
115
|
+
os_family: Optional[str] = None,
|
116
|
+
platform_architecture: Optional[str] = None,
|
117
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAgentInstallersResult:
|
118
|
+
"""
|
119
|
+
This data source provides the list of Agent Installers in Oracle Cloud Infrastructure Jms service.
|
120
|
+
|
121
|
+
Returns a list of the agent installer information.
|
122
|
+
|
123
|
+
## Example Usage
|
124
|
+
|
125
|
+
```python
|
126
|
+
import pulumi
|
127
|
+
import pulumi_oci as oci
|
128
|
+
|
129
|
+
test_agent_installers = oci.Jms.get_agent_installers(compartment_id=compartment_id,
|
130
|
+
fleet_id=test_fleet["id"],
|
131
|
+
os_family=agent_installer_os_family,
|
132
|
+
platform_architecture=agent_installer_platform_architecture)
|
133
|
+
```
|
134
|
+
|
135
|
+
|
136
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
137
|
+
:param str fleet_id: The ID of the Fleet.
|
138
|
+
:param str os_family: The OS family for the agent installer.
|
139
|
+
:param str platform_architecture: The platform architecture for the agent installer.
|
140
|
+
"""
|
141
|
+
__args__ = dict()
|
142
|
+
__args__['compartmentId'] = compartment_id
|
143
|
+
__args__['filters'] = filters
|
144
|
+
__args__['fleetId'] = fleet_id
|
145
|
+
__args__['osFamily'] = os_family
|
146
|
+
__args__['platformArchitecture'] = platform_architecture
|
147
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
148
|
+
__ret__ = pulumi.runtime.invoke('oci:Jms/getAgentInstallers:getAgentInstallers', __args__, opts=opts, typ=GetAgentInstallersResult).value
|
149
|
+
|
150
|
+
return AwaitableGetAgentInstallersResult(
|
151
|
+
agent_installer_collections=pulumi.get(__ret__, 'agent_installer_collections'),
|
152
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
153
|
+
filters=pulumi.get(__ret__, 'filters'),
|
154
|
+
fleet_id=pulumi.get(__ret__, 'fleet_id'),
|
155
|
+
id=pulumi.get(__ret__, 'id'),
|
156
|
+
os_family=pulumi.get(__ret__, 'os_family'),
|
157
|
+
platform_architecture=pulumi.get(__ret__, 'platform_architecture'))
|
158
|
+
|
159
|
+
|
160
|
+
@_utilities.lift_output_func(get_agent_installers)
|
161
|
+
def get_agent_installers_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
|
162
|
+
filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetAgentInstallersFilterArgs']]]]] = None,
|
163
|
+
fleet_id: Optional[pulumi.Input[Optional[str]]] = None,
|
164
|
+
os_family: Optional[pulumi.Input[Optional[str]]] = None,
|
165
|
+
platform_architecture: Optional[pulumi.Input[Optional[str]]] = None,
|
166
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAgentInstallersResult]:
|
167
|
+
"""
|
168
|
+
This data source provides the list of Agent Installers in Oracle Cloud Infrastructure Jms service.
|
169
|
+
|
170
|
+
Returns a list of the agent installer information.
|
171
|
+
|
172
|
+
## Example Usage
|
173
|
+
|
174
|
+
```python
|
175
|
+
import pulumi
|
176
|
+
import pulumi_oci as oci
|
177
|
+
|
178
|
+
test_agent_installers = oci.Jms.get_agent_installers(compartment_id=compartment_id,
|
179
|
+
fleet_id=test_fleet["id"],
|
180
|
+
os_family=agent_installer_os_family,
|
181
|
+
platform_architecture=agent_installer_platform_architecture)
|
182
|
+
```
|
183
|
+
|
184
|
+
|
185
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
186
|
+
:param str fleet_id: The ID of the Fleet.
|
187
|
+
:param str os_family: The OS family for the agent installer.
|
188
|
+
:param str platform_architecture: The platform architecture for the agent installer.
|
189
|
+
"""
|
190
|
+
...
|
@@ -120,7 +120,7 @@ def get_fleet_blocklists(filters: Optional[Sequence[pulumi.InputType['GetFleetBl
|
|
120
120
|
import pulumi_oci as oci
|
121
121
|
|
122
122
|
test_fleet_blocklists = oci.Jms.get_fleet_blocklists(fleet_id=test_fleet["id"],
|
123
|
-
managed_instance_id=
|
123
|
+
managed_instance_id=fleet_blocklist_managed_instance_id,
|
124
124
|
operation=fleet_blocklist_operation)
|
125
125
|
```
|
126
126
|
|
@@ -164,7 +164,7 @@ def get_fleet_blocklists_output(filters: Optional[pulumi.Input[Optional[Sequence
|
|
164
164
|
import pulumi_oci as oci
|
165
165
|
|
166
166
|
test_fleet_blocklists = oci.Jms.get_fleet_blocklists(fleet_id=test_fleet["id"],
|
167
|
-
managed_instance_id=
|
167
|
+
managed_instance_id=fleet_blocklist_managed_instance_id,
|
168
168
|
operation=fleet_blocklist_operation)
|
169
169
|
```
|
170
170
|
|
@@ -21,7 +21,7 @@ class GetFleetCryptoAnalysisResultResult:
|
|
21
21
|
"""
|
22
22
|
A collection of values returned by getFleetCryptoAnalysisResult.
|
23
23
|
"""
|
24
|
-
def __init__(__self__, aggregation_mode=None, bucket=None, crypto_analysis_result_id=None, crypto_roadmap_version=None, finding_count=None, fleet_id=None, host_name=None, id=None, managed_instance_id=None, namespace=None, non_compliant_finding_count=None, object=None, summarized_event_count=None, time_created=None, time_first_event=None, time_last_event=None, total_event_count=None, work_request_id=None):
|
24
|
+
def __init__(__self__, aggregation_mode=None, bucket=None, crypto_analysis_result_id=None, crypto_roadmap_version=None, finding_count=None, fleet_id=None, host_name=None, id=None, managed_instance_id=None, namespace=None, non_compliant_finding_count=None, object=None, summarized_event_count=None, time_created=None, time_finished=None, time_first_event=None, time_last_event=None, time_started=None, total_event_count=None, work_request_id=None):
|
25
25
|
if aggregation_mode and not isinstance(aggregation_mode, str):
|
26
26
|
raise TypeError("Expected argument 'aggregation_mode' to be a str")
|
27
27
|
pulumi.set(__self__, "aggregation_mode", aggregation_mode)
|
@@ -64,12 +64,18 @@ class GetFleetCryptoAnalysisResultResult:
|
|
64
64
|
if time_created and not isinstance(time_created, str):
|
65
65
|
raise TypeError("Expected argument 'time_created' to be a str")
|
66
66
|
pulumi.set(__self__, "time_created", time_created)
|
67
|
+
if time_finished and not isinstance(time_finished, str):
|
68
|
+
raise TypeError("Expected argument 'time_finished' to be a str")
|
69
|
+
pulumi.set(__self__, "time_finished", time_finished)
|
67
70
|
if time_first_event and not isinstance(time_first_event, str):
|
68
71
|
raise TypeError("Expected argument 'time_first_event' to be a str")
|
69
72
|
pulumi.set(__self__, "time_first_event", time_first_event)
|
70
73
|
if time_last_event and not isinstance(time_last_event, str):
|
71
74
|
raise TypeError("Expected argument 'time_last_event' to be a str")
|
72
75
|
pulumi.set(__self__, "time_last_event", time_last_event)
|
76
|
+
if time_started and not isinstance(time_started, str):
|
77
|
+
raise TypeError("Expected argument 'time_started' to be a str")
|
78
|
+
pulumi.set(__self__, "time_started", time_started)
|
73
79
|
if total_event_count and not isinstance(total_event_count, int):
|
74
80
|
raise TypeError("Expected argument 'total_event_count' to be a int")
|
75
81
|
pulumi.set(__self__, "total_event_count", total_event_count)
|
@@ -186,6 +192,14 @@ class GetFleetCryptoAnalysisResultResult:
|
|
186
192
|
"""
|
187
193
|
return pulumi.get(self, "time_created")
|
188
194
|
|
195
|
+
@property
|
196
|
+
@pulumi.getter(name="timeFinished")
|
197
|
+
def time_finished(self) -> str:
|
198
|
+
"""
|
199
|
+
The time the JFR recording has finished.
|
200
|
+
"""
|
201
|
+
return pulumi.get(self, "time_finished")
|
202
|
+
|
189
203
|
@property
|
190
204
|
@pulumi.getter(name="timeFirstEvent")
|
191
205
|
def time_first_event(self) -> str:
|
@@ -202,6 +216,14 @@ class GetFleetCryptoAnalysisResultResult:
|
|
202
216
|
"""
|
203
217
|
return pulumi.get(self, "time_last_event")
|
204
218
|
|
219
|
+
@property
|
220
|
+
@pulumi.getter(name="timeStarted")
|
221
|
+
def time_started(self) -> str:
|
222
|
+
"""
|
223
|
+
The time the JFR recording has started.
|
224
|
+
"""
|
225
|
+
return pulumi.get(self, "time_started")
|
226
|
+
|
205
227
|
@property
|
206
228
|
@pulumi.getter(name="totalEventCount")
|
207
229
|
def total_event_count(self) -> int:
|
@@ -239,8 +261,10 @@ class AwaitableGetFleetCryptoAnalysisResultResult(GetFleetCryptoAnalysisResultRe
|
|
239
261
|
object=self.object,
|
240
262
|
summarized_event_count=self.summarized_event_count,
|
241
263
|
time_created=self.time_created,
|
264
|
+
time_finished=self.time_finished,
|
242
265
|
time_first_event=self.time_first_event,
|
243
266
|
time_last_event=self.time_last_event,
|
267
|
+
time_started=self.time_started,
|
244
268
|
total_event_count=self.total_event_count,
|
245
269
|
work_request_id=self.work_request_id)
|
246
270
|
|
@@ -259,7 +283,7 @@ def get_fleet_crypto_analysis_result(crypto_analysis_result_id: Optional[str] =
|
|
259
283
|
import pulumi
|
260
284
|
import pulumi_oci as oci
|
261
285
|
|
262
|
-
test_fleet_crypto_analysis_result = oci.Jms.get_fleet_crypto_analysis_result(crypto_analysis_result_id=
|
286
|
+
test_fleet_crypto_analysis_result = oci.Jms.get_fleet_crypto_analysis_result(crypto_analysis_result_id=fleet_crypto_analysis_result_id,
|
263
287
|
fleet_id=test_fleet["id"])
|
264
288
|
```
|
265
289
|
|
@@ -288,8 +312,10 @@ def get_fleet_crypto_analysis_result(crypto_analysis_result_id: Optional[str] =
|
|
288
312
|
object=pulumi.get(__ret__, 'object'),
|
289
313
|
summarized_event_count=pulumi.get(__ret__, 'summarized_event_count'),
|
290
314
|
time_created=pulumi.get(__ret__, 'time_created'),
|
315
|
+
time_finished=pulumi.get(__ret__, 'time_finished'),
|
291
316
|
time_first_event=pulumi.get(__ret__, 'time_first_event'),
|
292
317
|
time_last_event=pulumi.get(__ret__, 'time_last_event'),
|
318
|
+
time_started=pulumi.get(__ret__, 'time_started'),
|
293
319
|
total_event_count=pulumi.get(__ret__, 'total_event_count'),
|
294
320
|
work_request_id=pulumi.get(__ret__, 'work_request_id'))
|
295
321
|
|
@@ -309,7 +335,7 @@ def get_fleet_crypto_analysis_result_output(crypto_analysis_result_id: Optional[
|
|
309
335
|
import pulumi
|
310
336
|
import pulumi_oci as oci
|
311
337
|
|
312
|
-
test_fleet_crypto_analysis_result = oci.Jms.get_fleet_crypto_analysis_result(crypto_analysis_result_id=
|
338
|
+
test_fleet_crypto_analysis_result = oci.Jms.get_fleet_crypto_analysis_result(crypto_analysis_result_id=fleet_crypto_analysis_result_id,
|
313
339
|
fleet_id=test_fleet["id"])
|
314
340
|
```
|
315
341
|
|
@@ -23,7 +23,7 @@ class GetFleetCryptoAnalysisResultsResult:
|
|
23
23
|
"""
|
24
24
|
A collection of values returned by getFleetCryptoAnalysisResults.
|
25
25
|
"""
|
26
|
-
def __init__(__self__, aggregation_mode=None, crypto_analysis_result_collections=None, filters=None, fleet_id=None, id=None, managed_instance_id=None, time_end=None, time_start=None):
|
26
|
+
def __init__(__self__, aggregation_mode=None, crypto_analysis_result_collections=None, filters=None, finding_count=None, finding_count_greater_than=None, fleet_id=None, host_name=None, id=None, managed_instance_id=None, non_compliant_finding_count=None, non_compliant_finding_count_greater_than=None, time_end=None, time_start=None):
|
27
27
|
if aggregation_mode and not isinstance(aggregation_mode, str):
|
28
28
|
raise TypeError("Expected argument 'aggregation_mode' to be a str")
|
29
29
|
pulumi.set(__self__, "aggregation_mode", aggregation_mode)
|
@@ -33,15 +33,30 @@ class GetFleetCryptoAnalysisResultsResult:
|
|
33
33
|
if filters and not isinstance(filters, list):
|
34
34
|
raise TypeError("Expected argument 'filters' to be a list")
|
35
35
|
pulumi.set(__self__, "filters", filters)
|
36
|
+
if finding_count and not isinstance(finding_count, int):
|
37
|
+
raise TypeError("Expected argument 'finding_count' to be a int")
|
38
|
+
pulumi.set(__self__, "finding_count", finding_count)
|
39
|
+
if finding_count_greater_than and not isinstance(finding_count_greater_than, int):
|
40
|
+
raise TypeError("Expected argument 'finding_count_greater_than' to be a int")
|
41
|
+
pulumi.set(__self__, "finding_count_greater_than", finding_count_greater_than)
|
36
42
|
if fleet_id and not isinstance(fleet_id, str):
|
37
43
|
raise TypeError("Expected argument 'fleet_id' to be a str")
|
38
44
|
pulumi.set(__self__, "fleet_id", fleet_id)
|
45
|
+
if host_name and not isinstance(host_name, str):
|
46
|
+
raise TypeError("Expected argument 'host_name' to be a str")
|
47
|
+
pulumi.set(__self__, "host_name", host_name)
|
39
48
|
if id and not isinstance(id, str):
|
40
49
|
raise TypeError("Expected argument 'id' to be a str")
|
41
50
|
pulumi.set(__self__, "id", id)
|
42
51
|
if managed_instance_id and not isinstance(managed_instance_id, str):
|
43
52
|
raise TypeError("Expected argument 'managed_instance_id' to be a str")
|
44
53
|
pulumi.set(__self__, "managed_instance_id", managed_instance_id)
|
54
|
+
if non_compliant_finding_count and not isinstance(non_compliant_finding_count, int):
|
55
|
+
raise TypeError("Expected argument 'non_compliant_finding_count' to be a int")
|
56
|
+
pulumi.set(__self__, "non_compliant_finding_count", non_compliant_finding_count)
|
57
|
+
if non_compliant_finding_count_greater_than and not isinstance(non_compliant_finding_count_greater_than, int):
|
58
|
+
raise TypeError("Expected argument 'non_compliant_finding_count_greater_than' to be a int")
|
59
|
+
pulumi.set(__self__, "non_compliant_finding_count_greater_than", non_compliant_finding_count_greater_than)
|
45
60
|
if time_end and not isinstance(time_end, str):
|
46
61
|
raise TypeError("Expected argument 'time_end' to be a str")
|
47
62
|
pulumi.set(__self__, "time_end", time_end)
|
@@ -70,6 +85,19 @@ class GetFleetCryptoAnalysisResultsResult:
|
|
70
85
|
def filters(self) -> Optional[Sequence['outputs.GetFleetCryptoAnalysisResultsFilterResult']]:
|
71
86
|
return pulumi.get(self, "filters")
|
72
87
|
|
88
|
+
@property
|
89
|
+
@pulumi.getter(name="findingCount")
|
90
|
+
def finding_count(self) -> Optional[int]:
|
91
|
+
"""
|
92
|
+
Total number of findings with the analysis.
|
93
|
+
"""
|
94
|
+
return pulumi.get(self, "finding_count")
|
95
|
+
|
96
|
+
@property
|
97
|
+
@pulumi.getter(name="findingCountGreaterThan")
|
98
|
+
def finding_count_greater_than(self) -> Optional[int]:
|
99
|
+
return pulumi.get(self, "finding_count_greater_than")
|
100
|
+
|
73
101
|
@property
|
74
102
|
@pulumi.getter(name="fleetId")
|
75
103
|
def fleet_id(self) -> str:
|
@@ -78,6 +106,14 @@ class GetFleetCryptoAnalysisResultsResult:
|
|
78
106
|
"""
|
79
107
|
return pulumi.get(self, "fleet_id")
|
80
108
|
|
109
|
+
@property
|
110
|
+
@pulumi.getter(name="hostName")
|
111
|
+
def host_name(self) -> Optional[str]:
|
112
|
+
"""
|
113
|
+
The hostname of the managed instance.
|
114
|
+
"""
|
115
|
+
return pulumi.get(self, "host_name")
|
116
|
+
|
81
117
|
@property
|
82
118
|
@pulumi.getter
|
83
119
|
def id(self) -> str:
|
@@ -94,6 +130,19 @@ class GetFleetCryptoAnalysisResultsResult:
|
|
94
130
|
"""
|
95
131
|
return pulumi.get(self, "managed_instance_id")
|
96
132
|
|
133
|
+
@property
|
134
|
+
@pulumi.getter(name="nonCompliantFindingCount")
|
135
|
+
def non_compliant_finding_count(self) -> Optional[int]:
|
136
|
+
"""
|
137
|
+
Total number of non-compliant findings with the analysis. A non-compliant finding means the application won't work properly with the changes introduced by the Crypto Roadmap version used by the analysis.
|
138
|
+
"""
|
139
|
+
return pulumi.get(self, "non_compliant_finding_count")
|
140
|
+
|
141
|
+
@property
|
142
|
+
@pulumi.getter(name="nonCompliantFindingCountGreaterThan")
|
143
|
+
def non_compliant_finding_count_greater_than(self) -> Optional[int]:
|
144
|
+
return pulumi.get(self, "non_compliant_finding_count_greater_than")
|
145
|
+
|
97
146
|
@property
|
98
147
|
@pulumi.getter(name="timeEnd")
|
99
148
|
def time_end(self) -> Optional[str]:
|
@@ -114,17 +163,27 @@ class AwaitableGetFleetCryptoAnalysisResultsResult(GetFleetCryptoAnalysisResults
|
|
114
163
|
aggregation_mode=self.aggregation_mode,
|
115
164
|
crypto_analysis_result_collections=self.crypto_analysis_result_collections,
|
116
165
|
filters=self.filters,
|
166
|
+
finding_count=self.finding_count,
|
167
|
+
finding_count_greater_than=self.finding_count_greater_than,
|
117
168
|
fleet_id=self.fleet_id,
|
169
|
+
host_name=self.host_name,
|
118
170
|
id=self.id,
|
119
171
|
managed_instance_id=self.managed_instance_id,
|
172
|
+
non_compliant_finding_count=self.non_compliant_finding_count,
|
173
|
+
non_compliant_finding_count_greater_than=self.non_compliant_finding_count_greater_than,
|
120
174
|
time_end=self.time_end,
|
121
175
|
time_start=self.time_start)
|
122
176
|
|
123
177
|
|
124
178
|
def get_fleet_crypto_analysis_results(aggregation_mode: Optional[str] = None,
|
125
179
|
filters: Optional[Sequence[pulumi.InputType['GetFleetCryptoAnalysisResultsFilterArgs']]] = None,
|
180
|
+
finding_count: Optional[int] = None,
|
181
|
+
finding_count_greater_than: Optional[int] = None,
|
126
182
|
fleet_id: Optional[str] = None,
|
183
|
+
host_name: Optional[str] = None,
|
127
184
|
managed_instance_id: Optional[str] = None,
|
185
|
+
non_compliant_finding_count: Optional[int] = None,
|
186
|
+
non_compliant_finding_count_greater_than: Optional[int] = None,
|
128
187
|
time_end: Optional[str] = None,
|
129
188
|
time_start: Optional[str] = None,
|
130
189
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFleetCryptoAnalysisResultsResult:
|
@@ -141,23 +200,38 @@ def get_fleet_crypto_analysis_results(aggregation_mode: Optional[str] = None,
|
|
141
200
|
|
142
201
|
test_fleet_crypto_analysis_results = oci.Jms.get_fleet_crypto_analysis_results(fleet_id=test_fleet["id"],
|
143
202
|
aggregation_mode=fleet_crypto_analysis_result_aggregation_mode,
|
144
|
-
|
203
|
+
finding_count=fleet_crypto_analysis_result_finding_count,
|
204
|
+
finding_count_greater_than=fleet_crypto_analysis_result_finding_count_greater_than,
|
205
|
+
host_name=fleet_crypto_analysis_result_host_name,
|
206
|
+
managed_instance_id=fleet_crypto_analysis_result_managed_instance_ocid,
|
207
|
+
non_compliant_finding_count=fleet_crypto_analysis_result_non_compliant_finding_count,
|
208
|
+
non_compliant_finding_count_greater_than=fleet_crypto_analysis_result_non_compliant_finding_count_greater_than,
|
145
209
|
time_end=fleet_crypto_analysis_result_time_end,
|
146
210
|
time_start=fleet_crypto_analysis_result_time_start)
|
147
211
|
```
|
148
212
|
|
149
213
|
|
150
214
|
:param str aggregation_mode: The aggregation mode of the crypto event analysis result.
|
215
|
+
:param int finding_count: FindingCount of CryptoAnalysis Report.
|
216
|
+
:param int finding_count_greater_than: FindingCount of CryptoAnalysis Report.
|
151
217
|
:param str fleet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
218
|
+
:param str host_name: The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance.
|
152
219
|
:param str managed_instance_id: The Fleet-unique identifier of the related managed instance.
|
220
|
+
:param int non_compliant_finding_count: Non Compliant Finding Count of CryptoAnalysis Report.
|
221
|
+
:param int non_compliant_finding_count_greater_than: Non Compliant Finding Count of CryptoAnalysis Report.
|
153
222
|
:param 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)).
|
154
223
|
:param 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)).
|
155
224
|
"""
|
156
225
|
__args__ = dict()
|
157
226
|
__args__['aggregationMode'] = aggregation_mode
|
158
227
|
__args__['filters'] = filters
|
228
|
+
__args__['findingCount'] = finding_count
|
229
|
+
__args__['findingCountGreaterThan'] = finding_count_greater_than
|
159
230
|
__args__['fleetId'] = fleet_id
|
231
|
+
__args__['hostName'] = host_name
|
160
232
|
__args__['managedInstanceId'] = managed_instance_id
|
233
|
+
__args__['nonCompliantFindingCount'] = non_compliant_finding_count
|
234
|
+
__args__['nonCompliantFindingCountGreaterThan'] = non_compliant_finding_count_greater_than
|
161
235
|
__args__['timeEnd'] = time_end
|
162
236
|
__args__['timeStart'] = time_start
|
163
237
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
@@ -167,9 +241,14 @@ def get_fleet_crypto_analysis_results(aggregation_mode: Optional[str] = None,
|
|
167
241
|
aggregation_mode=pulumi.get(__ret__, 'aggregation_mode'),
|
168
242
|
crypto_analysis_result_collections=pulumi.get(__ret__, 'crypto_analysis_result_collections'),
|
169
243
|
filters=pulumi.get(__ret__, 'filters'),
|
244
|
+
finding_count=pulumi.get(__ret__, 'finding_count'),
|
245
|
+
finding_count_greater_than=pulumi.get(__ret__, 'finding_count_greater_than'),
|
170
246
|
fleet_id=pulumi.get(__ret__, 'fleet_id'),
|
247
|
+
host_name=pulumi.get(__ret__, 'host_name'),
|
171
248
|
id=pulumi.get(__ret__, 'id'),
|
172
249
|
managed_instance_id=pulumi.get(__ret__, 'managed_instance_id'),
|
250
|
+
non_compliant_finding_count=pulumi.get(__ret__, 'non_compliant_finding_count'),
|
251
|
+
non_compliant_finding_count_greater_than=pulumi.get(__ret__, 'non_compliant_finding_count_greater_than'),
|
173
252
|
time_end=pulumi.get(__ret__, 'time_end'),
|
174
253
|
time_start=pulumi.get(__ret__, 'time_start'))
|
175
254
|
|
@@ -177,8 +256,13 @@ def get_fleet_crypto_analysis_results(aggregation_mode: Optional[str] = None,
|
|
177
256
|
@_utilities.lift_output_func(get_fleet_crypto_analysis_results)
|
178
257
|
def get_fleet_crypto_analysis_results_output(aggregation_mode: Optional[pulumi.Input[Optional[str]]] = None,
|
179
258
|
filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetFleetCryptoAnalysisResultsFilterArgs']]]]] = None,
|
259
|
+
finding_count: Optional[pulumi.Input[Optional[int]]] = None,
|
260
|
+
finding_count_greater_than: Optional[pulumi.Input[Optional[int]]] = None,
|
180
261
|
fleet_id: Optional[pulumi.Input[str]] = None,
|
262
|
+
host_name: Optional[pulumi.Input[Optional[str]]] = None,
|
181
263
|
managed_instance_id: Optional[pulumi.Input[Optional[str]]] = None,
|
264
|
+
non_compliant_finding_count: Optional[pulumi.Input[Optional[int]]] = None,
|
265
|
+
non_compliant_finding_count_greater_than: Optional[pulumi.Input[Optional[int]]] = None,
|
182
266
|
time_end: Optional[pulumi.Input[Optional[str]]] = None,
|
183
267
|
time_start: Optional[pulumi.Input[Optional[str]]] = None,
|
184
268
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetFleetCryptoAnalysisResultsResult]:
|
@@ -195,15 +279,25 @@ def get_fleet_crypto_analysis_results_output(aggregation_mode: Optional[pulumi.I
|
|
195
279
|
|
196
280
|
test_fleet_crypto_analysis_results = oci.Jms.get_fleet_crypto_analysis_results(fleet_id=test_fleet["id"],
|
197
281
|
aggregation_mode=fleet_crypto_analysis_result_aggregation_mode,
|
198
|
-
|
282
|
+
finding_count=fleet_crypto_analysis_result_finding_count,
|
283
|
+
finding_count_greater_than=fleet_crypto_analysis_result_finding_count_greater_than,
|
284
|
+
host_name=fleet_crypto_analysis_result_host_name,
|
285
|
+
managed_instance_id=fleet_crypto_analysis_result_managed_instance_ocid,
|
286
|
+
non_compliant_finding_count=fleet_crypto_analysis_result_non_compliant_finding_count,
|
287
|
+
non_compliant_finding_count_greater_than=fleet_crypto_analysis_result_non_compliant_finding_count_greater_than,
|
199
288
|
time_end=fleet_crypto_analysis_result_time_end,
|
200
289
|
time_start=fleet_crypto_analysis_result_time_start)
|
201
290
|
```
|
202
291
|
|
203
292
|
|
204
293
|
:param str aggregation_mode: The aggregation mode of the crypto event analysis result.
|
294
|
+
:param int finding_count: FindingCount of CryptoAnalysis Report.
|
295
|
+
:param int finding_count_greater_than: FindingCount of CryptoAnalysis Report.
|
205
296
|
:param str fleet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
297
|
+
:param str host_name: The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance.
|
206
298
|
:param str managed_instance_id: The Fleet-unique identifier of the related managed instance.
|
299
|
+
:param int non_compliant_finding_count: Non Compliant Finding Count of CryptoAnalysis Report.
|
300
|
+
:param int non_compliant_finding_count_greater_than: Non Compliant Finding Count of CryptoAnalysis Report.
|
207
301
|
:param 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)).
|
208
302
|
:param 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)).
|
209
303
|
"""
|
@@ -146,7 +146,7 @@ class GetFleetExportSettingResult:
|
|
146
146
|
@pulumi.getter(name="targetBucketRegion")
|
147
147
|
def target_bucket_region(self) -> str:
|
148
148
|
"""
|
149
|
-
The
|
149
|
+
The id of the region of the target bucket.
|
150
150
|
"""
|
151
151
|
return pulumi.get(self, "target_bucket_region")
|
152
152
|
|
@@ -193,7 +193,7 @@ def get_fleet_export_setting(fleet_id: Optional[str] = None,
|
|
193
193
|
"""
|
194
194
|
This data source provides details about a specific Fleet Export Setting resource in Oracle Cloud Infrastructure Jms service.
|
195
195
|
|
196
|
-
Returns export setting for the specified
|
196
|
+
Returns export setting for the specified fleet.
|
197
197
|
|
198
198
|
## Example Usage
|
199
199
|
|
@@ -234,7 +234,7 @@ def get_fleet_export_setting_output(fleet_id: Optional[pulumi.Input[str]] = None
|
|
234
234
|
"""
|
235
235
|
This data source provides details about a specific Fleet Export Setting resource in Oracle Cloud Infrastructure Jms service.
|
236
236
|
|
237
|
-
Returns export setting for the specified
|
237
|
+
Returns export setting for the specified fleet.
|
238
238
|
|
239
239
|
## Example Usage
|
240
240
|
|
@@ -97,7 +97,7 @@ def get_fleet_export_status(fleet_id: Optional[str] = None,
|
|
97
97
|
"""
|
98
98
|
This data source provides details about a specific Fleet Export Status resource in Oracle Cloud Infrastructure Jms service.
|
99
99
|
|
100
|
-
Returns last export status for the specified
|
100
|
+
Returns last export status for the specified fleet.
|
101
101
|
|
102
102
|
## Example Usage
|
103
103
|
|
@@ -130,7 +130,7 @@ def get_fleet_export_status_output(fleet_id: Optional[pulumi.Input[str]] = None,
|
|
130
130
|
"""
|
131
131
|
This data source provides details about a specific Fleet Export Status resource in Oracle Cloud Infrastructure Jms service.
|
132
132
|
|
133
|
-
Returns last export status for the specified
|
133
|
+
Returns last export status for the specified fleet.
|
134
134
|
|
135
135
|
## Example Usage
|
136
136
|
|
@@ -260,7 +260,7 @@ def get_fleet_java_migration_analysis_result(fleet_id: Optional[str] = None,
|
|
260
260
|
import pulumi_oci as oci
|
261
261
|
|
262
262
|
test_fleet_java_migration_analysis_result = oci.Jms.get_fleet_java_migration_analysis_result(fleet_id=test_fleet["id"],
|
263
|
-
java_migration_analysis_result_id=
|
263
|
+
java_migration_analysis_result_id=fleet_java_migration_analysis_result_id)
|
264
264
|
```
|
265
265
|
|
266
266
|
|
@@ -310,7 +310,7 @@ def get_fleet_java_migration_analysis_result_output(fleet_id: Optional[pulumi.In
|
|
310
310
|
import pulumi_oci as oci
|
311
311
|
|
312
312
|
test_fleet_java_migration_analysis_result = oci.Jms.get_fleet_java_migration_analysis_result(fleet_id=test_fleet["id"],
|
313
|
-
java_migration_analysis_result_id=
|
313
|
+
java_migration_analysis_result_id=fleet_java_migration_analysis_result_id)
|
314
314
|
```
|
315
315
|
|
316
316
|
|