pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.1.0a1751948424__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 +299 -0
- pulumi_oci/capacitymanagement/__init__.py +18 -0
- pulumi_oci/capacitymanagement/_inputs.py +459 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
- pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
- pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
- pulumi_oci/capacitymanagement/outputs.py +3499 -1230
- pulumi_oci/containerengine/get_cluster.py +7 -7
- pulumi_oci/core/__init__.py +4 -0
- pulumi_oci/core/_inputs.py +477 -0
- pulumi_oci/core/compute_host.py +910 -0
- pulumi_oci/core/compute_host_group.py +648 -0
- pulumi_oci/core/dedicated_vm_host.py +56 -0
- pulumi_oci/core/get_compute_host.py +72 -1
- pulumi_oci/core/get_compute_host_group.py +269 -0
- pulumi_oci/core/get_compute_host_groups.py +148 -0
- pulumi_oci/core/get_compute_hosts.py +37 -1
- pulumi_oci/core/get_dedicated_vm_host.py +29 -1
- pulumi_oci/core/outputs.py +912 -24
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +739 -52
- pulumi_oci/database/autonomous_container_database.py +141 -12
- pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
- pulumi_oci/database/autonomous_database_software_image.py +28 -0
- pulumi_oci/database/autonomous_vm_cluster.py +28 -0
- pulumi_oci/database/backup_destination.py +28 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +82 -7
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/database_software_image.py +28 -0
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/db_home.py +28 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/db_system.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
- pulumi_oci/database/external_container_database.py +28 -0
- pulumi_oci/database/external_database_connector.py +28 -0
- pulumi_oci/database/external_non_container_database.py +28 -0
- pulumi_oci/database/external_pluggable_database.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +52 -2
- pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
- pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
- pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
- pulumi_oci/database/get_backup_destination.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_database_software_image.py +15 -1
- pulumi_oci/database/get_db_home.py +15 -1
- pulumi_oci/database/get_db_node.py +15 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_external_container_database.py +15 -1
- pulumi_oci/database/get_external_database_connector.py +15 -1
- pulumi_oci/database/get_external_non_container_database.py +15 -1
- pulumi_oci/database/get_external_pluggable_database.py +15 -1
- pulumi_oci/database/get_key_store.py +15 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_oneoff_patch.py +15 -1
- pulumi_oci/database/get_pluggable_database.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/get_vm_cluster_network.py +15 -1
- pulumi_oci/database/key_store.py +28 -0
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/oneoff_patch.py +28 -0
- pulumi_oci/database/outputs.py +1624 -54
- pulumi_oci/database/pluggable_database.py +28 -0
- pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
- pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
- pulumi_oci/database/vm_cluster.py +28 -0
- pulumi_oci/database/vm_cluster_network.py +28 -0
- pulumi_oci/databasemanagement/__init__.py +7 -0
- pulumi_oci/databasemanagement/_inputs.py +196 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
- pulumi_oci/databasemanagement/outputs.py +1330 -19
- pulumi_oci/databasemigration/_inputs.py +94 -0
- pulumi_oci/databasemigration/get_migration.py +15 -1
- pulumi_oci/databasemigration/get_migrations.py +15 -1
- pulumi_oci/databasemigration/job.py +28 -0
- pulumi_oci/databasemigration/migration.py +52 -3
- pulumi_oci/databasemigration/outputs.py +73 -0
- pulumi_oci/dataflow/_inputs.py +20 -0
- pulumi_oci/dataflow/outputs.py +36 -0
- pulumi_oci/fleetappsmanagement/__init__.py +48 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
- pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
- pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
- pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
- pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
- pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
- pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
- pulumi_oci/fleetappsmanagement/get_property.py +1 -1
- pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
- pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
- pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
- pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
- pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
- pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
- pulumi_oci/fleetappsmanagement/patch.py +980 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
- pulumi_oci/fleetappsmanagement/property.py +28 -27
- pulumi_oci/fleetappsmanagement/provision.py +1195 -0
- pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
- pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
- pulumi_oci/fleetappsmanagement/task_record.py +786 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
- pulumi_oci/goldengate/_inputs.py +449 -3
- pulumi_oci/goldengate/connection.py +200 -56
- pulumi_oci/goldengate/get_connection.py +59 -28
- pulumi_oci/goldengate/get_connections.py +0 -3
- pulumi_oci/goldengate/outputs.py +886 -22
- pulumi_oci/loadbalancer/_inputs.py +24 -6
- pulumi_oci/loadbalancer/backend.py +35 -7
- pulumi_oci/loadbalancer/backend_set.py +35 -7
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/loadbalancer/load_balancer.py +81 -0
- pulumi_oci/loadbalancer/outputs.py +29 -10
- pulumi_oci/loganalytics/__init__.py +3 -0
- pulumi_oci/loganalytics/_inputs.py +123 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
- pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
- pulumi_oci/loganalytics/outputs.py +258 -0
- pulumi_oci/mysql/_inputs.py +274 -0
- pulumi_oci/mysql/get_mysql_backup.py +29 -1
- pulumi_oci/mysql/get_mysql_backups.py +23 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/get_replica.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +98 -2
- pulumi_oci/mysql/mysql_db_system.py +57 -0
- pulumi_oci/mysql/outputs.py +594 -0
- pulumi_oci/mysql/replica.py +28 -0
- pulumi_oci/nosql/__init__.py +2 -0
- pulumi_oci/nosql/_inputs.py +129 -3
- pulumi_oci/nosql/configuration.py +383 -0
- pulumi_oci/nosql/get_configuration.py +162 -0
- pulumi_oci/nosql/index.py +7 -7
- pulumi_oci/nosql/outputs.py +164 -2
- pulumi_oci/nosql/table_replica.py +9 -9
- pulumi_oci/oci/__init__.py +56 -0
- pulumi_oci/oci/_inputs.py +1615 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
- pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
- pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
- pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
- pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
- pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
- pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
- pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
- pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
- pulumi_oci/oci/outputs.py +5617 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +8 -0
- pulumi_oci/redis/_inputs.py +179 -0
- pulumi_oci/redis/get_oci_cache_user.py +283 -0
- pulumi_oci/redis/get_oci_cache_users.py +192 -0
- pulumi_oci/redis/oci_cache_user.py +695 -0
- pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
- pulumi_oci/redis/outputs.py +330 -0
- pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
- pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,189 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins
|
6
|
+
import copy
|
7
|
+
import warnings
|
8
|
+
import sys
|
9
|
+
import pulumi
|
10
|
+
import pulumi.runtime
|
11
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
12
|
+
if sys.version_info >= (3, 11):
|
13
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
14
|
+
else:
|
15
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
|
+
from .. import _utilities
|
17
|
+
from . import outputs
|
18
|
+
from ._inputs import *
|
19
|
+
|
20
|
+
__all__ = [
|
21
|
+
'GetWlmsManagedInstanceScanResultsResult',
|
22
|
+
'AwaitableGetWlmsManagedInstanceScanResultsResult',
|
23
|
+
'get_wlms_managed_instance_scan_results',
|
24
|
+
'get_wlms_managed_instance_scan_results_output',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class GetWlmsManagedInstanceScanResultsResult:
|
29
|
+
"""
|
30
|
+
A collection of values returned by getWlmsManagedInstanceScanResults.
|
31
|
+
"""
|
32
|
+
def __init__(__self__, filters=None, id=None, managed_instance_id=None, scan_result_collections=None, server_name=None, wls_domain_id=None):
|
33
|
+
if filters and not isinstance(filters, list):
|
34
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
35
|
+
pulumi.set(__self__, "filters", filters)
|
36
|
+
if id and not isinstance(id, str):
|
37
|
+
raise TypeError("Expected argument 'id' to be a str")
|
38
|
+
pulumi.set(__self__, "id", id)
|
39
|
+
if managed_instance_id and not isinstance(managed_instance_id, str):
|
40
|
+
raise TypeError("Expected argument 'managed_instance_id' to be a str")
|
41
|
+
pulumi.set(__self__, "managed_instance_id", managed_instance_id)
|
42
|
+
if scan_result_collections and not isinstance(scan_result_collections, list):
|
43
|
+
raise TypeError("Expected argument 'scan_result_collections' to be a list")
|
44
|
+
pulumi.set(__self__, "scan_result_collections", scan_result_collections)
|
45
|
+
if server_name and not isinstance(server_name, str):
|
46
|
+
raise TypeError("Expected argument 'server_name' to be a str")
|
47
|
+
pulumi.set(__self__, "server_name", server_name)
|
48
|
+
if wls_domain_id and not isinstance(wls_domain_id, str):
|
49
|
+
raise TypeError("Expected argument 'wls_domain_id' to be a str")
|
50
|
+
pulumi.set(__self__, "wls_domain_id", wls_domain_id)
|
51
|
+
|
52
|
+
@property
|
53
|
+
@pulumi.getter
|
54
|
+
def filters(self) -> Optional[Sequence['outputs.GetWlmsManagedInstanceScanResultsFilterResult']]:
|
55
|
+
return pulumi.get(self, "filters")
|
56
|
+
|
57
|
+
@property
|
58
|
+
@pulumi.getter
|
59
|
+
def id(self) -> builtins.str:
|
60
|
+
"""
|
61
|
+
The provider-assigned unique ID for this managed resource.
|
62
|
+
"""
|
63
|
+
return pulumi.get(self, "id")
|
64
|
+
|
65
|
+
@property
|
66
|
+
@pulumi.getter(name="managedInstanceId")
|
67
|
+
def managed_instance_id(self) -> builtins.str:
|
68
|
+
return pulumi.get(self, "managed_instance_id")
|
69
|
+
|
70
|
+
@property
|
71
|
+
@pulumi.getter(name="scanResultCollections")
|
72
|
+
def scan_result_collections(self) -> Sequence['outputs.GetWlmsManagedInstanceScanResultsScanResultCollectionResult']:
|
73
|
+
"""
|
74
|
+
The list of scan_result_collection.
|
75
|
+
"""
|
76
|
+
return pulumi.get(self, "scan_result_collections")
|
77
|
+
|
78
|
+
@property
|
79
|
+
@pulumi.getter(name="serverName")
|
80
|
+
def server_name(self) -> Optional[builtins.str]:
|
81
|
+
"""
|
82
|
+
The name of the WebLogic server to which the server check belongs.
|
83
|
+
"""
|
84
|
+
return pulumi.get(self, "server_name")
|
85
|
+
|
86
|
+
@property
|
87
|
+
@pulumi.getter(name="wlsDomainId")
|
88
|
+
def wls_domain_id(self) -> Optional[builtins.str]:
|
89
|
+
"""
|
90
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain.
|
91
|
+
"""
|
92
|
+
return pulumi.get(self, "wls_domain_id")
|
93
|
+
|
94
|
+
|
95
|
+
class AwaitableGetWlmsManagedInstanceScanResultsResult(GetWlmsManagedInstanceScanResultsResult):
|
96
|
+
# pylint: disable=using-constant-test
|
97
|
+
def __await__(self):
|
98
|
+
if False:
|
99
|
+
yield self
|
100
|
+
return GetWlmsManagedInstanceScanResultsResult(
|
101
|
+
filters=self.filters,
|
102
|
+
id=self.id,
|
103
|
+
managed_instance_id=self.managed_instance_id,
|
104
|
+
scan_result_collections=self.scan_result_collections,
|
105
|
+
server_name=self.server_name,
|
106
|
+
wls_domain_id=self.wls_domain_id)
|
107
|
+
|
108
|
+
|
109
|
+
def get_wlms_managed_instance_scan_results(filters: Optional[Sequence[Union['GetWlmsManagedInstanceScanResultsFilterArgs', 'GetWlmsManagedInstanceScanResultsFilterArgsDict']]] = None,
|
110
|
+
managed_instance_id: Optional[builtins.str] = None,
|
111
|
+
server_name: Optional[builtins.str] = None,
|
112
|
+
wls_domain_id: Optional[builtins.str] = None,
|
113
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetWlmsManagedInstanceScanResultsResult:
|
114
|
+
"""
|
115
|
+
This data source provides the list of Managed Instance Scan Results in Oracle Cloud Infrastructure Wlms service.
|
116
|
+
|
117
|
+
Gets all the scan results for all WebLogic servers in the managed instance.
|
118
|
+
|
119
|
+
## Example Usage
|
120
|
+
|
121
|
+
```python
|
122
|
+
import pulumi
|
123
|
+
import pulumi_oci as oci
|
124
|
+
|
125
|
+
test_managed_instance_scan_results = oci.oci.get_wlms_managed_instance_scan_results(managed_instance_id=test_managed_instance["id"],
|
126
|
+
server_name=managed_instance_scan_result_server_name,
|
127
|
+
wls_domain_id=test_wls_domain["id"])
|
128
|
+
```
|
129
|
+
|
130
|
+
|
131
|
+
:param builtins.str managed_instance_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance.
|
132
|
+
:param builtins.str server_name: The name of the server.
|
133
|
+
:param builtins.str wls_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain.
|
134
|
+
"""
|
135
|
+
__args__ = dict()
|
136
|
+
__args__['filters'] = filters
|
137
|
+
__args__['managedInstanceId'] = managed_instance_id
|
138
|
+
__args__['serverName'] = server_name
|
139
|
+
__args__['wlsDomainId'] = wls_domain_id
|
140
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
141
|
+
__ret__ = pulumi.runtime.invoke('oci:oci/getWlmsManagedInstanceScanResults:getWlmsManagedInstanceScanResults', __args__, opts=opts, typ=GetWlmsManagedInstanceScanResultsResult).value
|
142
|
+
|
143
|
+
return AwaitableGetWlmsManagedInstanceScanResultsResult(
|
144
|
+
filters=pulumi.get(__ret__, 'filters'),
|
145
|
+
id=pulumi.get(__ret__, 'id'),
|
146
|
+
managed_instance_id=pulumi.get(__ret__, 'managed_instance_id'),
|
147
|
+
scan_result_collections=pulumi.get(__ret__, 'scan_result_collections'),
|
148
|
+
server_name=pulumi.get(__ret__, 'server_name'),
|
149
|
+
wls_domain_id=pulumi.get(__ret__, 'wls_domain_id'))
|
150
|
+
def get_wlms_managed_instance_scan_results_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetWlmsManagedInstanceScanResultsFilterArgs', 'GetWlmsManagedInstanceScanResultsFilterArgsDict']]]]] = None,
|
151
|
+
managed_instance_id: Optional[pulumi.Input[builtins.str]] = None,
|
152
|
+
server_name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
153
|
+
wls_domain_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
154
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetWlmsManagedInstanceScanResultsResult]:
|
155
|
+
"""
|
156
|
+
This data source provides the list of Managed Instance Scan Results in Oracle Cloud Infrastructure Wlms service.
|
157
|
+
|
158
|
+
Gets all the scan results for all WebLogic servers in the managed instance.
|
159
|
+
|
160
|
+
## Example Usage
|
161
|
+
|
162
|
+
```python
|
163
|
+
import pulumi
|
164
|
+
import pulumi_oci as oci
|
165
|
+
|
166
|
+
test_managed_instance_scan_results = oci.oci.get_wlms_managed_instance_scan_results(managed_instance_id=test_managed_instance["id"],
|
167
|
+
server_name=managed_instance_scan_result_server_name,
|
168
|
+
wls_domain_id=test_wls_domain["id"])
|
169
|
+
```
|
170
|
+
|
171
|
+
|
172
|
+
:param builtins.str managed_instance_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance.
|
173
|
+
:param builtins.str server_name: The name of the server.
|
174
|
+
:param builtins.str wls_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain.
|
175
|
+
"""
|
176
|
+
__args__ = dict()
|
177
|
+
__args__['filters'] = filters
|
178
|
+
__args__['managedInstanceId'] = managed_instance_id
|
179
|
+
__args__['serverName'] = server_name
|
180
|
+
__args__['wlsDomainId'] = wls_domain_id
|
181
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
182
|
+
__ret__ = pulumi.runtime.invoke_output('oci:oci/getWlmsManagedInstanceScanResults:getWlmsManagedInstanceScanResults', __args__, opts=opts, typ=GetWlmsManagedInstanceScanResultsResult)
|
183
|
+
return __ret__.apply(lambda __response__: GetWlmsManagedInstanceScanResultsResult(
|
184
|
+
filters=pulumi.get(__response__, 'filters'),
|
185
|
+
id=pulumi.get(__response__, 'id'),
|
186
|
+
managed_instance_id=pulumi.get(__response__, 'managed_instance_id'),
|
187
|
+
scan_result_collections=pulumi.get(__response__, 'scan_result_collections'),
|
188
|
+
server_name=pulumi.get(__response__, 'server_name'),
|
189
|
+
wls_domain_id=pulumi.get(__response__, 'wls_domain_id')))
|
@@ -0,0 +1,378 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins
|
6
|
+
import copy
|
7
|
+
import warnings
|
8
|
+
import sys
|
9
|
+
import pulumi
|
10
|
+
import pulumi.runtime
|
11
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
12
|
+
if sys.version_info >= (3, 11):
|
13
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
14
|
+
else:
|
15
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
|
+
from .. import _utilities
|
17
|
+
|
18
|
+
__all__ = [
|
19
|
+
'GetWlmsManagedInstanceServerResult',
|
20
|
+
'AwaitableGetWlmsManagedInstanceServerResult',
|
21
|
+
'get_wlms_managed_instance_server',
|
22
|
+
'get_wlms_managed_instance_server_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetWlmsManagedInstanceServerResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getWlmsManagedInstanceServer.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, host_name=None, id=None, is_admin=None, jdk_path=None, jdk_version=None, latest_patches_status=None, managed_instance_id=None, middleware_path=None, middleware_type=None, name=None, patch_readiness_status=None, restart_order=None, server_id=None, status=None, time_created=None, time_updated=None, weblogic_version=None, wls_domain_id=None, wls_domain_name=None, wls_domain_path=None):
|
31
|
+
if host_name and not isinstance(host_name, str):
|
32
|
+
raise TypeError("Expected argument 'host_name' to be a str")
|
33
|
+
pulumi.set(__self__, "host_name", host_name)
|
34
|
+
if id and not isinstance(id, str):
|
35
|
+
raise TypeError("Expected argument 'id' to be a str")
|
36
|
+
pulumi.set(__self__, "id", id)
|
37
|
+
if is_admin and not isinstance(is_admin, bool):
|
38
|
+
raise TypeError("Expected argument 'is_admin' to be a bool")
|
39
|
+
pulumi.set(__self__, "is_admin", is_admin)
|
40
|
+
if jdk_path and not isinstance(jdk_path, str):
|
41
|
+
raise TypeError("Expected argument 'jdk_path' to be a str")
|
42
|
+
pulumi.set(__self__, "jdk_path", jdk_path)
|
43
|
+
if jdk_version and not isinstance(jdk_version, str):
|
44
|
+
raise TypeError("Expected argument 'jdk_version' to be a str")
|
45
|
+
pulumi.set(__self__, "jdk_version", jdk_version)
|
46
|
+
if latest_patches_status and not isinstance(latest_patches_status, str):
|
47
|
+
raise TypeError("Expected argument 'latest_patches_status' to be a str")
|
48
|
+
pulumi.set(__self__, "latest_patches_status", latest_patches_status)
|
49
|
+
if managed_instance_id and not isinstance(managed_instance_id, str):
|
50
|
+
raise TypeError("Expected argument 'managed_instance_id' to be a str")
|
51
|
+
pulumi.set(__self__, "managed_instance_id", managed_instance_id)
|
52
|
+
if middleware_path and not isinstance(middleware_path, str):
|
53
|
+
raise TypeError("Expected argument 'middleware_path' to be a str")
|
54
|
+
pulumi.set(__self__, "middleware_path", middleware_path)
|
55
|
+
if middleware_type and not isinstance(middleware_type, str):
|
56
|
+
raise TypeError("Expected argument 'middleware_type' to be a str")
|
57
|
+
pulumi.set(__self__, "middleware_type", middleware_type)
|
58
|
+
if name and not isinstance(name, str):
|
59
|
+
raise TypeError("Expected argument 'name' to be a str")
|
60
|
+
pulumi.set(__self__, "name", name)
|
61
|
+
if patch_readiness_status and not isinstance(patch_readiness_status, str):
|
62
|
+
raise TypeError("Expected argument 'patch_readiness_status' to be a str")
|
63
|
+
pulumi.set(__self__, "patch_readiness_status", patch_readiness_status)
|
64
|
+
if restart_order and not isinstance(restart_order, int):
|
65
|
+
raise TypeError("Expected argument 'restart_order' to be a int")
|
66
|
+
pulumi.set(__self__, "restart_order", restart_order)
|
67
|
+
if server_id and not isinstance(server_id, str):
|
68
|
+
raise TypeError("Expected argument 'server_id' to be a str")
|
69
|
+
pulumi.set(__self__, "server_id", server_id)
|
70
|
+
if status and not isinstance(status, str):
|
71
|
+
raise TypeError("Expected argument 'status' to be a str")
|
72
|
+
pulumi.set(__self__, "status", status)
|
73
|
+
if time_created and not isinstance(time_created, str):
|
74
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
75
|
+
pulumi.set(__self__, "time_created", time_created)
|
76
|
+
if time_updated and not isinstance(time_updated, str):
|
77
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
78
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
79
|
+
if weblogic_version and not isinstance(weblogic_version, str):
|
80
|
+
raise TypeError("Expected argument 'weblogic_version' to be a str")
|
81
|
+
pulumi.set(__self__, "weblogic_version", weblogic_version)
|
82
|
+
if wls_domain_id and not isinstance(wls_domain_id, str):
|
83
|
+
raise TypeError("Expected argument 'wls_domain_id' to be a str")
|
84
|
+
pulumi.set(__self__, "wls_domain_id", wls_domain_id)
|
85
|
+
if wls_domain_name and not isinstance(wls_domain_name, str):
|
86
|
+
raise TypeError("Expected argument 'wls_domain_name' to be a str")
|
87
|
+
pulumi.set(__self__, "wls_domain_name", wls_domain_name)
|
88
|
+
if wls_domain_path and not isinstance(wls_domain_path, str):
|
89
|
+
raise TypeError("Expected argument 'wls_domain_path' to be a str")
|
90
|
+
pulumi.set(__self__, "wls_domain_path", wls_domain_path)
|
91
|
+
|
92
|
+
@property
|
93
|
+
@pulumi.getter(name="hostName")
|
94
|
+
def host_name(self) -> builtins.str:
|
95
|
+
"""
|
96
|
+
The name of the server.
|
97
|
+
"""
|
98
|
+
return pulumi.get(self, "host_name")
|
99
|
+
|
100
|
+
@property
|
101
|
+
@pulumi.getter
|
102
|
+
def id(self) -> builtins.str:
|
103
|
+
"""
|
104
|
+
The provider-assigned unique ID for this managed resource.
|
105
|
+
"""
|
106
|
+
return pulumi.get(self, "id")
|
107
|
+
|
108
|
+
@property
|
109
|
+
@pulumi.getter(name="isAdmin")
|
110
|
+
def is_admin(self) -> builtins.bool:
|
111
|
+
"""
|
112
|
+
Whether or not the server is an admin node.
|
113
|
+
"""
|
114
|
+
return pulumi.get(self, "is_admin")
|
115
|
+
|
116
|
+
@property
|
117
|
+
@pulumi.getter(name="jdkPath")
|
118
|
+
def jdk_path(self) -> builtins.str:
|
119
|
+
"""
|
120
|
+
The JDK path on the server.
|
121
|
+
"""
|
122
|
+
return pulumi.get(self, "jdk_path")
|
123
|
+
|
124
|
+
@property
|
125
|
+
@pulumi.getter(name="jdkVersion")
|
126
|
+
def jdk_version(self) -> builtins.str:
|
127
|
+
"""
|
128
|
+
The JDK version on the server.
|
129
|
+
"""
|
130
|
+
return pulumi.get(self, "jdk_version")
|
131
|
+
|
132
|
+
@property
|
133
|
+
@pulumi.getter(name="latestPatchesStatus")
|
134
|
+
def latest_patches_status(self) -> builtins.str:
|
135
|
+
"""
|
136
|
+
Whether or not the server has installed the latest patches.
|
137
|
+
"""
|
138
|
+
return pulumi.get(self, "latest_patches_status")
|
139
|
+
|
140
|
+
@property
|
141
|
+
@pulumi.getter(name="managedInstanceId")
|
142
|
+
def managed_instance_id(self) -> builtins.str:
|
143
|
+
"""
|
144
|
+
The managed instance ID of the server.
|
145
|
+
"""
|
146
|
+
return pulumi.get(self, "managed_instance_id")
|
147
|
+
|
148
|
+
@property
|
149
|
+
@pulumi.getter(name="middlewarePath")
|
150
|
+
def middleware_path(self) -> builtins.str:
|
151
|
+
"""
|
152
|
+
The middleware path on the server.
|
153
|
+
"""
|
154
|
+
return pulumi.get(self, "middleware_path")
|
155
|
+
|
156
|
+
@property
|
157
|
+
@pulumi.getter(name="middlewareType")
|
158
|
+
def middleware_type(self) -> builtins.str:
|
159
|
+
"""
|
160
|
+
The middleware type on the server.
|
161
|
+
"""
|
162
|
+
return pulumi.get(self, "middleware_type")
|
163
|
+
|
164
|
+
@property
|
165
|
+
@pulumi.getter
|
166
|
+
def name(self) -> builtins.str:
|
167
|
+
"""
|
168
|
+
The name of the server.
|
169
|
+
"""
|
170
|
+
return pulumi.get(self, "name")
|
171
|
+
|
172
|
+
@property
|
173
|
+
@pulumi.getter(name="patchReadinessStatus")
|
174
|
+
def patch_readiness_status(self) -> builtins.str:
|
175
|
+
"""
|
176
|
+
The patch readiness status of the server.
|
177
|
+
"""
|
178
|
+
return pulumi.get(self, "patch_readiness_status")
|
179
|
+
|
180
|
+
@property
|
181
|
+
@pulumi.getter(name="restartOrder")
|
182
|
+
def restart_order(self) -> builtins.int:
|
183
|
+
"""
|
184
|
+
The restart order assigned to the server.
|
185
|
+
"""
|
186
|
+
return pulumi.get(self, "restart_order")
|
187
|
+
|
188
|
+
@property
|
189
|
+
@pulumi.getter(name="serverId")
|
190
|
+
def server_id(self) -> builtins.str:
|
191
|
+
return pulumi.get(self, "server_id")
|
192
|
+
|
193
|
+
@property
|
194
|
+
@pulumi.getter
|
195
|
+
def status(self) -> builtins.str:
|
196
|
+
"""
|
197
|
+
The status of the server.
|
198
|
+
"""
|
199
|
+
return pulumi.get(self, "status")
|
200
|
+
|
201
|
+
@property
|
202
|
+
@pulumi.getter(name="timeCreated")
|
203
|
+
def time_created(self) -> builtins.str:
|
204
|
+
"""
|
205
|
+
The date and time the server was first reported (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format). Example: `2016-08-25T21:10:29.600Z`
|
206
|
+
"""
|
207
|
+
return pulumi.get(self, "time_created")
|
208
|
+
|
209
|
+
@property
|
210
|
+
@pulumi.getter(name="timeUpdated")
|
211
|
+
def time_updated(self) -> builtins.str:
|
212
|
+
"""
|
213
|
+
The date and time the server was last reported (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format). Example: `2016-08-25T21:10:29.600Z`
|
214
|
+
"""
|
215
|
+
return pulumi.get(self, "time_updated")
|
216
|
+
|
217
|
+
@property
|
218
|
+
@pulumi.getter(name="weblogicVersion")
|
219
|
+
def weblogic_version(self) -> builtins.str:
|
220
|
+
"""
|
221
|
+
The version of the WebLogic domain of the server
|
222
|
+
"""
|
223
|
+
return pulumi.get(self, "weblogic_version")
|
224
|
+
|
225
|
+
@property
|
226
|
+
@pulumi.getter(name="wlsDomainId")
|
227
|
+
def wls_domain_id(self) -> builtins.str:
|
228
|
+
"""
|
229
|
+
The ID of the WebLogic domain to which the server belongs.
|
230
|
+
"""
|
231
|
+
return pulumi.get(self, "wls_domain_id")
|
232
|
+
|
233
|
+
@property
|
234
|
+
@pulumi.getter(name="wlsDomainName")
|
235
|
+
def wls_domain_name(self) -> builtins.str:
|
236
|
+
"""
|
237
|
+
The name of the WebLogic domain to which the server belongs.
|
238
|
+
"""
|
239
|
+
return pulumi.get(self, "wls_domain_name")
|
240
|
+
|
241
|
+
@property
|
242
|
+
@pulumi.getter(name="wlsDomainPath")
|
243
|
+
def wls_domain_path(self) -> builtins.str:
|
244
|
+
"""
|
245
|
+
The path of the WebLogic domain to which the server belongs.
|
246
|
+
"""
|
247
|
+
return pulumi.get(self, "wls_domain_path")
|
248
|
+
|
249
|
+
|
250
|
+
class AwaitableGetWlmsManagedInstanceServerResult(GetWlmsManagedInstanceServerResult):
|
251
|
+
# pylint: disable=using-constant-test
|
252
|
+
def __await__(self):
|
253
|
+
if False:
|
254
|
+
yield self
|
255
|
+
return GetWlmsManagedInstanceServerResult(
|
256
|
+
host_name=self.host_name,
|
257
|
+
id=self.id,
|
258
|
+
is_admin=self.is_admin,
|
259
|
+
jdk_path=self.jdk_path,
|
260
|
+
jdk_version=self.jdk_version,
|
261
|
+
latest_patches_status=self.latest_patches_status,
|
262
|
+
managed_instance_id=self.managed_instance_id,
|
263
|
+
middleware_path=self.middleware_path,
|
264
|
+
middleware_type=self.middleware_type,
|
265
|
+
name=self.name,
|
266
|
+
patch_readiness_status=self.patch_readiness_status,
|
267
|
+
restart_order=self.restart_order,
|
268
|
+
server_id=self.server_id,
|
269
|
+
status=self.status,
|
270
|
+
time_created=self.time_created,
|
271
|
+
time_updated=self.time_updated,
|
272
|
+
weblogic_version=self.weblogic_version,
|
273
|
+
wls_domain_id=self.wls_domain_id,
|
274
|
+
wls_domain_name=self.wls_domain_name,
|
275
|
+
wls_domain_path=self.wls_domain_path)
|
276
|
+
|
277
|
+
|
278
|
+
def get_wlms_managed_instance_server(managed_instance_id: Optional[builtins.str] = None,
|
279
|
+
server_id: Optional[builtins.str] = None,
|
280
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetWlmsManagedInstanceServerResult:
|
281
|
+
"""
|
282
|
+
This data source provides details about a specific Managed Instance Server resource in Oracle Cloud Infrastructure Wlms service.
|
283
|
+
|
284
|
+
Gets information about the specified server in a managed instance.
|
285
|
+
|
286
|
+
## Example Usage
|
287
|
+
|
288
|
+
```python
|
289
|
+
import pulumi
|
290
|
+
import pulumi_oci as oci
|
291
|
+
|
292
|
+
test_managed_instance_server = oci.oci.get_wlms_managed_instance_server(managed_instance_id=test_managed_instance["id"],
|
293
|
+
server_id=test_server["id"])
|
294
|
+
```
|
295
|
+
|
296
|
+
|
297
|
+
:param builtins.str managed_instance_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance.
|
298
|
+
:param builtins.str server_id: The unique identifier of a server.
|
299
|
+
|
300
|
+
**Note:** Not an [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
301
|
+
"""
|
302
|
+
__args__ = dict()
|
303
|
+
__args__['managedInstanceId'] = managed_instance_id
|
304
|
+
__args__['serverId'] = server_id
|
305
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
306
|
+
__ret__ = pulumi.runtime.invoke('oci:oci/getWlmsManagedInstanceServer:getWlmsManagedInstanceServer', __args__, opts=opts, typ=GetWlmsManagedInstanceServerResult).value
|
307
|
+
|
308
|
+
return AwaitableGetWlmsManagedInstanceServerResult(
|
309
|
+
host_name=pulumi.get(__ret__, 'host_name'),
|
310
|
+
id=pulumi.get(__ret__, 'id'),
|
311
|
+
is_admin=pulumi.get(__ret__, 'is_admin'),
|
312
|
+
jdk_path=pulumi.get(__ret__, 'jdk_path'),
|
313
|
+
jdk_version=pulumi.get(__ret__, 'jdk_version'),
|
314
|
+
latest_patches_status=pulumi.get(__ret__, 'latest_patches_status'),
|
315
|
+
managed_instance_id=pulumi.get(__ret__, 'managed_instance_id'),
|
316
|
+
middleware_path=pulumi.get(__ret__, 'middleware_path'),
|
317
|
+
middleware_type=pulumi.get(__ret__, 'middleware_type'),
|
318
|
+
name=pulumi.get(__ret__, 'name'),
|
319
|
+
patch_readiness_status=pulumi.get(__ret__, 'patch_readiness_status'),
|
320
|
+
restart_order=pulumi.get(__ret__, 'restart_order'),
|
321
|
+
server_id=pulumi.get(__ret__, 'server_id'),
|
322
|
+
status=pulumi.get(__ret__, 'status'),
|
323
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
324
|
+
time_updated=pulumi.get(__ret__, 'time_updated'),
|
325
|
+
weblogic_version=pulumi.get(__ret__, 'weblogic_version'),
|
326
|
+
wls_domain_id=pulumi.get(__ret__, 'wls_domain_id'),
|
327
|
+
wls_domain_name=pulumi.get(__ret__, 'wls_domain_name'),
|
328
|
+
wls_domain_path=pulumi.get(__ret__, 'wls_domain_path'))
|
329
|
+
def get_wlms_managed_instance_server_output(managed_instance_id: Optional[pulumi.Input[builtins.str]] = None,
|
330
|
+
server_id: Optional[pulumi.Input[builtins.str]] = None,
|
331
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetWlmsManagedInstanceServerResult]:
|
332
|
+
"""
|
333
|
+
This data source provides details about a specific Managed Instance Server resource in Oracle Cloud Infrastructure Wlms service.
|
334
|
+
|
335
|
+
Gets information about the specified server in a managed instance.
|
336
|
+
|
337
|
+
## Example Usage
|
338
|
+
|
339
|
+
```python
|
340
|
+
import pulumi
|
341
|
+
import pulumi_oci as oci
|
342
|
+
|
343
|
+
test_managed_instance_server = oci.oci.get_wlms_managed_instance_server(managed_instance_id=test_managed_instance["id"],
|
344
|
+
server_id=test_server["id"])
|
345
|
+
```
|
346
|
+
|
347
|
+
|
348
|
+
:param builtins.str managed_instance_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance.
|
349
|
+
:param builtins.str server_id: The unique identifier of a server.
|
350
|
+
|
351
|
+
**Note:** Not an [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
352
|
+
"""
|
353
|
+
__args__ = dict()
|
354
|
+
__args__['managedInstanceId'] = managed_instance_id
|
355
|
+
__args__['serverId'] = server_id
|
356
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
357
|
+
__ret__ = pulumi.runtime.invoke_output('oci:oci/getWlmsManagedInstanceServer:getWlmsManagedInstanceServer', __args__, opts=opts, typ=GetWlmsManagedInstanceServerResult)
|
358
|
+
return __ret__.apply(lambda __response__: GetWlmsManagedInstanceServerResult(
|
359
|
+
host_name=pulumi.get(__response__, 'host_name'),
|
360
|
+
id=pulumi.get(__response__, 'id'),
|
361
|
+
is_admin=pulumi.get(__response__, 'is_admin'),
|
362
|
+
jdk_path=pulumi.get(__response__, 'jdk_path'),
|
363
|
+
jdk_version=pulumi.get(__response__, 'jdk_version'),
|
364
|
+
latest_patches_status=pulumi.get(__response__, 'latest_patches_status'),
|
365
|
+
managed_instance_id=pulumi.get(__response__, 'managed_instance_id'),
|
366
|
+
middleware_path=pulumi.get(__response__, 'middleware_path'),
|
367
|
+
middleware_type=pulumi.get(__response__, 'middleware_type'),
|
368
|
+
name=pulumi.get(__response__, 'name'),
|
369
|
+
patch_readiness_status=pulumi.get(__response__, 'patch_readiness_status'),
|
370
|
+
restart_order=pulumi.get(__response__, 'restart_order'),
|
371
|
+
server_id=pulumi.get(__response__, 'server_id'),
|
372
|
+
status=pulumi.get(__response__, 'status'),
|
373
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
374
|
+
time_updated=pulumi.get(__response__, 'time_updated'),
|
375
|
+
weblogic_version=pulumi.get(__response__, 'weblogic_version'),
|
376
|
+
wls_domain_id=pulumi.get(__response__, 'wls_domain_id'),
|
377
|
+
wls_domain_name=pulumi.get(__response__, 'wls_domain_name'),
|
378
|
+
wls_domain_path=pulumi.get(__response__, 'wls_domain_path')))
|