pulumi-oci 2.6.0a1723011044__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.0a1723011044.dist-info → pulumi_oci-2.6.0a1723107075.dist-info}/METADATA +1 -1
- {pulumi_oci-2.6.0a1723011044.dist-info → pulumi_oci-2.6.0a1723107075.dist-info}/RECORD +62 -52
- {pulumi_oci-2.6.0a1723011044.dist-info → pulumi_oci-2.6.0a1723107075.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.6.0a1723011044.dist-info → pulumi_oci-2.6.0a1723107075.dist-info}/top_level.txt +0 -0
pulumi_oci/jms/outputs.py
CHANGED
@@ -31,6 +31,9 @@ __all__ = [
|
|
31
31
|
'JavaDownloadsJavaDownloadTokenLastUpdatedBy',
|
32
32
|
'JavaDownloadsJavaLicenseAcceptanceRecordCreatedBy',
|
33
33
|
'JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedBy',
|
34
|
+
'GetAgentInstallersAgentInstallerCollectionResult',
|
35
|
+
'GetAgentInstallersAgentInstallerCollectionItemResult',
|
36
|
+
'GetAgentInstallersFilterResult',
|
34
37
|
'GetAnnouncementsAnnouncementCollectionResult',
|
35
38
|
'GetAnnouncementsAnnouncementCollectionItemResult',
|
36
39
|
'GetAnnouncementsFilterResult',
|
@@ -126,6 +129,9 @@ __all__ = [
|
|
126
129
|
'GetJavaReleasesJavaReleaseCollectionItemFamilyDetailLatestReleaseArtifactResult',
|
127
130
|
'GetJavaReleasesJavaReleaseCollectionItemLicenseDetailResult',
|
128
131
|
'GetJavaReleasesJavaReleaseCollectionItemMosPatchResult',
|
132
|
+
'GetJmsPluginsFilterResult',
|
133
|
+
'GetJmsPluginsJmsPluginCollectionResult',
|
134
|
+
'GetJmsPluginsJmsPluginCollectionItemResult',
|
129
135
|
'GetListJreUsageItemResult',
|
130
136
|
'GetListJreUsageItemOperatingSystemResult',
|
131
137
|
]
|
@@ -1291,6 +1297,168 @@ class JavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedBy(dict):
|
|
1291
1297
|
return pulumi.get(self, "id")
|
1292
1298
|
|
1293
1299
|
|
1300
|
+
@pulumi.output_type
|
1301
|
+
class GetAgentInstallersAgentInstallerCollectionResult(dict):
|
1302
|
+
def __init__(__self__, *,
|
1303
|
+
items: Sequence['outputs.GetAgentInstallersAgentInstallerCollectionItemResult']):
|
1304
|
+
"""
|
1305
|
+
:param Sequence['GetAgentInstallersAgentInstallerCollectionItemArgs'] items: A list of the agent installer summaries.
|
1306
|
+
"""
|
1307
|
+
pulumi.set(__self__, "items", items)
|
1308
|
+
|
1309
|
+
@property
|
1310
|
+
@pulumi.getter
|
1311
|
+
def items(self) -> Sequence['outputs.GetAgentInstallersAgentInstallerCollectionItemResult']:
|
1312
|
+
"""
|
1313
|
+
A list of the agent installer summaries.
|
1314
|
+
"""
|
1315
|
+
return pulumi.get(self, "items")
|
1316
|
+
|
1317
|
+
|
1318
|
+
@pulumi.output_type
|
1319
|
+
class GetAgentInstallersAgentInstallerCollectionItemResult(dict):
|
1320
|
+
def __init__(__self__, *,
|
1321
|
+
agent_installer_description: str,
|
1322
|
+
agent_installer_id: str,
|
1323
|
+
agent_installer_version: str,
|
1324
|
+
agent_version: str,
|
1325
|
+
approximate_file_size_in_bytes: str,
|
1326
|
+
java_version: str,
|
1327
|
+
os_family: str,
|
1328
|
+
package_type: str,
|
1329
|
+
platform_architecture: str,
|
1330
|
+
sha256: str):
|
1331
|
+
"""
|
1332
|
+
:param str agent_installer_description: Description of the agent installer artifact. The description typically includes the OS, architecture, and agent installer type.
|
1333
|
+
:param str agent_installer_id: Unique identifier for the agent installer.
|
1334
|
+
:param str agent_installer_version: Agent installer version.
|
1335
|
+
:param str agent_version: Agent image version.
|
1336
|
+
:param str approximate_file_size_in_bytes: Approximate compressed file size in bytes.
|
1337
|
+
:param str java_version: Java version.
|
1338
|
+
:param str os_family: The OS family for the agent installer.
|
1339
|
+
:param str package_type: The package type (typically the file extension) of the agent software included in the installer.
|
1340
|
+
:param str platform_architecture: The platform architecture for the agent installer.
|
1341
|
+
:param str sha256: SHA256 checksum of the agent installer.
|
1342
|
+
"""
|
1343
|
+
pulumi.set(__self__, "agent_installer_description", agent_installer_description)
|
1344
|
+
pulumi.set(__self__, "agent_installer_id", agent_installer_id)
|
1345
|
+
pulumi.set(__self__, "agent_installer_version", agent_installer_version)
|
1346
|
+
pulumi.set(__self__, "agent_version", agent_version)
|
1347
|
+
pulumi.set(__self__, "approximate_file_size_in_bytes", approximate_file_size_in_bytes)
|
1348
|
+
pulumi.set(__self__, "java_version", java_version)
|
1349
|
+
pulumi.set(__self__, "os_family", os_family)
|
1350
|
+
pulumi.set(__self__, "package_type", package_type)
|
1351
|
+
pulumi.set(__self__, "platform_architecture", platform_architecture)
|
1352
|
+
pulumi.set(__self__, "sha256", sha256)
|
1353
|
+
|
1354
|
+
@property
|
1355
|
+
@pulumi.getter(name="agentInstallerDescription")
|
1356
|
+
def agent_installer_description(self) -> str:
|
1357
|
+
"""
|
1358
|
+
Description of the agent installer artifact. The description typically includes the OS, architecture, and agent installer type.
|
1359
|
+
"""
|
1360
|
+
return pulumi.get(self, "agent_installer_description")
|
1361
|
+
|
1362
|
+
@property
|
1363
|
+
@pulumi.getter(name="agentInstallerId")
|
1364
|
+
def agent_installer_id(self) -> str:
|
1365
|
+
"""
|
1366
|
+
Unique identifier for the agent installer.
|
1367
|
+
"""
|
1368
|
+
return pulumi.get(self, "agent_installer_id")
|
1369
|
+
|
1370
|
+
@property
|
1371
|
+
@pulumi.getter(name="agentInstallerVersion")
|
1372
|
+
def agent_installer_version(self) -> str:
|
1373
|
+
"""
|
1374
|
+
Agent installer version.
|
1375
|
+
"""
|
1376
|
+
return pulumi.get(self, "agent_installer_version")
|
1377
|
+
|
1378
|
+
@property
|
1379
|
+
@pulumi.getter(name="agentVersion")
|
1380
|
+
def agent_version(self) -> str:
|
1381
|
+
"""
|
1382
|
+
Agent image version.
|
1383
|
+
"""
|
1384
|
+
return pulumi.get(self, "agent_version")
|
1385
|
+
|
1386
|
+
@property
|
1387
|
+
@pulumi.getter(name="approximateFileSizeInBytes")
|
1388
|
+
def approximate_file_size_in_bytes(self) -> str:
|
1389
|
+
"""
|
1390
|
+
Approximate compressed file size in bytes.
|
1391
|
+
"""
|
1392
|
+
return pulumi.get(self, "approximate_file_size_in_bytes")
|
1393
|
+
|
1394
|
+
@property
|
1395
|
+
@pulumi.getter(name="javaVersion")
|
1396
|
+
def java_version(self) -> str:
|
1397
|
+
"""
|
1398
|
+
Java version.
|
1399
|
+
"""
|
1400
|
+
return pulumi.get(self, "java_version")
|
1401
|
+
|
1402
|
+
@property
|
1403
|
+
@pulumi.getter(name="osFamily")
|
1404
|
+
def os_family(self) -> str:
|
1405
|
+
"""
|
1406
|
+
The OS family for the agent installer.
|
1407
|
+
"""
|
1408
|
+
return pulumi.get(self, "os_family")
|
1409
|
+
|
1410
|
+
@property
|
1411
|
+
@pulumi.getter(name="packageType")
|
1412
|
+
def package_type(self) -> str:
|
1413
|
+
"""
|
1414
|
+
The package type (typically the file extension) of the agent software included in the installer.
|
1415
|
+
"""
|
1416
|
+
return pulumi.get(self, "package_type")
|
1417
|
+
|
1418
|
+
@property
|
1419
|
+
@pulumi.getter(name="platformArchitecture")
|
1420
|
+
def platform_architecture(self) -> str:
|
1421
|
+
"""
|
1422
|
+
The platform architecture for the agent installer.
|
1423
|
+
"""
|
1424
|
+
return pulumi.get(self, "platform_architecture")
|
1425
|
+
|
1426
|
+
@property
|
1427
|
+
@pulumi.getter
|
1428
|
+
def sha256(self) -> str:
|
1429
|
+
"""
|
1430
|
+
SHA256 checksum of the agent installer.
|
1431
|
+
"""
|
1432
|
+
return pulumi.get(self, "sha256")
|
1433
|
+
|
1434
|
+
|
1435
|
+
@pulumi.output_type
|
1436
|
+
class GetAgentInstallersFilterResult(dict):
|
1437
|
+
def __init__(__self__, *,
|
1438
|
+
name: str,
|
1439
|
+
values: Sequence[str],
|
1440
|
+
regex: Optional[bool] = None):
|
1441
|
+
pulumi.set(__self__, "name", name)
|
1442
|
+
pulumi.set(__self__, "values", values)
|
1443
|
+
if regex is not None:
|
1444
|
+
pulumi.set(__self__, "regex", regex)
|
1445
|
+
|
1446
|
+
@property
|
1447
|
+
@pulumi.getter
|
1448
|
+
def name(self) -> str:
|
1449
|
+
return pulumi.get(self, "name")
|
1450
|
+
|
1451
|
+
@property
|
1452
|
+
@pulumi.getter
|
1453
|
+
def values(self) -> Sequence[str]:
|
1454
|
+
return pulumi.get(self, "values")
|
1455
|
+
|
1456
|
+
@property
|
1457
|
+
@pulumi.getter
|
1458
|
+
def regex(self) -> Optional[bool]:
|
1459
|
+
return pulumi.get(self, "regex")
|
1460
|
+
|
1461
|
+
|
1294
1462
|
@pulumi.output_type
|
1295
1463
|
class GetAnnouncementsAnnouncementCollectionResult(dict):
|
1296
1464
|
def __init__(__self__, *,
|
@@ -2016,26 +2184,30 @@ class GetFleetCryptoAnalysisResultsCryptoAnalysisResultCollectionItemResult(dict
|
|
2016
2184
|
object: str,
|
2017
2185
|
summarized_event_count: int,
|
2018
2186
|
time_created: str,
|
2187
|
+
time_finished: str,
|
2019
2188
|
time_first_event: str,
|
2020
2189
|
time_last_event: str,
|
2190
|
+
time_started: str,
|
2021
2191
|
total_event_count: int,
|
2022
2192
|
work_request_id: str):
|
2023
2193
|
"""
|
2024
2194
|
:param str aggregation_mode: The aggregation mode of the crypto event analysis result.
|
2025
2195
|
:param str bucket: The Object Storage bucket name of this analysis result.
|
2026
2196
|
:param str crypto_roadmap_version: The Crypto Roadmap version used to perform the analysis.
|
2027
|
-
:param int finding_count:
|
2197
|
+
:param int finding_count: FindingCount of CryptoAnalysis Report.
|
2028
2198
|
:param str fleet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
2029
|
-
:param str host_name: The
|
2199
|
+
:param str host_name: The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance.
|
2030
2200
|
:param str id: The OCID to identify this analysis results.
|
2031
2201
|
:param str managed_instance_id: The Fleet-unique identifier of the related managed instance.
|
2032
2202
|
:param str namespace: The Object Storage namespace of this analysis result.
|
2033
|
-
:param int non_compliant_finding_count:
|
2203
|
+
:param int non_compliant_finding_count: Non Compliant Finding Count of CryptoAnalysis Report.
|
2034
2204
|
:param str object: The Object Storage object name of this analysis result.
|
2035
2205
|
:param int summarized_event_count: Total number of summarized events. Summarized events are deduplicated events of interest.
|
2036
2206
|
:param str time_created: The time the result is compiled.
|
2207
|
+
:param str time_finished: The time the JFR recording has finished.
|
2037
2208
|
:param str time_first_event: Time of the first event in the analysis.
|
2038
2209
|
:param str time_last_event: Time of the last event in the analysis.
|
2210
|
+
:param str time_started: The time the JFR recording has started.
|
2039
2211
|
:param int total_event_count: Total number of events in the analysis.
|
2040
2212
|
:param str work_request_id: The OCID of the work request to start the analysis.
|
2041
2213
|
"""
|
@@ -2052,8 +2224,10 @@ class GetFleetCryptoAnalysisResultsCryptoAnalysisResultCollectionItemResult(dict
|
|
2052
2224
|
pulumi.set(__self__, "object", object)
|
2053
2225
|
pulumi.set(__self__, "summarized_event_count", summarized_event_count)
|
2054
2226
|
pulumi.set(__self__, "time_created", time_created)
|
2227
|
+
pulumi.set(__self__, "time_finished", time_finished)
|
2055
2228
|
pulumi.set(__self__, "time_first_event", time_first_event)
|
2056
2229
|
pulumi.set(__self__, "time_last_event", time_last_event)
|
2230
|
+
pulumi.set(__self__, "time_started", time_started)
|
2057
2231
|
pulumi.set(__self__, "total_event_count", total_event_count)
|
2058
2232
|
pulumi.set(__self__, "work_request_id", work_request_id)
|
2059
2233
|
|
@@ -2085,7 +2259,7 @@ class GetFleetCryptoAnalysisResultsCryptoAnalysisResultCollectionItemResult(dict
|
|
2085
2259
|
@pulumi.getter(name="findingCount")
|
2086
2260
|
def finding_count(self) -> int:
|
2087
2261
|
"""
|
2088
|
-
|
2262
|
+
FindingCount of CryptoAnalysis Report.
|
2089
2263
|
"""
|
2090
2264
|
return pulumi.get(self, "finding_count")
|
2091
2265
|
|
@@ -2101,7 +2275,7 @@ class GetFleetCryptoAnalysisResultsCryptoAnalysisResultCollectionItemResult(dict
|
|
2101
2275
|
@pulumi.getter(name="hostName")
|
2102
2276
|
def host_name(self) -> str:
|
2103
2277
|
"""
|
2104
|
-
The
|
2278
|
+
The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance.
|
2105
2279
|
"""
|
2106
2280
|
return pulumi.get(self, "host_name")
|
2107
2281
|
|
@@ -2133,7 +2307,7 @@ class GetFleetCryptoAnalysisResultsCryptoAnalysisResultCollectionItemResult(dict
|
|
2133
2307
|
@pulumi.getter(name="nonCompliantFindingCount")
|
2134
2308
|
def non_compliant_finding_count(self) -> int:
|
2135
2309
|
"""
|
2136
|
-
|
2310
|
+
Non Compliant Finding Count of CryptoAnalysis Report.
|
2137
2311
|
"""
|
2138
2312
|
return pulumi.get(self, "non_compliant_finding_count")
|
2139
2313
|
|
@@ -2161,6 +2335,14 @@ class GetFleetCryptoAnalysisResultsCryptoAnalysisResultCollectionItemResult(dict
|
|
2161
2335
|
"""
|
2162
2336
|
return pulumi.get(self, "time_created")
|
2163
2337
|
|
2338
|
+
@property
|
2339
|
+
@pulumi.getter(name="timeFinished")
|
2340
|
+
def time_finished(self) -> str:
|
2341
|
+
"""
|
2342
|
+
The time the JFR recording has finished.
|
2343
|
+
"""
|
2344
|
+
return pulumi.get(self, "time_finished")
|
2345
|
+
|
2164
2346
|
@property
|
2165
2347
|
@pulumi.getter(name="timeFirstEvent")
|
2166
2348
|
def time_first_event(self) -> str:
|
@@ -2177,6 +2359,14 @@ class GetFleetCryptoAnalysisResultsCryptoAnalysisResultCollectionItemResult(dict
|
|
2177
2359
|
"""
|
2178
2360
|
return pulumi.get(self, "time_last_event")
|
2179
2361
|
|
2362
|
+
@property
|
2363
|
+
@pulumi.getter(name="timeStarted")
|
2364
|
+
def time_started(self) -> str:
|
2365
|
+
"""
|
2366
|
+
The time the JFR recording has started.
|
2367
|
+
"""
|
2368
|
+
return pulumi.get(self, "time_started")
|
2369
|
+
|
2180
2370
|
@property
|
2181
2371
|
@pulumi.getter(name="totalEventCount")
|
2182
2372
|
def total_event_count(self) -> int:
|
@@ -2542,11 +2732,11 @@ class GetFleetJavaMigrationAnalysisResultsJavaMigrationAnalysisResultCollectionI
|
|
2542
2732
|
"""
|
2543
2733
|
:param str application_execution_type: Execution type of the application for an application type, such as WAR and EAR, that is deployed or installed.
|
2544
2734
|
:param str application_key: The unique key that identifies the application.
|
2545
|
-
:param str application_name: The name of the application
|
2735
|
+
:param str application_name: The name of the application.
|
2546
2736
|
:param str application_path: The installation path of the application for which the Java migration analysis was performed.
|
2547
2737
|
:param str bucket: The name of the object storage bucket that contains the results of the migration analysis.
|
2548
2738
|
:param str fleet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
2549
|
-
:param str host_name: The
|
2739
|
+
:param str host_name: The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance.
|
2550
2740
|
:param str id: The OCID of the migration analysis report.
|
2551
2741
|
:param str managed_instance_id: The Fleet-unique identifier of the related managed instance.
|
2552
2742
|
:param str metadata: Additional info reserved for future use.
|
@@ -2596,7 +2786,7 @@ class GetFleetJavaMigrationAnalysisResultsJavaMigrationAnalysisResultCollectionI
|
|
2596
2786
|
@pulumi.getter(name="applicationName")
|
2597
2787
|
def application_name(self) -> str:
|
2598
2788
|
"""
|
2599
|
-
The name of the application
|
2789
|
+
The name of the application.
|
2600
2790
|
"""
|
2601
2791
|
return pulumi.get(self, "application_name")
|
2602
2792
|
|
@@ -2628,7 +2818,7 @@ class GetFleetJavaMigrationAnalysisResultsJavaMigrationAnalysisResultCollectionI
|
|
2628
2818
|
@pulumi.getter(name="hostName")
|
2629
2819
|
def host_name(self) -> str:
|
2630
2820
|
"""
|
2631
|
-
The
|
2821
|
+
The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance.
|
2632
2822
|
"""
|
2633
2823
|
return pulumi.get(self, "host_name")
|
2634
2824
|
|
@@ -2808,15 +2998,15 @@ class GetFleetPerformanceTuningAnalysisResultsPerformanceTuningAnalysisResultCol
|
|
2808
2998
|
:param str application_name: The name of the application for which the report has been generated.
|
2809
2999
|
:param str bucket: The Object Storage bucket name of this analysis result.
|
2810
3000
|
:param str fleet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
2811
|
-
:param str host_name: The
|
3001
|
+
:param str host_name: The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance.
|
2812
3002
|
:param str id: The OCID to identify this analysis results.
|
2813
3003
|
:param str managed_instance_id: The Fleet-unique identifier of the related managed instance.
|
2814
3004
|
:param str namespace: The Object Storage namespace of this analysis result.
|
2815
3005
|
:param str object: The Object Storage object name of this analysis result.
|
2816
3006
|
:param str result: Result of the analysis based on whether warnings have been found or not.
|
2817
3007
|
:param str time_created: The time the result is compiled.
|
2818
|
-
:param str time_finished: The time the JFR
|
2819
|
-
:param str time_started: The time the JFR
|
3008
|
+
:param str time_finished: The time the JFR recording has finished.
|
3009
|
+
:param str time_started: The time the JFR recording has started.
|
2820
3010
|
:param int warning_count: Total number of warnings reported by the analysis.
|
2821
3011
|
:param str work_request_id: The OCID of the work request to start the analysis.
|
2822
3012
|
"""
|
@@ -2890,7 +3080,7 @@ class GetFleetPerformanceTuningAnalysisResultsPerformanceTuningAnalysisResultCol
|
|
2890
3080
|
@pulumi.getter(name="hostName")
|
2891
3081
|
def host_name(self) -> str:
|
2892
3082
|
"""
|
2893
|
-
The
|
3083
|
+
The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance.
|
2894
3084
|
"""
|
2895
3085
|
return pulumi.get(self, "host_name")
|
2896
3086
|
|
@@ -2946,7 +3136,7 @@ class GetFleetPerformanceTuningAnalysisResultsPerformanceTuningAnalysisResultCol
|
|
2946
3136
|
@pulumi.getter(name="timeFinished")
|
2947
3137
|
def time_finished(self) -> str:
|
2948
3138
|
"""
|
2949
|
-
The time the JFR
|
3139
|
+
The time the JFR recording has finished.
|
2950
3140
|
"""
|
2951
3141
|
return pulumi.get(self, "time_finished")
|
2952
3142
|
|
@@ -2954,7 +3144,7 @@ class GetFleetPerformanceTuningAnalysisResultsPerformanceTuningAnalysisResultCol
|
|
2954
3144
|
@pulumi.getter(name="timeStarted")
|
2955
3145
|
def time_started(self) -> str:
|
2956
3146
|
"""
|
2957
|
-
The time the JFR
|
3147
|
+
The time the JFR recording has started.
|
2958
3148
|
"""
|
2959
3149
|
return pulumi.get(self, "time_started")
|
2960
3150
|
|
@@ -3046,7 +3236,7 @@ class GetFleetsFleetCollectionItemResult(dict):
|
|
3046
3236
|
:param str description: The Fleet's description.
|
3047
3237
|
:param str display_name: The display name.
|
3048
3238
|
:param Mapping[str, Any] freeform_tags: Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`. (See [Managing Tags and Tag Namespaces](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).)
|
3049
|
-
:param str id: The ID
|
3239
|
+
:param str id: The ID.
|
3050
3240
|
:param Sequence['GetFleetsFleetCollectionItemInventoryLogArgs'] inventory_logs: Custom Log for inventory or operation log.
|
3051
3241
|
:param bool is_advanced_features_enabled: Whether or not advanced features are enabled in this Fleet. Deprecated, use `/fleets/{fleetId}/advanceFeatureConfiguration` API instead.
|
3052
3242
|
:param bool is_export_setting_enabled: Whether or not export setting is enabled in this Fleet.
|
@@ -3158,7 +3348,7 @@ class GetFleetsFleetCollectionItemResult(dict):
|
|
3158
3348
|
@pulumi.getter
|
3159
3349
|
def id(self) -> str:
|
3160
3350
|
"""
|
3161
|
-
The ID
|
3351
|
+
The ID.
|
3162
3352
|
"""
|
3163
3353
|
return pulumi.get(self, "id")
|
3164
3354
|
|
@@ -3812,7 +4002,7 @@ class GetInstallationSitesInstallationSiteCollectionItemItemOperatingSystemResul
|
|
3812
4002
|
version: str):
|
3813
4003
|
"""
|
3814
4004
|
:param str architecture: The architecture of the operating system as provided by the Java system property os.arch.
|
3815
|
-
:param str family: The operating system type, such as Windows or
|
4005
|
+
:param str family: The operating system type, such as Windows, Linux or macOS
|
3816
4006
|
:param int managed_instance_count: Number of instances running the operating system.
|
3817
4007
|
:param str name: The name of the operating system as provided by the Java system property os.name.
|
3818
4008
|
:param str version: The version of the operating system as provided by the Java system property os.version.
|
@@ -3835,7 +4025,7 @@ class GetInstallationSitesInstallationSiteCollectionItemItemOperatingSystemResul
|
|
3835
4025
|
@pulumi.getter
|
3836
4026
|
def family(self) -> str:
|
3837
4027
|
"""
|
3838
|
-
The operating system type, such as Windows or
|
4028
|
+
The operating system type, such as Windows, Linux or macOS
|
3839
4029
|
"""
|
3840
4030
|
return pulumi.get(self, "family")
|
3841
4031
|
|
@@ -5212,6 +5402,7 @@ class GetJavaFamiliesJavaFamilyCollectionItemResult(dict):
|
|
5212
5402
|
is_supported_version: bool,
|
5213
5403
|
latest_release_artifacts: Sequence['outputs.GetJavaFamiliesJavaFamilyCollectionItemLatestReleaseArtifactResult'],
|
5214
5404
|
latest_release_version: str,
|
5405
|
+
release_date: str,
|
5215
5406
|
support_type: str):
|
5216
5407
|
"""
|
5217
5408
|
:param str display_name: The display name for the Java family.
|
@@ -5221,6 +5412,7 @@ class GetJavaFamiliesJavaFamilyCollectionItemResult(dict):
|
|
5221
5412
|
:param bool is_supported_version: Filter the Java Release Family versions by support status.
|
5222
5413
|
:param Sequence['GetJavaFamiliesJavaFamilyCollectionItemLatestReleaseArtifactArgs'] latest_release_artifacts: List of artifacts for the latest Java release version in this family. The script URLs in the response can be used from a command line, or in scripts and dockerfiles to always get the artifacts corresponding to the latest update release version.
|
5223
5414
|
:param str latest_release_version: Latest Java release version in the family.
|
5415
|
+
:param str release_date: The date on which the Java release family was first made available (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
5224
5416
|
:param str support_type: This indicates the support category for the Java release family.
|
5225
5417
|
"""
|
5226
5418
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -5230,6 +5422,7 @@ class GetJavaFamiliesJavaFamilyCollectionItemResult(dict):
|
|
5230
5422
|
pulumi.set(__self__, "is_supported_version", is_supported_version)
|
5231
5423
|
pulumi.set(__self__, "latest_release_artifacts", latest_release_artifacts)
|
5232
5424
|
pulumi.set(__self__, "latest_release_version", latest_release_version)
|
5425
|
+
pulumi.set(__self__, "release_date", release_date)
|
5233
5426
|
pulumi.set(__self__, "support_type", support_type)
|
5234
5427
|
|
5235
5428
|
@property
|
@@ -5288,6 +5481,14 @@ class GetJavaFamiliesJavaFamilyCollectionItemResult(dict):
|
|
5288
5481
|
"""
|
5289
5482
|
return pulumi.get(self, "latest_release_version")
|
5290
5483
|
|
5484
|
+
@property
|
5485
|
+
@pulumi.getter(name="releaseDate")
|
5486
|
+
def release_date(self) -> str:
|
5487
|
+
"""
|
5488
|
+
The date on which the Java release family was first made available (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
5489
|
+
"""
|
5490
|
+
return pulumi.get(self, "release_date")
|
5491
|
+
|
5291
5492
|
@property
|
5292
5493
|
@pulumi.getter(name="supportType")
|
5293
5494
|
def support_type(self) -> str:
|
@@ -5320,7 +5521,7 @@ class GetJavaFamiliesJavaFamilyCollectionItemLatestReleaseArtifactResult(dict):
|
|
5320
5521
|
:param str artifact_description: Description of the binary artifact. Typically includes the OS, architecture, and installer type.
|
5321
5522
|
:param str artifact_file_name: The file name of the artifact.
|
5322
5523
|
:param str artifact_id: Unique identifier for the artifact.
|
5323
|
-
:param str download_url: The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms/20230601/
|
5524
|
+
:param str download_url: The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms-java-download/20230601/DownloadUrl/GenerateArtifactDownloadUrl) for more details.
|
5324
5525
|
:param str os_family: The target Operating System family for the artifact.
|
5325
5526
|
:param str package_type: The package type(typically the file extension) of the artifact.
|
5326
5527
|
:param str package_type_detail: Additional information about the package type.
|
@@ -5394,7 +5595,7 @@ class GetJavaFamiliesJavaFamilyCollectionItemLatestReleaseArtifactResult(dict):
|
|
5394
5595
|
@pulumi.getter(name="downloadUrl")
|
5395
5596
|
def download_url(self) -> str:
|
5396
5597
|
"""
|
5397
|
-
The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms/20230601/
|
5598
|
+
The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms-java-download/20230601/DownloadUrl/GenerateArtifactDownloadUrl) for more details.
|
5398
5599
|
"""
|
5399
5600
|
return pulumi.get(self, "download_url")
|
5400
5601
|
|
@@ -5470,7 +5671,7 @@ class GetJavaFamilyLatestReleaseArtifactResult(dict):
|
|
5470
5671
|
:param str artifact_description: Description of the binary artifact. Typically includes the OS, architecture, and installer type.
|
5471
5672
|
:param str artifact_file_name: The file name of the artifact.
|
5472
5673
|
:param str artifact_id: Unique identifier for the artifact.
|
5473
|
-
:param str download_url: The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms/20230601/
|
5674
|
+
:param str download_url: The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms-java-download/20230601/DownloadUrl/GenerateArtifactDownloadUrl) for more details.
|
5474
5675
|
:param str os_family: The target Operating System family for the artifact.
|
5475
5676
|
:param str package_type: The package type(typically the file extension) of the artifact.
|
5476
5677
|
:param str package_type_detail: Additional information about the package type.
|
@@ -5544,7 +5745,7 @@ class GetJavaFamilyLatestReleaseArtifactResult(dict):
|
|
5544
5745
|
@pulumi.getter(name="downloadUrl")
|
5545
5746
|
def download_url(self) -> str:
|
5546
5747
|
"""
|
5547
|
-
The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms/20230601/
|
5748
|
+
The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms-java-download/20230601/DownloadUrl/GenerateArtifactDownloadUrl) for more details.
|
5548
5749
|
"""
|
5549
5750
|
return pulumi.get(self, "download_url")
|
5550
5751
|
|
@@ -5620,7 +5821,7 @@ class GetJavaReleaseArtifactResult(dict):
|
|
5620
5821
|
:param str artifact_description: Description of the binary artifact. Typically includes the OS, architecture, and installer type.
|
5621
5822
|
:param str artifact_file_name: The file name of the artifact.
|
5622
5823
|
:param str artifact_id: Unique identifier for the artifact.
|
5623
|
-
:param str download_url: The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms/20230601/
|
5824
|
+
:param str download_url: The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms-java-download/20230601/DownloadUrl/GenerateArtifactDownloadUrl) for more details.
|
5624
5825
|
:param str os_family: The target Operating System family for the artifact.
|
5625
5826
|
:param str package_type: The package type(typically the file extension) of the artifact.
|
5626
5827
|
:param str package_type_detail: Additional information about the package type.
|
@@ -5694,7 +5895,7 @@ class GetJavaReleaseArtifactResult(dict):
|
|
5694
5895
|
@pulumi.getter(name="downloadUrl")
|
5695
5896
|
def download_url(self) -> str:
|
5696
5897
|
"""
|
5697
|
-
The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms/20230601/
|
5898
|
+
The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms-java-download/20230601/DownloadUrl/GenerateArtifactDownloadUrl) for more details.
|
5698
5899
|
"""
|
5699
5900
|
return pulumi.get(self, "download_url")
|
5700
5901
|
|
@@ -5757,6 +5958,7 @@ class GetJavaReleaseFamilyDetailResult(dict):
|
|
5757
5958
|
is_supported_version: bool,
|
5758
5959
|
latest_release_artifacts: Sequence['outputs.GetJavaReleaseFamilyDetailLatestReleaseArtifactResult'],
|
5759
5960
|
latest_release_version: str,
|
5961
|
+
release_date: str,
|
5760
5962
|
support_type: str):
|
5761
5963
|
"""
|
5762
5964
|
:param str display_name: Commonly used name for the MoS release.
|
@@ -5766,6 +5968,7 @@ class GetJavaReleaseFamilyDetailResult(dict):
|
|
5766
5968
|
:param bool is_supported_version: Whether or not this Java release family is under active support. Refer [Java Support Roadmap](https://www.oracle.com/java/technologies/java-se-support-roadmap.html) for more details.
|
5767
5969
|
:param Sequence['GetJavaReleaseFamilyDetailLatestReleaseArtifactArgs'] latest_release_artifacts: List of artifacts for the latest Java release version in this family. The script URLs in the response can be used from a command line, or in scripts and dockerfiles to always get the artifacts corresponding to the latest update release version.
|
5768
5970
|
:param str latest_release_version: Latest Java release version in the family.
|
5971
|
+
:param str release_date: The release date of the Java version (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
5769
5972
|
:param str support_type: This indicates the support category for the Java release family.
|
5770
5973
|
"""
|
5771
5974
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -5775,6 +5978,7 @@ class GetJavaReleaseFamilyDetailResult(dict):
|
|
5775
5978
|
pulumi.set(__self__, "is_supported_version", is_supported_version)
|
5776
5979
|
pulumi.set(__self__, "latest_release_artifacts", latest_release_artifacts)
|
5777
5980
|
pulumi.set(__self__, "latest_release_version", latest_release_version)
|
5981
|
+
pulumi.set(__self__, "release_date", release_date)
|
5778
5982
|
pulumi.set(__self__, "support_type", support_type)
|
5779
5983
|
|
5780
5984
|
@property
|
@@ -5833,6 +6037,14 @@ class GetJavaReleaseFamilyDetailResult(dict):
|
|
5833
6037
|
"""
|
5834
6038
|
return pulumi.get(self, "latest_release_version")
|
5835
6039
|
|
6040
|
+
@property
|
6041
|
+
@pulumi.getter(name="releaseDate")
|
6042
|
+
def release_date(self) -> str:
|
6043
|
+
"""
|
6044
|
+
The release date of the Java version (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
6045
|
+
"""
|
6046
|
+
return pulumi.get(self, "release_date")
|
6047
|
+
|
5836
6048
|
@property
|
5837
6049
|
@pulumi.getter(name="supportType")
|
5838
6050
|
def support_type(self) -> str:
|
@@ -5865,7 +6077,7 @@ class GetJavaReleaseFamilyDetailLatestReleaseArtifactResult(dict):
|
|
5865
6077
|
:param str artifact_description: Description of the binary artifact. Typically includes the OS, architecture, and installer type.
|
5866
6078
|
:param str artifact_file_name: The file name of the artifact.
|
5867
6079
|
:param str artifact_id: Unique identifier for the artifact.
|
5868
|
-
:param str download_url: The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms/20230601/
|
6080
|
+
:param str download_url: The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms-java-download/20230601/DownloadUrl/GenerateArtifactDownloadUrl) for more details.
|
5869
6081
|
:param str os_family: The target Operating System family for the artifact.
|
5870
6082
|
:param str package_type: The package type(typically the file extension) of the artifact.
|
5871
6083
|
:param str package_type_detail: Additional information about the package type.
|
@@ -5939,7 +6151,7 @@ class GetJavaReleaseFamilyDetailLatestReleaseArtifactResult(dict):
|
|
5939
6151
|
@pulumi.getter(name="downloadUrl")
|
5940
6152
|
def download_url(self) -> str:
|
5941
6153
|
"""
|
5942
|
-
The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms/20230601/
|
6154
|
+
The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms-java-download/20230601/DownloadUrl/GenerateArtifactDownloadUrl) for more details.
|
5943
6155
|
"""
|
5944
6156
|
return pulumi.get(self, "download_url")
|
5945
6157
|
|
@@ -6284,7 +6496,7 @@ class GetJavaReleasesJavaReleaseCollectionItemArtifactResult(dict):
|
|
6284
6496
|
:param str artifact_description: Description of the binary artifact. Typically includes the OS, architecture, and installer type.
|
6285
6497
|
:param str artifact_file_name: The file name of the artifact.
|
6286
6498
|
:param str artifact_id: Unique identifier for the artifact.
|
6287
|
-
:param str download_url: The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms/20230601/
|
6499
|
+
:param str download_url: The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms-java-download/20230601/DownloadUrl/GenerateArtifactDownloadUrl) for more details.
|
6288
6500
|
:param str os_family: The target Operating System family for the artifact.
|
6289
6501
|
:param str package_type: The package type(typically the file extension) of the artifact.
|
6290
6502
|
:param str package_type_detail: Additional information about the package type.
|
@@ -6358,7 +6570,7 @@ class GetJavaReleasesJavaReleaseCollectionItemArtifactResult(dict):
|
|
6358
6570
|
@pulumi.getter(name="downloadUrl")
|
6359
6571
|
def download_url(self) -> str:
|
6360
6572
|
"""
|
6361
|
-
The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms/20230601/
|
6573
|
+
The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms-java-download/20230601/DownloadUrl/GenerateArtifactDownloadUrl) for more details.
|
6362
6574
|
"""
|
6363
6575
|
return pulumi.get(self, "download_url")
|
6364
6576
|
|
@@ -6421,6 +6633,7 @@ class GetJavaReleasesJavaReleaseCollectionItemFamilyDetailResult(dict):
|
|
6421
6633
|
is_supported_version: bool,
|
6422
6634
|
latest_release_artifacts: Sequence['outputs.GetJavaReleasesJavaReleaseCollectionItemFamilyDetailLatestReleaseArtifactResult'],
|
6423
6635
|
latest_release_version: str,
|
6636
|
+
release_date: str,
|
6424
6637
|
support_type: str):
|
6425
6638
|
"""
|
6426
6639
|
:param str display_name: Commonly used name for the MoS release.
|
@@ -6430,6 +6643,7 @@ class GetJavaReleasesJavaReleaseCollectionItemFamilyDetailResult(dict):
|
|
6430
6643
|
:param bool is_supported_version: Whether or not this Java release family is under active support. Refer [Java Support Roadmap](https://www.oracle.com/java/technologies/java-se-support-roadmap.html) for more details.
|
6431
6644
|
:param Sequence['GetJavaReleasesJavaReleaseCollectionItemFamilyDetailLatestReleaseArtifactArgs'] latest_release_artifacts: List of artifacts for the latest Java release version in this family. The script URLs in the response can be used from a command line, or in scripts and dockerfiles to always get the artifacts corresponding to the latest update release version.
|
6432
6645
|
:param str latest_release_version: Latest Java release version in the family.
|
6646
|
+
:param str release_date: The release date of the Java version (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
6433
6647
|
:param str support_type: This indicates the support category for the Java release family.
|
6434
6648
|
"""
|
6435
6649
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -6439,6 +6653,7 @@ class GetJavaReleasesJavaReleaseCollectionItemFamilyDetailResult(dict):
|
|
6439
6653
|
pulumi.set(__self__, "is_supported_version", is_supported_version)
|
6440
6654
|
pulumi.set(__self__, "latest_release_artifacts", latest_release_artifacts)
|
6441
6655
|
pulumi.set(__self__, "latest_release_version", latest_release_version)
|
6656
|
+
pulumi.set(__self__, "release_date", release_date)
|
6442
6657
|
pulumi.set(__self__, "support_type", support_type)
|
6443
6658
|
|
6444
6659
|
@property
|
@@ -6497,6 +6712,14 @@ class GetJavaReleasesJavaReleaseCollectionItemFamilyDetailResult(dict):
|
|
6497
6712
|
"""
|
6498
6713
|
return pulumi.get(self, "latest_release_version")
|
6499
6714
|
|
6715
|
+
@property
|
6716
|
+
@pulumi.getter(name="releaseDate")
|
6717
|
+
def release_date(self) -> str:
|
6718
|
+
"""
|
6719
|
+
The release date of the Java version (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)).
|
6720
|
+
"""
|
6721
|
+
return pulumi.get(self, "release_date")
|
6722
|
+
|
6500
6723
|
@property
|
6501
6724
|
@pulumi.getter(name="supportType")
|
6502
6725
|
def support_type(self) -> str:
|
@@ -6529,7 +6752,7 @@ class GetJavaReleasesJavaReleaseCollectionItemFamilyDetailLatestReleaseArtifactR
|
|
6529
6752
|
:param str artifact_description: Description of the binary artifact. Typically includes the OS, architecture, and installer type.
|
6530
6753
|
:param str artifact_file_name: The file name of the artifact.
|
6531
6754
|
:param str artifact_id: Unique identifier for the artifact.
|
6532
|
-
:param str download_url: The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms/20230601/
|
6755
|
+
:param str download_url: The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms-java-download/20230601/DownloadUrl/GenerateArtifactDownloadUrl) for more details.
|
6533
6756
|
:param str os_family: The target Operating System family for the artifact.
|
6534
6757
|
:param str package_type: The package type(typically the file extension) of the artifact.
|
6535
6758
|
:param str package_type_detail: Additional information about the package type.
|
@@ -6603,7 +6826,7 @@ class GetJavaReleasesJavaReleaseCollectionItemFamilyDetailLatestReleaseArtifactR
|
|
6603
6826
|
@pulumi.getter(name="downloadUrl")
|
6604
6827
|
def download_url(self) -> str:
|
6605
6828
|
"""
|
6606
|
-
The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms/20230601/
|
6829
|
+
The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this [API](https://docs.oracle.com/en-us/iaas/api/#/en/jms-java-download/20230601/DownloadUrl/GenerateArtifactDownloadUrl) for more details.
|
6607
6830
|
"""
|
6608
6831
|
return pulumi.get(self, "download_url")
|
6609
6832
|
|
@@ -6725,6 +6948,239 @@ class GetJavaReleasesJavaReleaseCollectionItemMosPatchResult(dict):
|
|
6725
6948
|
return pulumi.get(self, "patch_url")
|
6726
6949
|
|
6727
6950
|
|
6951
|
+
@pulumi.output_type
|
6952
|
+
class GetJmsPluginsFilterResult(dict):
|
6953
|
+
def __init__(__self__, *,
|
6954
|
+
name: str,
|
6955
|
+
values: Sequence[str],
|
6956
|
+
regex: Optional[bool] = None):
|
6957
|
+
pulumi.set(__self__, "name", name)
|
6958
|
+
pulumi.set(__self__, "values", values)
|
6959
|
+
if regex is not None:
|
6960
|
+
pulumi.set(__self__, "regex", regex)
|
6961
|
+
|
6962
|
+
@property
|
6963
|
+
@pulumi.getter
|
6964
|
+
def name(self) -> str:
|
6965
|
+
return pulumi.get(self, "name")
|
6966
|
+
|
6967
|
+
@property
|
6968
|
+
@pulumi.getter
|
6969
|
+
def values(self) -> Sequence[str]:
|
6970
|
+
return pulumi.get(self, "values")
|
6971
|
+
|
6972
|
+
@property
|
6973
|
+
@pulumi.getter
|
6974
|
+
def regex(self) -> Optional[bool]:
|
6975
|
+
return pulumi.get(self, "regex")
|
6976
|
+
|
6977
|
+
|
6978
|
+
@pulumi.output_type
|
6979
|
+
class GetJmsPluginsJmsPluginCollectionResult(dict):
|
6980
|
+
def __init__(__self__, *,
|
6981
|
+
items: Sequence['outputs.GetJmsPluginsJmsPluginCollectionItemResult']):
|
6982
|
+
pulumi.set(__self__, "items", items)
|
6983
|
+
|
6984
|
+
@property
|
6985
|
+
@pulumi.getter
|
6986
|
+
def items(self) -> Sequence['outputs.GetJmsPluginsJmsPluginCollectionItemResult']:
|
6987
|
+
return pulumi.get(self, "items")
|
6988
|
+
|
6989
|
+
|
6990
|
+
@pulumi.output_type
|
6991
|
+
class GetJmsPluginsJmsPluginCollectionItemResult(dict):
|
6992
|
+
def __init__(__self__, *,
|
6993
|
+
agent_id: str,
|
6994
|
+
agent_type: str,
|
6995
|
+
availability_status: str,
|
6996
|
+
compartment_id: str,
|
6997
|
+
defined_tags: Mapping[str, Any],
|
6998
|
+
fleet_id: str,
|
6999
|
+
freeform_tags: Mapping[str, Any],
|
7000
|
+
hostname: str,
|
7001
|
+
id: str,
|
7002
|
+
os_architecture: str,
|
7003
|
+
os_distribution: str,
|
7004
|
+
os_family: str,
|
7005
|
+
plugin_version: str,
|
7006
|
+
state: str,
|
7007
|
+
system_tags: Mapping[str, Any],
|
7008
|
+
time_last_seen: str,
|
7009
|
+
time_registered: str):
|
7010
|
+
"""
|
7011
|
+
:param str agent_id: The ManagementAgent (OMA) or Instance (OCA) [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) that identifies the Agent.
|
7012
|
+
:param str agent_type: The agent type.
|
7013
|
+
:param str availability_status: Filter JmsPlugin with its availability status.
|
7014
|
+
: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.
|
7015
|
+
:param Mapping[str, Any] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`. (See [Understanding Free-form Tags](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
7016
|
+
:param str fleet_id: The ID of the Fleet.
|
7017
|
+
:param Mapping[str, Any] freeform_tags: Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`. (See [Managing Tags and Tag Namespaces](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).)
|
7018
|
+
:param str hostname: The hostname of the agent.
|
7019
|
+
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the JmsPlugin.
|
7020
|
+
:param str os_architecture: The architecture of the operating system of the plugin.
|
7021
|
+
:param str os_distribution: The distribution of the operating system of the plugin.
|
7022
|
+
:param str os_family: The operating system family for the plugin.
|
7023
|
+
:param str plugin_version: The version of the plugin.
|
7024
|
+
:param str state: Filter JmsPlugin with its lifecycle state.
|
7025
|
+
:param Mapping[str, Any] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
7026
|
+
:param str time_last_seen: The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.
|
7027
|
+
:param str time_registered: The date and time the plugin was registered.
|
7028
|
+
"""
|
7029
|
+
pulumi.set(__self__, "agent_id", agent_id)
|
7030
|
+
pulumi.set(__self__, "agent_type", agent_type)
|
7031
|
+
pulumi.set(__self__, "availability_status", availability_status)
|
7032
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
7033
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
7034
|
+
pulumi.set(__self__, "fleet_id", fleet_id)
|
7035
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
7036
|
+
pulumi.set(__self__, "hostname", hostname)
|
7037
|
+
pulumi.set(__self__, "id", id)
|
7038
|
+
pulumi.set(__self__, "os_architecture", os_architecture)
|
7039
|
+
pulumi.set(__self__, "os_distribution", os_distribution)
|
7040
|
+
pulumi.set(__self__, "os_family", os_family)
|
7041
|
+
pulumi.set(__self__, "plugin_version", plugin_version)
|
7042
|
+
pulumi.set(__self__, "state", state)
|
7043
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
7044
|
+
pulumi.set(__self__, "time_last_seen", time_last_seen)
|
7045
|
+
pulumi.set(__self__, "time_registered", time_registered)
|
7046
|
+
|
7047
|
+
@property
|
7048
|
+
@pulumi.getter(name="agentId")
|
7049
|
+
def agent_id(self) -> str:
|
7050
|
+
"""
|
7051
|
+
The ManagementAgent (OMA) or Instance (OCA) [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) that identifies the Agent.
|
7052
|
+
"""
|
7053
|
+
return pulumi.get(self, "agent_id")
|
7054
|
+
|
7055
|
+
@property
|
7056
|
+
@pulumi.getter(name="agentType")
|
7057
|
+
def agent_type(self) -> str:
|
7058
|
+
"""
|
7059
|
+
The agent type.
|
7060
|
+
"""
|
7061
|
+
return pulumi.get(self, "agent_type")
|
7062
|
+
|
7063
|
+
@property
|
7064
|
+
@pulumi.getter(name="availabilityStatus")
|
7065
|
+
def availability_status(self) -> str:
|
7066
|
+
"""
|
7067
|
+
Filter JmsPlugin with its availability status.
|
7068
|
+
"""
|
7069
|
+
return pulumi.get(self, "availability_status")
|
7070
|
+
|
7071
|
+
@property
|
7072
|
+
@pulumi.getter(name="compartmentId")
|
7073
|
+
def compartment_id(self) -> str:
|
7074
|
+
"""
|
7075
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
7076
|
+
"""
|
7077
|
+
return pulumi.get(self, "compartment_id")
|
7078
|
+
|
7079
|
+
@property
|
7080
|
+
@pulumi.getter(name="definedTags")
|
7081
|
+
def defined_tags(self) -> Mapping[str, Any]:
|
7082
|
+
"""
|
7083
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`. (See [Understanding Free-form Tags](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)).
|
7084
|
+
"""
|
7085
|
+
return pulumi.get(self, "defined_tags")
|
7086
|
+
|
7087
|
+
@property
|
7088
|
+
@pulumi.getter(name="fleetId")
|
7089
|
+
def fleet_id(self) -> str:
|
7090
|
+
"""
|
7091
|
+
The ID of the Fleet.
|
7092
|
+
"""
|
7093
|
+
return pulumi.get(self, "fleet_id")
|
7094
|
+
|
7095
|
+
@property
|
7096
|
+
@pulumi.getter(name="freeformTags")
|
7097
|
+
def freeform_tags(self) -> Mapping[str, Any]:
|
7098
|
+
"""
|
7099
|
+
Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`. (See [Managing Tags and Tag Namespaces](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).)
|
7100
|
+
"""
|
7101
|
+
return pulumi.get(self, "freeform_tags")
|
7102
|
+
|
7103
|
+
@property
|
7104
|
+
@pulumi.getter
|
7105
|
+
def hostname(self) -> str:
|
7106
|
+
"""
|
7107
|
+
The hostname of the agent.
|
7108
|
+
"""
|
7109
|
+
return pulumi.get(self, "hostname")
|
7110
|
+
|
7111
|
+
@property
|
7112
|
+
@pulumi.getter
|
7113
|
+
def id(self) -> str:
|
7114
|
+
"""
|
7115
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the JmsPlugin.
|
7116
|
+
"""
|
7117
|
+
return pulumi.get(self, "id")
|
7118
|
+
|
7119
|
+
@property
|
7120
|
+
@pulumi.getter(name="osArchitecture")
|
7121
|
+
def os_architecture(self) -> str:
|
7122
|
+
"""
|
7123
|
+
The architecture of the operating system of the plugin.
|
7124
|
+
"""
|
7125
|
+
return pulumi.get(self, "os_architecture")
|
7126
|
+
|
7127
|
+
@property
|
7128
|
+
@pulumi.getter(name="osDistribution")
|
7129
|
+
def os_distribution(self) -> str:
|
7130
|
+
"""
|
7131
|
+
The distribution of the operating system of the plugin.
|
7132
|
+
"""
|
7133
|
+
return pulumi.get(self, "os_distribution")
|
7134
|
+
|
7135
|
+
@property
|
7136
|
+
@pulumi.getter(name="osFamily")
|
7137
|
+
def os_family(self) -> str:
|
7138
|
+
"""
|
7139
|
+
The operating system family for the plugin.
|
7140
|
+
"""
|
7141
|
+
return pulumi.get(self, "os_family")
|
7142
|
+
|
7143
|
+
@property
|
7144
|
+
@pulumi.getter(name="pluginVersion")
|
7145
|
+
def plugin_version(self) -> str:
|
7146
|
+
"""
|
7147
|
+
The version of the plugin.
|
7148
|
+
"""
|
7149
|
+
return pulumi.get(self, "plugin_version")
|
7150
|
+
|
7151
|
+
@property
|
7152
|
+
@pulumi.getter
|
7153
|
+
def state(self) -> str:
|
7154
|
+
"""
|
7155
|
+
Filter JmsPlugin with its lifecycle state.
|
7156
|
+
"""
|
7157
|
+
return pulumi.get(self, "state")
|
7158
|
+
|
7159
|
+
@property
|
7160
|
+
@pulumi.getter(name="systemTags")
|
7161
|
+
def system_tags(self) -> Mapping[str, Any]:
|
7162
|
+
"""
|
7163
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
7164
|
+
"""
|
7165
|
+
return pulumi.get(self, "system_tags")
|
7166
|
+
|
7167
|
+
@property
|
7168
|
+
@pulumi.getter(name="timeLastSeen")
|
7169
|
+
def time_last_seen(self) -> str:
|
7170
|
+
"""
|
7171
|
+
The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.
|
7172
|
+
"""
|
7173
|
+
return pulumi.get(self, "time_last_seen")
|
7174
|
+
|
7175
|
+
@property
|
7176
|
+
@pulumi.getter(name="timeRegistered")
|
7177
|
+
def time_registered(self) -> str:
|
7178
|
+
"""
|
7179
|
+
The date and time the plugin was registered.
|
7180
|
+
"""
|
7181
|
+
return pulumi.get(self, "time_registered")
|
7182
|
+
|
7183
|
+
|
6728
7184
|
@pulumi.output_type
|
6729
7185
|
class GetListJreUsageItemResult(dict):
|
6730
7186
|
def __init__(__self__, *,
|