pulumi-oci 2.6.0__py3-none-any.whl → 2.6.0a1723011044__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 +0 -32
- pulumi_oci/bigdataservice/_inputs.py +14 -157
- pulumi_oci/bigdataservice/bds_instance.py +0 -128
- pulumi_oci/bigdataservice/bds_instance_patch_action.py +3 -64
- pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
- pulumi_oci/bigdataservice/outputs.py +30 -257
- pulumi_oci/devops/__init__.py +0 -6
- pulumi_oci/devops/_inputs.py +32 -531
- pulumi_oci/devops/get_build_runs.py +5 -0
- pulumi_oci/devops/get_repositories.py +1 -1
- pulumi_oci/devops/get_repository.py +4 -17
- pulumi_oci/devops/get_repository_diffs.py +3 -20
- pulumi_oci/devops/get_repository_ref.py +2 -2
- pulumi_oci/devops/get_triggers.py +5 -0
- pulumi_oci/devops/outputs.py +162 -1198
- pulumi_oci/devops/repository.py +75 -66
- pulumi_oci/devops/repository_ref.py +2 -2
- pulumi_oci/jms/__init__.py +0 -4
- pulumi_oci/jms/_inputs.py +0 -80
- pulumi_oci/jms/get_fleet_blocklists.py +2 -2
- pulumi_oci/jms/get_fleet_crypto_analysis_result.py +3 -29
- pulumi_oci/jms/get_fleet_crypto_analysis_results.py +3 -97
- 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 +5 -45
- pulumi_oci/jms/get_fleet_performance_tuning_analysis_result.py +4 -4
- pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +5 -25
- 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 +1 -14
- pulumi_oci/jms/outputs.py +32 -488
- pulumi_oci/osmanagementhub/get_software_source.py +1 -19
- pulumi_oci/osmanagementhub/software_source.py +0 -82
- pulumi_oci/psql/_inputs.py +4 -8
- pulumi_oci/psql/backup.py +4 -4
- pulumi_oci/psql/configuration.py +38 -141
- pulumi_oci/psql/db_system.py +55 -53
- pulumi_oci/psql/get_backup.py +1 -1
- pulumi_oci/psql/get_configuration.py +1 -27
- pulumi_oci/psql/get_configurations.py +2 -2
- pulumi_oci/psql/get_default_configuration.py +2 -15
- pulumi_oci/psql/get_default_configurations.py +2 -2
- pulumi_oci/psql/outputs.py +13 -176
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.6.0.dist-info → pulumi_oci-2.6.0a1723011044.dist-info}/METADATA +1 -1
- {pulumi_oci-2.6.0.dist-info → pulumi_oci-2.6.0a1723011044.dist-info}/RECORD +52 -62
- pulumi_oci/devops/get_project_repository_setting.py +0 -129
- pulumi_oci/devops/get_repository_protected_branches.py +0 -150
- pulumi_oci/devops/get_repository_setting.py +0 -142
- pulumi_oci/devops/project_repository_setting.py +0 -338
- pulumi_oci/devops/repository_protected_branch_management.py +0 -333
- pulumi_oci/devops/repository_setting.py +0 -391
- pulumi_oci/jms/get_agent_installers.py +0 -190
- pulumi_oci/jms/get_jms_plugin.py +0 -313
- pulumi_oci/jms/get_jms_plugins.py +0 -291
- pulumi_oci/jms/jms_plugin.py +0 -731
- {pulumi_oci-2.6.0.dist-info → pulumi_oci-2.6.0a1723011044.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.6.0.dist-info → pulumi_oci-2.6.0a1723011044.dist-info}/top_level.txt +0 -0
@@ -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,
|
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):
|
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,30 +33,15 @@ 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)
|
42
36
|
if fleet_id and not isinstance(fleet_id, str):
|
43
37
|
raise TypeError("Expected argument 'fleet_id' to be a str")
|
44
38
|
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)
|
48
39
|
if id and not isinstance(id, str):
|
49
40
|
raise TypeError("Expected argument 'id' to be a str")
|
50
41
|
pulumi.set(__self__, "id", id)
|
51
42
|
if managed_instance_id and not isinstance(managed_instance_id, str):
|
52
43
|
raise TypeError("Expected argument 'managed_instance_id' to be a str")
|
53
44
|
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)
|
60
45
|
if time_end and not isinstance(time_end, str):
|
61
46
|
raise TypeError("Expected argument 'time_end' to be a str")
|
62
47
|
pulumi.set(__self__, "time_end", time_end)
|
@@ -85,19 +70,6 @@ class GetFleetCryptoAnalysisResultsResult:
|
|
85
70
|
def filters(self) -> Optional[Sequence['outputs.GetFleetCryptoAnalysisResultsFilterResult']]:
|
86
71
|
return pulumi.get(self, "filters")
|
87
72
|
|
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
|
-
|
101
73
|
@property
|
102
74
|
@pulumi.getter(name="fleetId")
|
103
75
|
def fleet_id(self) -> str:
|
@@ -106,14 +78,6 @@ class GetFleetCryptoAnalysisResultsResult:
|
|
106
78
|
"""
|
107
79
|
return pulumi.get(self, "fleet_id")
|
108
80
|
|
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
|
-
|
117
81
|
@property
|
118
82
|
@pulumi.getter
|
119
83
|
def id(self) -> str:
|
@@ -130,19 +94,6 @@ class GetFleetCryptoAnalysisResultsResult:
|
|
130
94
|
"""
|
131
95
|
return pulumi.get(self, "managed_instance_id")
|
132
96
|
|
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
|
-
|
146
97
|
@property
|
147
98
|
@pulumi.getter(name="timeEnd")
|
148
99
|
def time_end(self) -> Optional[str]:
|
@@ -163,27 +114,17 @@ class AwaitableGetFleetCryptoAnalysisResultsResult(GetFleetCryptoAnalysisResults
|
|
163
114
|
aggregation_mode=self.aggregation_mode,
|
164
115
|
crypto_analysis_result_collections=self.crypto_analysis_result_collections,
|
165
116
|
filters=self.filters,
|
166
|
-
finding_count=self.finding_count,
|
167
|
-
finding_count_greater_than=self.finding_count_greater_than,
|
168
117
|
fleet_id=self.fleet_id,
|
169
|
-
host_name=self.host_name,
|
170
118
|
id=self.id,
|
171
119
|
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,
|
174
120
|
time_end=self.time_end,
|
175
121
|
time_start=self.time_start)
|
176
122
|
|
177
123
|
|
178
124
|
def get_fleet_crypto_analysis_results(aggregation_mode: Optional[str] = None,
|
179
125
|
filters: Optional[Sequence[pulumi.InputType['GetFleetCryptoAnalysisResultsFilterArgs']]] = None,
|
180
|
-
finding_count: Optional[int] = None,
|
181
|
-
finding_count_greater_than: Optional[int] = None,
|
182
126
|
fleet_id: Optional[str] = None,
|
183
|
-
host_name: Optional[str] = None,
|
184
127
|
managed_instance_id: Optional[str] = None,
|
185
|
-
non_compliant_finding_count: Optional[int] = None,
|
186
|
-
non_compliant_finding_count_greater_than: Optional[int] = None,
|
187
128
|
time_end: Optional[str] = None,
|
188
129
|
time_start: Optional[str] = None,
|
189
130
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFleetCryptoAnalysisResultsResult:
|
@@ -200,38 +141,23 @@ def get_fleet_crypto_analysis_results(aggregation_mode: Optional[str] = None,
|
|
200
141
|
|
201
142
|
test_fleet_crypto_analysis_results = oci.Jms.get_fleet_crypto_analysis_results(fleet_id=test_fleet["id"],
|
202
143
|
aggregation_mode=fleet_crypto_analysis_result_aggregation_mode,
|
203
|
-
|
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,
|
144
|
+
managed_instance_id=test_managed_instance["id"],
|
209
145
|
time_end=fleet_crypto_analysis_result_time_end,
|
210
146
|
time_start=fleet_crypto_analysis_result_time_start)
|
211
147
|
```
|
212
148
|
|
213
149
|
|
214
150
|
: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.
|
217
151
|
: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.
|
219
152
|
: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.
|
222
153
|
: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)).
|
223
154
|
: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)).
|
224
155
|
"""
|
225
156
|
__args__ = dict()
|
226
157
|
__args__['aggregationMode'] = aggregation_mode
|
227
158
|
__args__['filters'] = filters
|
228
|
-
__args__['findingCount'] = finding_count
|
229
|
-
__args__['findingCountGreaterThan'] = finding_count_greater_than
|
230
159
|
__args__['fleetId'] = fleet_id
|
231
|
-
__args__['hostName'] = host_name
|
232
160
|
__args__['managedInstanceId'] = managed_instance_id
|
233
|
-
__args__['nonCompliantFindingCount'] = non_compliant_finding_count
|
234
|
-
__args__['nonCompliantFindingCountGreaterThan'] = non_compliant_finding_count_greater_than
|
235
161
|
__args__['timeEnd'] = time_end
|
236
162
|
__args__['timeStart'] = time_start
|
237
163
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
@@ -241,14 +167,9 @@ def get_fleet_crypto_analysis_results(aggregation_mode: Optional[str] = None,
|
|
241
167
|
aggregation_mode=pulumi.get(__ret__, 'aggregation_mode'),
|
242
168
|
crypto_analysis_result_collections=pulumi.get(__ret__, 'crypto_analysis_result_collections'),
|
243
169
|
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'),
|
246
170
|
fleet_id=pulumi.get(__ret__, 'fleet_id'),
|
247
|
-
host_name=pulumi.get(__ret__, 'host_name'),
|
248
171
|
id=pulumi.get(__ret__, 'id'),
|
249
172
|
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'),
|
252
173
|
time_end=pulumi.get(__ret__, 'time_end'),
|
253
174
|
time_start=pulumi.get(__ret__, 'time_start'))
|
254
175
|
|
@@ -256,13 +177,8 @@ def get_fleet_crypto_analysis_results(aggregation_mode: Optional[str] = None,
|
|
256
177
|
@_utilities.lift_output_func(get_fleet_crypto_analysis_results)
|
257
178
|
def get_fleet_crypto_analysis_results_output(aggregation_mode: Optional[pulumi.Input[Optional[str]]] = None,
|
258
179
|
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,
|
261
180
|
fleet_id: Optional[pulumi.Input[str]] = None,
|
262
|
-
host_name: Optional[pulumi.Input[Optional[str]]] = None,
|
263
181
|
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,
|
266
182
|
time_end: Optional[pulumi.Input[Optional[str]]] = None,
|
267
183
|
time_start: Optional[pulumi.Input[Optional[str]]] = None,
|
268
184
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetFleetCryptoAnalysisResultsResult]:
|
@@ -279,25 +195,15 @@ def get_fleet_crypto_analysis_results_output(aggregation_mode: Optional[pulumi.I
|
|
279
195
|
|
280
196
|
test_fleet_crypto_analysis_results = oci.Jms.get_fleet_crypto_analysis_results(fleet_id=test_fleet["id"],
|
281
197
|
aggregation_mode=fleet_crypto_analysis_result_aggregation_mode,
|
282
|
-
|
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,
|
198
|
+
managed_instance_id=test_managed_instance["id"],
|
288
199
|
time_end=fleet_crypto_analysis_result_time_end,
|
289
200
|
time_start=fleet_crypto_analysis_result_time_start)
|
290
201
|
```
|
291
202
|
|
292
203
|
|
293
204
|
: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.
|
296
205
|
: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.
|
298
206
|
: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.
|
301
207
|
: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)).
|
302
208
|
: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)).
|
303
209
|
"""
|
@@ -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 namespace of the bucket where data will be exported.
|
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=test_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=test_result["id"])
|
314
314
|
```
|
315
315
|
|
316
316
|
|
@@ -23,19 +23,13 @@ class GetFleetJavaMigrationAnalysisResultsResult:
|
|
23
23
|
"""
|
24
24
|
A collection of values returned by getFleetJavaMigrationAnalysisResults.
|
25
25
|
"""
|
26
|
-
def __init__(__self__,
|
27
|
-
if application_name and not isinstance(application_name, str):
|
28
|
-
raise TypeError("Expected argument 'application_name' to be a str")
|
29
|
-
pulumi.set(__self__, "application_name", application_name)
|
26
|
+
def __init__(__self__, filters=None, fleet_id=None, id=None, java_migration_analysis_result_collections=None, managed_instance_id=None, time_end=None, time_start=None):
|
30
27
|
if filters and not isinstance(filters, list):
|
31
28
|
raise TypeError("Expected argument 'filters' to be a list")
|
32
29
|
pulumi.set(__self__, "filters", filters)
|
33
30
|
if fleet_id and not isinstance(fleet_id, str):
|
34
31
|
raise TypeError("Expected argument 'fleet_id' to be a str")
|
35
32
|
pulumi.set(__self__, "fleet_id", fleet_id)
|
36
|
-
if host_name and not isinstance(host_name, str):
|
37
|
-
raise TypeError("Expected argument 'host_name' to be a str")
|
38
|
-
pulumi.set(__self__, "host_name", host_name)
|
39
33
|
if id and not isinstance(id, str):
|
40
34
|
raise TypeError("Expected argument 'id' to be a str")
|
41
35
|
pulumi.set(__self__, "id", id)
|
@@ -52,14 +46,6 @@ class GetFleetJavaMigrationAnalysisResultsResult:
|
|
52
46
|
raise TypeError("Expected argument 'time_start' to be a str")
|
53
47
|
pulumi.set(__self__, "time_start", time_start)
|
54
48
|
|
55
|
-
@property
|
56
|
-
@pulumi.getter(name="applicationName")
|
57
|
-
def application_name(self) -> Optional[str]:
|
58
|
-
"""
|
59
|
-
The name of the application for which the Java migration analysis was performed.
|
60
|
-
"""
|
61
|
-
return pulumi.get(self, "application_name")
|
62
|
-
|
63
49
|
@property
|
64
50
|
@pulumi.getter
|
65
51
|
def filters(self) -> Optional[Sequence['outputs.GetFleetJavaMigrationAnalysisResultsFilterResult']]:
|
@@ -73,14 +59,6 @@ class GetFleetJavaMigrationAnalysisResultsResult:
|
|
73
59
|
"""
|
74
60
|
return pulumi.get(self, "fleet_id")
|
75
61
|
|
76
|
-
@property
|
77
|
-
@pulumi.getter(name="hostName")
|
78
|
-
def host_name(self) -> Optional[str]:
|
79
|
-
"""
|
80
|
-
The hostname of the managed instance that hosts the application for which the Java migration analysis was performed.
|
81
|
-
"""
|
82
|
-
return pulumi.get(self, "host_name")
|
83
|
-
|
84
62
|
@property
|
85
63
|
@pulumi.getter
|
86
64
|
def id(self) -> str:
|
@@ -122,10 +100,8 @@ class AwaitableGetFleetJavaMigrationAnalysisResultsResult(GetFleetJavaMigrationA
|
|
122
100
|
if False:
|
123
101
|
yield self
|
124
102
|
return GetFleetJavaMigrationAnalysisResultsResult(
|
125
|
-
application_name=self.application_name,
|
126
103
|
filters=self.filters,
|
127
104
|
fleet_id=self.fleet_id,
|
128
|
-
host_name=self.host_name,
|
129
105
|
id=self.id,
|
130
106
|
java_migration_analysis_result_collections=self.java_migration_analysis_result_collections,
|
131
107
|
managed_instance_id=self.managed_instance_id,
|
@@ -133,10 +109,8 @@ class AwaitableGetFleetJavaMigrationAnalysisResultsResult(GetFleetJavaMigrationA
|
|
133
109
|
time_start=self.time_start)
|
134
110
|
|
135
111
|
|
136
|
-
def get_fleet_java_migration_analysis_results(
|
137
|
-
filters: Optional[Sequence[pulumi.InputType['GetFleetJavaMigrationAnalysisResultsFilterArgs']]] = None,
|
112
|
+
def get_fleet_java_migration_analysis_results(filters: Optional[Sequence[pulumi.InputType['GetFleetJavaMigrationAnalysisResultsFilterArgs']]] = None,
|
138
113
|
fleet_id: Optional[str] = None,
|
139
|
-
host_name: Optional[str] = None,
|
140
114
|
managed_instance_id: Optional[str] = None,
|
141
115
|
time_end: Optional[str] = None,
|
142
116
|
time_start: Optional[str] = None,
|
@@ -153,26 +127,20 @@ def get_fleet_java_migration_analysis_results(application_name: Optional[str] =
|
|
153
127
|
import pulumi_oci as oci
|
154
128
|
|
155
129
|
test_fleet_java_migration_analysis_results = oci.Jms.get_fleet_java_migration_analysis_results(fleet_id=test_fleet["id"],
|
156
|
-
|
157
|
-
host_name=fleet_java_migration_analysis_result_host_name,
|
158
|
-
managed_instance_id=fleet_java_migration_analysis_result_managed_instance_id,
|
130
|
+
managed_instance_id=test_managed_instance["id"],
|
159
131
|
time_end=fleet_java_migration_analysis_result_time_end,
|
160
132
|
time_start=fleet_java_migration_analysis_result_time_start)
|
161
133
|
```
|
162
134
|
|
163
135
|
|
164
|
-
:param str application_name: The name of the application.
|
165
136
|
:param str fleet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
166
|
-
:param str host_name: The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance.
|
167
137
|
:param str managed_instance_id: The Fleet-unique identifier of the related managed instance.
|
168
138
|
: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)).
|
169
139
|
: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)).
|
170
140
|
"""
|
171
141
|
__args__ = dict()
|
172
|
-
__args__['applicationName'] = application_name
|
173
142
|
__args__['filters'] = filters
|
174
143
|
__args__['fleetId'] = fleet_id
|
175
|
-
__args__['hostName'] = host_name
|
176
144
|
__args__['managedInstanceId'] = managed_instance_id
|
177
145
|
__args__['timeEnd'] = time_end
|
178
146
|
__args__['timeStart'] = time_start
|
@@ -180,10 +148,8 @@ def get_fleet_java_migration_analysis_results(application_name: Optional[str] =
|
|
180
148
|
__ret__ = pulumi.runtime.invoke('oci:Jms/getFleetJavaMigrationAnalysisResults:getFleetJavaMigrationAnalysisResults', __args__, opts=opts, typ=GetFleetJavaMigrationAnalysisResultsResult).value
|
181
149
|
|
182
150
|
return AwaitableGetFleetJavaMigrationAnalysisResultsResult(
|
183
|
-
application_name=pulumi.get(__ret__, 'application_name'),
|
184
151
|
filters=pulumi.get(__ret__, 'filters'),
|
185
152
|
fleet_id=pulumi.get(__ret__, 'fleet_id'),
|
186
|
-
host_name=pulumi.get(__ret__, 'host_name'),
|
187
153
|
id=pulumi.get(__ret__, 'id'),
|
188
154
|
java_migration_analysis_result_collections=pulumi.get(__ret__, 'java_migration_analysis_result_collections'),
|
189
155
|
managed_instance_id=pulumi.get(__ret__, 'managed_instance_id'),
|
@@ -192,10 +158,8 @@ def get_fleet_java_migration_analysis_results(application_name: Optional[str] =
|
|
192
158
|
|
193
159
|
|
194
160
|
@_utilities.lift_output_func(get_fleet_java_migration_analysis_results)
|
195
|
-
def get_fleet_java_migration_analysis_results_output(
|
196
|
-
filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetFleetJavaMigrationAnalysisResultsFilterArgs']]]]] = None,
|
161
|
+
def get_fleet_java_migration_analysis_results_output(filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetFleetJavaMigrationAnalysisResultsFilterArgs']]]]] = None,
|
197
162
|
fleet_id: Optional[pulumi.Input[str]] = None,
|
198
|
-
host_name: Optional[pulumi.Input[Optional[str]]] = None,
|
199
163
|
managed_instance_id: Optional[pulumi.Input[Optional[str]]] = None,
|
200
164
|
time_end: Optional[pulumi.Input[Optional[str]]] = None,
|
201
165
|
time_start: Optional[pulumi.Input[Optional[str]]] = None,
|
@@ -212,17 +176,13 @@ def get_fleet_java_migration_analysis_results_output(application_name: Optional[
|
|
212
176
|
import pulumi_oci as oci
|
213
177
|
|
214
178
|
test_fleet_java_migration_analysis_results = oci.Jms.get_fleet_java_migration_analysis_results(fleet_id=test_fleet["id"],
|
215
|
-
|
216
|
-
host_name=fleet_java_migration_analysis_result_host_name,
|
217
|
-
managed_instance_id=fleet_java_migration_analysis_result_managed_instance_id,
|
179
|
+
managed_instance_id=test_managed_instance["id"],
|
218
180
|
time_end=fleet_java_migration_analysis_result_time_end,
|
219
181
|
time_start=fleet_java_migration_analysis_result_time_start)
|
220
182
|
```
|
221
183
|
|
222
184
|
|
223
|
-
:param str application_name: The name of the application.
|
224
185
|
:param str fleet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
225
|
-
:param str host_name: The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance.
|
226
186
|
:param str managed_instance_id: The Fleet-unique identifier of the related managed instance.
|
227
187
|
: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)).
|
228
188
|
: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)).
|
@@ -190,7 +190,7 @@ class GetFleetPerformanceTuningAnalysisResultResult:
|
|
190
190
|
@pulumi.getter(name="timeFinished")
|
191
191
|
def time_finished(self) -> str:
|
192
192
|
"""
|
193
|
-
The time the JFR
|
193
|
+
The time the JFR capture finished.
|
194
194
|
"""
|
195
195
|
return pulumi.get(self, "time_finished")
|
196
196
|
|
@@ -198,7 +198,7 @@ class GetFleetPerformanceTuningAnalysisResultResult:
|
|
198
198
|
@pulumi.getter(name="timeStarted")
|
199
199
|
def time_started(self) -> str:
|
200
200
|
"""
|
201
|
-
The time the JFR
|
201
|
+
The time the JFR capture started.
|
202
202
|
"""
|
203
203
|
return pulumi.get(self, "time_started")
|
204
204
|
|
@@ -260,7 +260,7 @@ def get_fleet_performance_tuning_analysis_result(fleet_id: Optional[str] = None,
|
|
260
260
|
import pulumi_oci as oci
|
261
261
|
|
262
262
|
test_fleet_performance_tuning_analysis_result = oci.Jms.get_fleet_performance_tuning_analysis_result(fleet_id=test_fleet["id"],
|
263
|
-
performance_tuning_analysis_result_id=
|
263
|
+
performance_tuning_analysis_result_id=test_result["id"])
|
264
264
|
```
|
265
265
|
|
266
266
|
|
@@ -310,7 +310,7 @@ def get_fleet_performance_tuning_analysis_result_output(fleet_id: Optional[pulum
|
|
310
310
|
import pulumi_oci as oci
|
311
311
|
|
312
312
|
test_fleet_performance_tuning_analysis_result = oci.Jms.get_fleet_performance_tuning_analysis_result(fleet_id=test_fleet["id"],
|
313
|
-
performance_tuning_analysis_result_id=
|
313
|
+
performance_tuning_analysis_result_id=test_result["id"])
|
314
314
|
```
|
315
315
|
|
316
316
|
|
@@ -23,7 +23,7 @@ class GetFleetPerformanceTuningAnalysisResultsResult:
|
|
23
23
|
"""
|
24
24
|
A collection of values returned by getFleetPerformanceTuningAnalysisResults.
|
25
25
|
"""
|
26
|
-
def __init__(__self__, application_id=None, filters=None, fleet_id=None,
|
26
|
+
def __init__(__self__, application_id=None, filters=None, fleet_id=None, id=None, managed_instance_id=None, performance_tuning_analysis_result_collections=None, time_end=None, time_start=None):
|
27
27
|
if application_id and not isinstance(application_id, str):
|
28
28
|
raise TypeError("Expected argument 'application_id' to be a str")
|
29
29
|
pulumi.set(__self__, "application_id", application_id)
|
@@ -33,9 +33,6 @@ class GetFleetPerformanceTuningAnalysisResultsResult:
|
|
33
33
|
if fleet_id and not isinstance(fleet_id, str):
|
34
34
|
raise TypeError("Expected argument 'fleet_id' to be a str")
|
35
35
|
pulumi.set(__self__, "fleet_id", fleet_id)
|
36
|
-
if host_name and not isinstance(host_name, str):
|
37
|
-
raise TypeError("Expected argument 'host_name' to be a str")
|
38
|
-
pulumi.set(__self__, "host_name", host_name)
|
39
36
|
if id and not isinstance(id, str):
|
40
37
|
raise TypeError("Expected argument 'id' to be a str")
|
41
38
|
pulumi.set(__self__, "id", id)
|
@@ -73,14 +70,6 @@ class GetFleetPerformanceTuningAnalysisResultsResult:
|
|
73
70
|
"""
|
74
71
|
return pulumi.get(self, "fleet_id")
|
75
72
|
|
76
|
-
@property
|
77
|
-
@pulumi.getter(name="hostName")
|
78
|
-
def host_name(self) -> Optional[str]:
|
79
|
-
"""
|
80
|
-
The hostname of the managed instance.
|
81
|
-
"""
|
82
|
-
return pulumi.get(self, "host_name")
|
83
|
-
|
84
73
|
@property
|
85
74
|
@pulumi.getter
|
86
75
|
def id(self) -> str:
|
@@ -125,7 +114,6 @@ class AwaitableGetFleetPerformanceTuningAnalysisResultsResult(GetFleetPerformanc
|
|
125
114
|
application_id=self.application_id,
|
126
115
|
filters=self.filters,
|
127
116
|
fleet_id=self.fleet_id,
|
128
|
-
host_name=self.host_name,
|
129
117
|
id=self.id,
|
130
118
|
managed_instance_id=self.managed_instance_id,
|
131
119
|
performance_tuning_analysis_result_collections=self.performance_tuning_analysis_result_collections,
|
@@ -136,7 +124,6 @@ class AwaitableGetFleetPerformanceTuningAnalysisResultsResult(GetFleetPerformanc
|
|
136
124
|
def get_fleet_performance_tuning_analysis_results(application_id: Optional[str] = None,
|
137
125
|
filters: Optional[Sequence[pulumi.InputType['GetFleetPerformanceTuningAnalysisResultsFilterArgs']]] = None,
|
138
126
|
fleet_id: Optional[str] = None,
|
139
|
-
host_name: Optional[str] = None,
|
140
127
|
managed_instance_id: Optional[str] = None,
|
141
128
|
time_end: Optional[str] = None,
|
142
129
|
time_start: Optional[str] = None,
|
@@ -153,9 +140,8 @@ def get_fleet_performance_tuning_analysis_results(application_id: Optional[str]
|
|
153
140
|
import pulumi_oci as oci
|
154
141
|
|
155
142
|
test_fleet_performance_tuning_analysis_results = oci.Jms.get_fleet_performance_tuning_analysis_results(fleet_id=test_fleet["id"],
|
156
|
-
application_id=
|
157
|
-
|
158
|
-
managed_instance_id=fleet_performance_tuning_analysis_result_managed_instance_id,
|
143
|
+
application_id=test_application["id"],
|
144
|
+
managed_instance_id=test_managed_instance["id"],
|
159
145
|
time_end=fleet_performance_tuning_analysis_result_time_end,
|
160
146
|
time_start=fleet_performance_tuning_analysis_result_time_start)
|
161
147
|
```
|
@@ -163,7 +149,6 @@ def get_fleet_performance_tuning_analysis_results(application_id: Optional[str]
|
|
163
149
|
|
164
150
|
:param str application_id: The Fleet-unique identifier of the related application.
|
165
151
|
:param str fleet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
166
|
-
:param str host_name: The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance.
|
167
152
|
:param str managed_instance_id: The Fleet-unique identifier of the related managed instance.
|
168
153
|
: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)).
|
169
154
|
: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)).
|
@@ -172,7 +157,6 @@ def get_fleet_performance_tuning_analysis_results(application_id: Optional[str]
|
|
172
157
|
__args__['applicationId'] = application_id
|
173
158
|
__args__['filters'] = filters
|
174
159
|
__args__['fleetId'] = fleet_id
|
175
|
-
__args__['hostName'] = host_name
|
176
160
|
__args__['managedInstanceId'] = managed_instance_id
|
177
161
|
__args__['timeEnd'] = time_end
|
178
162
|
__args__['timeStart'] = time_start
|
@@ -183,7 +167,6 @@ def get_fleet_performance_tuning_analysis_results(application_id: Optional[str]
|
|
183
167
|
application_id=pulumi.get(__ret__, 'application_id'),
|
184
168
|
filters=pulumi.get(__ret__, 'filters'),
|
185
169
|
fleet_id=pulumi.get(__ret__, 'fleet_id'),
|
186
|
-
host_name=pulumi.get(__ret__, 'host_name'),
|
187
170
|
id=pulumi.get(__ret__, 'id'),
|
188
171
|
managed_instance_id=pulumi.get(__ret__, 'managed_instance_id'),
|
189
172
|
performance_tuning_analysis_result_collections=pulumi.get(__ret__, 'performance_tuning_analysis_result_collections'),
|
@@ -195,7 +178,6 @@ def get_fleet_performance_tuning_analysis_results(application_id: Optional[str]
|
|
195
178
|
def get_fleet_performance_tuning_analysis_results_output(application_id: Optional[pulumi.Input[Optional[str]]] = None,
|
196
179
|
filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetFleetPerformanceTuningAnalysisResultsFilterArgs']]]]] = None,
|
197
180
|
fleet_id: Optional[pulumi.Input[str]] = None,
|
198
|
-
host_name: Optional[pulumi.Input[Optional[str]]] = None,
|
199
181
|
managed_instance_id: Optional[pulumi.Input[Optional[str]]] = None,
|
200
182
|
time_end: Optional[pulumi.Input[Optional[str]]] = None,
|
201
183
|
time_start: Optional[pulumi.Input[Optional[str]]] = None,
|
@@ -212,9 +194,8 @@ def get_fleet_performance_tuning_analysis_results_output(application_id: Optiona
|
|
212
194
|
import pulumi_oci as oci
|
213
195
|
|
214
196
|
test_fleet_performance_tuning_analysis_results = oci.Jms.get_fleet_performance_tuning_analysis_results(fleet_id=test_fleet["id"],
|
215
|
-
application_id=
|
216
|
-
|
217
|
-
managed_instance_id=fleet_performance_tuning_analysis_result_managed_instance_id,
|
197
|
+
application_id=test_application["id"],
|
198
|
+
managed_instance_id=test_managed_instance["id"],
|
218
199
|
time_end=fleet_performance_tuning_analysis_result_time_end,
|
219
200
|
time_start=fleet_performance_tuning_analysis_result_time_start)
|
220
201
|
```
|
@@ -222,7 +203,6 @@ def get_fleet_performance_tuning_analysis_results_output(application_id: Optiona
|
|
222
203
|
|
223
204
|
:param str application_id: The Fleet-unique identifier of the related application.
|
224
205
|
:param str fleet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
225
|
-
:param str host_name: The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance.
|
226
206
|
:param str managed_instance_id: The Fleet-unique identifier of the related managed instance.
|
227
207
|
: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)).
|
228
208
|
: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)).
|
pulumi_oci/jms/get_fleets.py
CHANGED
@@ -142,7 +142,7 @@ def get_fleets(compartment_id: Optional[str] = None,
|
|
142
142
|
: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.
|
143
143
|
:param str display_name: The display name.
|
144
144
|
:param str display_name_contains: Filter the list with displayName contains the given value.
|
145
|
-
:param str id: The ID.
|
145
|
+
:param str id: The ID of the Fleet.
|
146
146
|
:param str state: The state of the lifecycle.
|
147
147
|
"""
|
148
148
|
__args__ = dict()
|
@@ -196,7 +196,7 @@ def get_fleets_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = No
|
|
196
196
|
: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.
|
197
197
|
:param str display_name: The display name.
|
198
198
|
:param str display_name_contains: Filter the list with displayName contains the given value.
|
199
|
-
:param str id: The ID.
|
199
|
+
:param str id: The ID of the Fleet.
|
200
200
|
:param str state: The state of the lifecycle.
|
201
201
|
"""
|
202
202
|
...
|
@@ -193,13 +193,13 @@ def get_installation_site(application_id: Optional[str] = None,
|
|
193
193
|
import pulumi_oci as oci
|
194
194
|
|
195
195
|
test_fleet_installation_site = oci.Jms.get_installation_site(fleet_id=test_fleet["id"],
|
196
|
-
application_id=
|
196
|
+
application_id=test_application["id"],
|
197
197
|
installation_path=fleet_installation_site_installation_path,
|
198
198
|
jre_distribution=fleet_installation_site_jre_distribution,
|
199
199
|
jre_security_status=fleet_installation_site_jre_security_status,
|
200
200
|
jre_vendor=fleet_installation_site_jre_vendor,
|
201
201
|
jre_version=fleet_installation_site_jre_version,
|
202
|
-
managed_instance_id=
|
202
|
+
managed_instance_id=test_managed_instance["id"],
|
203
203
|
os_families=fleet_installation_site_os_family,
|
204
204
|
path_contains=fleet_installation_site_path_contains,
|
205
205
|
time_end=fleet_installation_site_time_end,
|
@@ -279,13 +279,13 @@ def get_installation_site_output(application_id: Optional[pulumi.Input[Optional[
|
|
279
279
|
import pulumi_oci as oci
|
280
280
|
|
281
281
|
test_fleet_installation_site = oci.Jms.get_installation_site(fleet_id=test_fleet["id"],
|
282
|
-
application_id=
|
282
|
+
application_id=test_application["id"],
|
283
283
|
installation_path=fleet_installation_site_installation_path,
|
284
284
|
jre_distribution=fleet_installation_site_jre_distribution,
|
285
285
|
jre_security_status=fleet_installation_site_jre_security_status,
|
286
286
|
jre_vendor=fleet_installation_site_jre_vendor,
|
287
287
|
jre_version=fleet_installation_site_jre_version,
|
288
|
-
managed_instance_id=
|
288
|
+
managed_instance_id=test_managed_instance["id"],
|
289
289
|
os_families=fleet_installation_site_os_family,
|
290
290
|
path_contains=fleet_installation_site_path_contains,
|
291
291
|
time_end=fleet_installation_site_time_end,
|