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,168 @@
|
|
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
|
+
'GetWlmsWlsDomainServerInstalledPatchesResult',
|
22
|
+
'AwaitableGetWlmsWlsDomainServerInstalledPatchesResult',
|
23
|
+
'get_wlms_wls_domain_server_installed_patches',
|
24
|
+
'get_wlms_wls_domain_server_installed_patches_output',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class GetWlmsWlsDomainServerInstalledPatchesResult:
|
29
|
+
"""
|
30
|
+
A collection of values returned by getWlmsWlsDomainServerInstalledPatches.
|
31
|
+
"""
|
32
|
+
def __init__(__self__, filters=None, id=None, installed_patch_collections=None, server_id=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 installed_patch_collections and not isinstance(installed_patch_collections, list):
|
40
|
+
raise TypeError("Expected argument 'installed_patch_collections' to be a list")
|
41
|
+
pulumi.set(__self__, "installed_patch_collections", installed_patch_collections)
|
42
|
+
if server_id and not isinstance(server_id, str):
|
43
|
+
raise TypeError("Expected argument 'server_id' to be a str")
|
44
|
+
pulumi.set(__self__, "server_id", server_id)
|
45
|
+
if wls_domain_id and not isinstance(wls_domain_id, str):
|
46
|
+
raise TypeError("Expected argument 'wls_domain_id' to be a str")
|
47
|
+
pulumi.set(__self__, "wls_domain_id", wls_domain_id)
|
48
|
+
|
49
|
+
@property
|
50
|
+
@pulumi.getter
|
51
|
+
def filters(self) -> Optional[Sequence['outputs.GetWlmsWlsDomainServerInstalledPatchesFilterResult']]:
|
52
|
+
return pulumi.get(self, "filters")
|
53
|
+
|
54
|
+
@property
|
55
|
+
@pulumi.getter
|
56
|
+
def id(self) -> builtins.str:
|
57
|
+
"""
|
58
|
+
The provider-assigned unique ID for this managed resource.
|
59
|
+
"""
|
60
|
+
return pulumi.get(self, "id")
|
61
|
+
|
62
|
+
@property
|
63
|
+
@pulumi.getter(name="installedPatchCollections")
|
64
|
+
def installed_patch_collections(self) -> Sequence['outputs.GetWlmsWlsDomainServerInstalledPatchesInstalledPatchCollectionResult']:
|
65
|
+
"""
|
66
|
+
The list of installed_patch_collection.
|
67
|
+
"""
|
68
|
+
return pulumi.get(self, "installed_patch_collections")
|
69
|
+
|
70
|
+
@property
|
71
|
+
@pulumi.getter(name="serverId")
|
72
|
+
def server_id(self) -> builtins.str:
|
73
|
+
return pulumi.get(self, "server_id")
|
74
|
+
|
75
|
+
@property
|
76
|
+
@pulumi.getter(name="wlsDomainId")
|
77
|
+
def wls_domain_id(self) -> builtins.str:
|
78
|
+
return pulumi.get(self, "wls_domain_id")
|
79
|
+
|
80
|
+
|
81
|
+
class AwaitableGetWlmsWlsDomainServerInstalledPatchesResult(GetWlmsWlsDomainServerInstalledPatchesResult):
|
82
|
+
# pylint: disable=using-constant-test
|
83
|
+
def __await__(self):
|
84
|
+
if False:
|
85
|
+
yield self
|
86
|
+
return GetWlmsWlsDomainServerInstalledPatchesResult(
|
87
|
+
filters=self.filters,
|
88
|
+
id=self.id,
|
89
|
+
installed_patch_collections=self.installed_patch_collections,
|
90
|
+
server_id=self.server_id,
|
91
|
+
wls_domain_id=self.wls_domain_id)
|
92
|
+
|
93
|
+
|
94
|
+
def get_wlms_wls_domain_server_installed_patches(filters: Optional[Sequence[Union['GetWlmsWlsDomainServerInstalledPatchesFilterArgs', 'GetWlmsWlsDomainServerInstalledPatchesFilterArgsDict']]] = None,
|
95
|
+
server_id: Optional[builtins.str] = None,
|
96
|
+
wls_domain_id: Optional[builtins.str] = None,
|
97
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetWlmsWlsDomainServerInstalledPatchesResult:
|
98
|
+
"""
|
99
|
+
This data source provides the list of Wls Domain Server Installed Patches in Oracle Cloud Infrastructure Wlms service.
|
100
|
+
|
101
|
+
Gets a list of installed patches on a server for a domain.
|
102
|
+
|
103
|
+
## Example Usage
|
104
|
+
|
105
|
+
```python
|
106
|
+
import pulumi
|
107
|
+
import pulumi_oci as oci
|
108
|
+
|
109
|
+
test_wls_domain_server_installed_patches = oci.oci.get_wlms_wls_domain_server_installed_patches(server_id=test_server["id"],
|
110
|
+
wls_domain_id=test_wls_domain["id"])
|
111
|
+
```
|
112
|
+
|
113
|
+
|
114
|
+
:param builtins.str server_id: The unique identifier of a server.
|
115
|
+
|
116
|
+
**Note:** Not an [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
117
|
+
:param builtins.str wls_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain.
|
118
|
+
"""
|
119
|
+
__args__ = dict()
|
120
|
+
__args__['filters'] = filters
|
121
|
+
__args__['serverId'] = server_id
|
122
|
+
__args__['wlsDomainId'] = wls_domain_id
|
123
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
124
|
+
__ret__ = pulumi.runtime.invoke('oci:oci/getWlmsWlsDomainServerInstalledPatches:getWlmsWlsDomainServerInstalledPatches', __args__, opts=opts, typ=GetWlmsWlsDomainServerInstalledPatchesResult).value
|
125
|
+
|
126
|
+
return AwaitableGetWlmsWlsDomainServerInstalledPatchesResult(
|
127
|
+
filters=pulumi.get(__ret__, 'filters'),
|
128
|
+
id=pulumi.get(__ret__, 'id'),
|
129
|
+
installed_patch_collections=pulumi.get(__ret__, 'installed_patch_collections'),
|
130
|
+
server_id=pulumi.get(__ret__, 'server_id'),
|
131
|
+
wls_domain_id=pulumi.get(__ret__, 'wls_domain_id'))
|
132
|
+
def get_wlms_wls_domain_server_installed_patches_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetWlmsWlsDomainServerInstalledPatchesFilterArgs', 'GetWlmsWlsDomainServerInstalledPatchesFilterArgsDict']]]]] = None,
|
133
|
+
server_id: Optional[pulumi.Input[builtins.str]] = None,
|
134
|
+
wls_domain_id: Optional[pulumi.Input[builtins.str]] = None,
|
135
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetWlmsWlsDomainServerInstalledPatchesResult]:
|
136
|
+
"""
|
137
|
+
This data source provides the list of Wls Domain Server Installed Patches in Oracle Cloud Infrastructure Wlms service.
|
138
|
+
|
139
|
+
Gets a list of installed patches on a server for a domain.
|
140
|
+
|
141
|
+
## Example Usage
|
142
|
+
|
143
|
+
```python
|
144
|
+
import pulumi
|
145
|
+
import pulumi_oci as oci
|
146
|
+
|
147
|
+
test_wls_domain_server_installed_patches = oci.oci.get_wlms_wls_domain_server_installed_patches(server_id=test_server["id"],
|
148
|
+
wls_domain_id=test_wls_domain["id"])
|
149
|
+
```
|
150
|
+
|
151
|
+
|
152
|
+
:param builtins.str server_id: The unique identifier of a server.
|
153
|
+
|
154
|
+
**Note:** Not an [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
155
|
+
:param builtins.str wls_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain.
|
156
|
+
"""
|
157
|
+
__args__ = dict()
|
158
|
+
__args__['filters'] = filters
|
159
|
+
__args__['serverId'] = server_id
|
160
|
+
__args__['wlsDomainId'] = wls_domain_id
|
161
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
162
|
+
__ret__ = pulumi.runtime.invoke_output('oci:oci/getWlmsWlsDomainServerInstalledPatches:getWlmsWlsDomainServerInstalledPatches', __args__, opts=opts, typ=GetWlmsWlsDomainServerInstalledPatchesResult)
|
163
|
+
return __ret__.apply(lambda __response__: GetWlmsWlsDomainServerInstalledPatchesResult(
|
164
|
+
filters=pulumi.get(__response__, 'filters'),
|
165
|
+
id=pulumi.get(__response__, 'id'),
|
166
|
+
installed_patch_collections=pulumi.get(__response__, 'installed_patch_collections'),
|
167
|
+
server_id=pulumi.get(__response__, 'server_id'),
|
168
|
+
wls_domain_id=pulumi.get(__response__, 'wls_domain_id')))
|
@@ -0,0 +1,170 @@
|
|
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
|
+
'GetWlmsWlsDomainServersResult',
|
22
|
+
'AwaitableGetWlmsWlsDomainServersResult',
|
23
|
+
'get_wlms_wls_domain_servers',
|
24
|
+
'get_wlms_wls_domain_servers_output',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class GetWlmsWlsDomainServersResult:
|
29
|
+
"""
|
30
|
+
A collection of values returned by getWlmsWlsDomainServers.
|
31
|
+
"""
|
32
|
+
def __init__(__self__, filters=None, id=None, name=None, server_collections=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 name and not isinstance(name, str):
|
40
|
+
raise TypeError("Expected argument 'name' to be a str")
|
41
|
+
pulumi.set(__self__, "name", name)
|
42
|
+
if server_collections and not isinstance(server_collections, list):
|
43
|
+
raise TypeError("Expected argument 'server_collections' to be a list")
|
44
|
+
pulumi.set(__self__, "server_collections", server_collections)
|
45
|
+
if wls_domain_id and not isinstance(wls_domain_id, str):
|
46
|
+
raise TypeError("Expected argument 'wls_domain_id' to be a str")
|
47
|
+
pulumi.set(__self__, "wls_domain_id", wls_domain_id)
|
48
|
+
|
49
|
+
@property
|
50
|
+
@pulumi.getter
|
51
|
+
def filters(self) -> Optional[Sequence['outputs.GetWlmsWlsDomainServersFilterResult']]:
|
52
|
+
return pulumi.get(self, "filters")
|
53
|
+
|
54
|
+
@property
|
55
|
+
@pulumi.getter
|
56
|
+
def id(self) -> builtins.str:
|
57
|
+
"""
|
58
|
+
The provider-assigned unique ID for this managed resource.
|
59
|
+
"""
|
60
|
+
return pulumi.get(self, "id")
|
61
|
+
|
62
|
+
@property
|
63
|
+
@pulumi.getter
|
64
|
+
def name(self) -> Optional[builtins.str]:
|
65
|
+
"""
|
66
|
+
The name of the server.
|
67
|
+
"""
|
68
|
+
return pulumi.get(self, "name")
|
69
|
+
|
70
|
+
@property
|
71
|
+
@pulumi.getter(name="serverCollections")
|
72
|
+
def server_collections(self) -> Sequence['outputs.GetWlmsWlsDomainServersServerCollectionResult']:
|
73
|
+
"""
|
74
|
+
The list of server_collection.
|
75
|
+
"""
|
76
|
+
return pulumi.get(self, "server_collections")
|
77
|
+
|
78
|
+
@property
|
79
|
+
@pulumi.getter(name="wlsDomainId")
|
80
|
+
def wls_domain_id(self) -> builtins.str:
|
81
|
+
"""
|
82
|
+
The ID of the WebLogic domain to which the server belongs.
|
83
|
+
"""
|
84
|
+
return pulumi.get(self, "wls_domain_id")
|
85
|
+
|
86
|
+
|
87
|
+
class AwaitableGetWlmsWlsDomainServersResult(GetWlmsWlsDomainServersResult):
|
88
|
+
# pylint: disable=using-constant-test
|
89
|
+
def __await__(self):
|
90
|
+
if False:
|
91
|
+
yield self
|
92
|
+
return GetWlmsWlsDomainServersResult(
|
93
|
+
filters=self.filters,
|
94
|
+
id=self.id,
|
95
|
+
name=self.name,
|
96
|
+
server_collections=self.server_collections,
|
97
|
+
wls_domain_id=self.wls_domain_id)
|
98
|
+
|
99
|
+
|
100
|
+
def get_wlms_wls_domain_servers(filters: Optional[Sequence[Union['GetWlmsWlsDomainServersFilterArgs', 'GetWlmsWlsDomainServersFilterArgsDict']]] = None,
|
101
|
+
name: Optional[builtins.str] = None,
|
102
|
+
wls_domain_id: Optional[builtins.str] = None,
|
103
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetWlmsWlsDomainServersResult:
|
104
|
+
"""
|
105
|
+
This data source provides the list of Wls Domain Servers in Oracle Cloud Infrastructure Wlms service.
|
106
|
+
|
107
|
+
Gets list of servers in a specific WebLogic domain.
|
108
|
+
|
109
|
+
## Example Usage
|
110
|
+
|
111
|
+
```python
|
112
|
+
import pulumi
|
113
|
+
import pulumi_oci as oci
|
114
|
+
|
115
|
+
test_wls_domain_servers = oci.oci.get_wlms_wls_domain_servers(wls_domain_id=test_wls_domain["id"],
|
116
|
+
name=wls_domain_server_name)
|
117
|
+
```
|
118
|
+
|
119
|
+
|
120
|
+
:param builtins.str name: The name of the resource.
|
121
|
+
:param builtins.str wls_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain.
|
122
|
+
"""
|
123
|
+
__args__ = dict()
|
124
|
+
__args__['filters'] = filters
|
125
|
+
__args__['name'] = name
|
126
|
+
__args__['wlsDomainId'] = wls_domain_id
|
127
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
128
|
+
__ret__ = pulumi.runtime.invoke('oci:oci/getWlmsWlsDomainServers:getWlmsWlsDomainServers', __args__, opts=opts, typ=GetWlmsWlsDomainServersResult).value
|
129
|
+
|
130
|
+
return AwaitableGetWlmsWlsDomainServersResult(
|
131
|
+
filters=pulumi.get(__ret__, 'filters'),
|
132
|
+
id=pulumi.get(__ret__, 'id'),
|
133
|
+
name=pulumi.get(__ret__, 'name'),
|
134
|
+
server_collections=pulumi.get(__ret__, 'server_collections'),
|
135
|
+
wls_domain_id=pulumi.get(__ret__, 'wls_domain_id'))
|
136
|
+
def get_wlms_wls_domain_servers_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetWlmsWlsDomainServersFilterArgs', 'GetWlmsWlsDomainServersFilterArgsDict']]]]] = None,
|
137
|
+
name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
138
|
+
wls_domain_id: Optional[pulumi.Input[builtins.str]] = None,
|
139
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetWlmsWlsDomainServersResult]:
|
140
|
+
"""
|
141
|
+
This data source provides the list of Wls Domain Servers in Oracle Cloud Infrastructure Wlms service.
|
142
|
+
|
143
|
+
Gets list of servers in a specific WebLogic domain.
|
144
|
+
|
145
|
+
## Example Usage
|
146
|
+
|
147
|
+
```python
|
148
|
+
import pulumi
|
149
|
+
import pulumi_oci as oci
|
150
|
+
|
151
|
+
test_wls_domain_servers = oci.oci.get_wlms_wls_domain_servers(wls_domain_id=test_wls_domain["id"],
|
152
|
+
name=wls_domain_server_name)
|
153
|
+
```
|
154
|
+
|
155
|
+
|
156
|
+
:param builtins.str name: The name of the resource.
|
157
|
+
:param builtins.str wls_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain.
|
158
|
+
"""
|
159
|
+
__args__ = dict()
|
160
|
+
__args__['filters'] = filters
|
161
|
+
__args__['name'] = name
|
162
|
+
__args__['wlsDomainId'] = wls_domain_id
|
163
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
164
|
+
__ret__ = pulumi.runtime.invoke_output('oci:oci/getWlmsWlsDomainServers:getWlmsWlsDomainServers', __args__, opts=opts, typ=GetWlmsWlsDomainServersResult)
|
165
|
+
return __ret__.apply(lambda __response__: GetWlmsWlsDomainServersResult(
|
166
|
+
filters=pulumi.get(__response__, 'filters'),
|
167
|
+
id=pulumi.get(__response__, 'id'),
|
168
|
+
name=pulumi.get(__response__, 'name'),
|
169
|
+
server_collections=pulumi.get(__response__, 'server_collections'),
|
170
|
+
wls_domain_id=pulumi.get(__response__, 'wls_domain_id')))
|
@@ -0,0 +1,266 @@
|
|
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
|
+
'GetWlmsWlsDomainsResult',
|
22
|
+
'AwaitableGetWlmsWlsDomainsResult',
|
23
|
+
'get_wlms_wls_domains',
|
24
|
+
'get_wlms_wls_domains_output',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class GetWlmsWlsDomainsResult:
|
29
|
+
"""
|
30
|
+
A collection of values returned by getWlmsWlsDomains.
|
31
|
+
"""
|
32
|
+
def __init__(__self__, compartment_id=None, display_name=None, filters=None, id=None, middleware_type=None, patch_readiness_status=None, state=None, weblogic_version=None, wls_domain_collections=None):
|
33
|
+
if compartment_id and not isinstance(compartment_id, str):
|
34
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
35
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
36
|
+
if display_name and not isinstance(display_name, str):
|
37
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
38
|
+
pulumi.set(__self__, "display_name", display_name)
|
39
|
+
if filters and not isinstance(filters, list):
|
40
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
41
|
+
pulumi.set(__self__, "filters", filters)
|
42
|
+
if id and not isinstance(id, str):
|
43
|
+
raise TypeError("Expected argument 'id' to be a str")
|
44
|
+
pulumi.set(__self__, "id", id)
|
45
|
+
if middleware_type and not isinstance(middleware_type, str):
|
46
|
+
raise TypeError("Expected argument 'middleware_type' to be a str")
|
47
|
+
pulumi.set(__self__, "middleware_type", middleware_type)
|
48
|
+
if patch_readiness_status and not isinstance(patch_readiness_status, str):
|
49
|
+
raise TypeError("Expected argument 'patch_readiness_status' to be a str")
|
50
|
+
pulumi.set(__self__, "patch_readiness_status", patch_readiness_status)
|
51
|
+
if state and not isinstance(state, str):
|
52
|
+
raise TypeError("Expected argument 'state' to be a str")
|
53
|
+
pulumi.set(__self__, "state", state)
|
54
|
+
if weblogic_version and not isinstance(weblogic_version, str):
|
55
|
+
raise TypeError("Expected argument 'weblogic_version' to be a str")
|
56
|
+
pulumi.set(__self__, "weblogic_version", weblogic_version)
|
57
|
+
if wls_domain_collections and not isinstance(wls_domain_collections, list):
|
58
|
+
raise TypeError("Expected argument 'wls_domain_collections' to be a list")
|
59
|
+
pulumi.set(__self__, "wls_domain_collections", wls_domain_collections)
|
60
|
+
|
61
|
+
@property
|
62
|
+
@pulumi.getter(name="compartmentId")
|
63
|
+
def compartment_id(self) -> Optional[builtins.str]:
|
64
|
+
"""
|
65
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
66
|
+
"""
|
67
|
+
return pulumi.get(self, "compartment_id")
|
68
|
+
|
69
|
+
@property
|
70
|
+
@pulumi.getter(name="displayName")
|
71
|
+
def display_name(self) -> Optional[builtins.str]:
|
72
|
+
"""
|
73
|
+
A user-friendly name that does not have to be unique and is changeable.
|
74
|
+
"""
|
75
|
+
return pulumi.get(self, "display_name")
|
76
|
+
|
77
|
+
@property
|
78
|
+
@pulumi.getter
|
79
|
+
def filters(self) -> Optional[Sequence['outputs.GetWlmsWlsDomainsFilterResult']]:
|
80
|
+
return pulumi.get(self, "filters")
|
81
|
+
|
82
|
+
@property
|
83
|
+
@pulumi.getter
|
84
|
+
def id(self) -> Optional[builtins.str]:
|
85
|
+
"""
|
86
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain.
|
87
|
+
"""
|
88
|
+
return pulumi.get(self, "id")
|
89
|
+
|
90
|
+
@property
|
91
|
+
@pulumi.getter(name="middlewareType")
|
92
|
+
def middleware_type(self) -> Optional[builtins.str]:
|
93
|
+
"""
|
94
|
+
The middleware type on the administration server of the WebLogic domain.
|
95
|
+
"""
|
96
|
+
return pulumi.get(self, "middleware_type")
|
97
|
+
|
98
|
+
@property
|
99
|
+
@pulumi.getter(name="patchReadinessStatus")
|
100
|
+
def patch_readiness_status(self) -> Optional[builtins.str]:
|
101
|
+
"""
|
102
|
+
The patch readiness status of the WebLogic domain.
|
103
|
+
"""
|
104
|
+
return pulumi.get(self, "patch_readiness_status")
|
105
|
+
|
106
|
+
@property
|
107
|
+
@pulumi.getter
|
108
|
+
def state(self) -> Optional[builtins.str]:
|
109
|
+
"""
|
110
|
+
The current state of the WebLogic service domain.
|
111
|
+
"""
|
112
|
+
return pulumi.get(self, "state")
|
113
|
+
|
114
|
+
@property
|
115
|
+
@pulumi.getter(name="weblogicVersion")
|
116
|
+
def weblogic_version(self) -> Optional[builtins.str]:
|
117
|
+
"""
|
118
|
+
The version of the WebLogic domain.
|
119
|
+
"""
|
120
|
+
return pulumi.get(self, "weblogic_version")
|
121
|
+
|
122
|
+
@property
|
123
|
+
@pulumi.getter(name="wlsDomainCollections")
|
124
|
+
def wls_domain_collections(self) -> Sequence['outputs.GetWlmsWlsDomainsWlsDomainCollectionResult']:
|
125
|
+
"""
|
126
|
+
The list of wls_domain_collection.
|
127
|
+
"""
|
128
|
+
return pulumi.get(self, "wls_domain_collections")
|
129
|
+
|
130
|
+
|
131
|
+
class AwaitableGetWlmsWlsDomainsResult(GetWlmsWlsDomainsResult):
|
132
|
+
# pylint: disable=using-constant-test
|
133
|
+
def __await__(self):
|
134
|
+
if False:
|
135
|
+
yield self
|
136
|
+
return GetWlmsWlsDomainsResult(
|
137
|
+
compartment_id=self.compartment_id,
|
138
|
+
display_name=self.display_name,
|
139
|
+
filters=self.filters,
|
140
|
+
id=self.id,
|
141
|
+
middleware_type=self.middleware_type,
|
142
|
+
patch_readiness_status=self.patch_readiness_status,
|
143
|
+
state=self.state,
|
144
|
+
weblogic_version=self.weblogic_version,
|
145
|
+
wls_domain_collections=self.wls_domain_collections)
|
146
|
+
|
147
|
+
|
148
|
+
def get_wlms_wls_domains(compartment_id: Optional[builtins.str] = None,
|
149
|
+
display_name: Optional[builtins.str] = None,
|
150
|
+
filters: Optional[Sequence[Union['GetWlmsWlsDomainsFilterArgs', 'GetWlmsWlsDomainsFilterArgsDict']]] = None,
|
151
|
+
id: Optional[builtins.str] = None,
|
152
|
+
middleware_type: Optional[builtins.str] = None,
|
153
|
+
patch_readiness_status: Optional[builtins.str] = None,
|
154
|
+
state: Optional[builtins.str] = None,
|
155
|
+
weblogic_version: Optional[builtins.str] = None,
|
156
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetWlmsWlsDomainsResult:
|
157
|
+
"""
|
158
|
+
This data source provides the list of Wls Domains in Oracle Cloud Infrastructure Wlms service.
|
159
|
+
|
160
|
+
Gets all WebLogic domains in a given compartment.
|
161
|
+
|
162
|
+
## Example Usage
|
163
|
+
|
164
|
+
```python
|
165
|
+
import pulumi
|
166
|
+
import pulumi_oci as oci
|
167
|
+
|
168
|
+
test_wls_domains = oci.oci.get_wlms_wls_domains(compartment_id=compartment_id,
|
169
|
+
display_name=wls_domain_display_name,
|
170
|
+
id=wls_domain_id,
|
171
|
+
middleware_type=wls_domain_middleware_type,
|
172
|
+
patch_readiness_status=wls_domain_patch_readiness_status,
|
173
|
+
state=wls_domain_state,
|
174
|
+
weblogic_version=wls_domain_weblogic_version)
|
175
|
+
```
|
176
|
+
|
177
|
+
|
178
|
+
:param builtins.str compartment_id: The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
|
179
|
+
:param builtins.str display_name: The display name.
|
180
|
+
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain.
|
181
|
+
:param builtins.str middleware_type: A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
|
182
|
+
:param builtins.str patch_readiness_status: A filter to return domains based on the patch readiness status.
|
183
|
+
:param builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
184
|
+
:param builtins.str weblogic_version: A filter to return WebLogic domains based on the WebLogic version.
|
185
|
+
"""
|
186
|
+
__args__ = dict()
|
187
|
+
__args__['compartmentId'] = compartment_id
|
188
|
+
__args__['displayName'] = display_name
|
189
|
+
__args__['filters'] = filters
|
190
|
+
__args__['id'] = id
|
191
|
+
__args__['middlewareType'] = middleware_type
|
192
|
+
__args__['patchReadinessStatus'] = patch_readiness_status
|
193
|
+
__args__['state'] = state
|
194
|
+
__args__['weblogicVersion'] = weblogic_version
|
195
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
196
|
+
__ret__ = pulumi.runtime.invoke('oci:oci/getWlmsWlsDomains:getWlmsWlsDomains', __args__, opts=opts, typ=GetWlmsWlsDomainsResult).value
|
197
|
+
|
198
|
+
return AwaitableGetWlmsWlsDomainsResult(
|
199
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
200
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
201
|
+
filters=pulumi.get(__ret__, 'filters'),
|
202
|
+
id=pulumi.get(__ret__, 'id'),
|
203
|
+
middleware_type=pulumi.get(__ret__, 'middleware_type'),
|
204
|
+
patch_readiness_status=pulumi.get(__ret__, 'patch_readiness_status'),
|
205
|
+
state=pulumi.get(__ret__, 'state'),
|
206
|
+
weblogic_version=pulumi.get(__ret__, 'weblogic_version'),
|
207
|
+
wls_domain_collections=pulumi.get(__ret__, 'wls_domain_collections'))
|
208
|
+
def get_wlms_wls_domains_output(compartment_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
209
|
+
display_name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
210
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetWlmsWlsDomainsFilterArgs', 'GetWlmsWlsDomainsFilterArgsDict']]]]] = None,
|
211
|
+
id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
212
|
+
middleware_type: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
213
|
+
patch_readiness_status: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
214
|
+
state: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
215
|
+
weblogic_version: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
216
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetWlmsWlsDomainsResult]:
|
217
|
+
"""
|
218
|
+
This data source provides the list of Wls Domains in Oracle Cloud Infrastructure Wlms service.
|
219
|
+
|
220
|
+
Gets all WebLogic domains in a given compartment.
|
221
|
+
|
222
|
+
## Example Usage
|
223
|
+
|
224
|
+
```python
|
225
|
+
import pulumi
|
226
|
+
import pulumi_oci as oci
|
227
|
+
|
228
|
+
test_wls_domains = oci.oci.get_wlms_wls_domains(compartment_id=compartment_id,
|
229
|
+
display_name=wls_domain_display_name,
|
230
|
+
id=wls_domain_id,
|
231
|
+
middleware_type=wls_domain_middleware_type,
|
232
|
+
patch_readiness_status=wls_domain_patch_readiness_status,
|
233
|
+
state=wls_domain_state,
|
234
|
+
weblogic_version=wls_domain_weblogic_version)
|
235
|
+
```
|
236
|
+
|
237
|
+
|
238
|
+
:param builtins.str compartment_id: The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
|
239
|
+
:param builtins.str display_name: The display name.
|
240
|
+
:param builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain.
|
241
|
+
:param builtins.str middleware_type: A filter to return WebLogic domains based on the type of middleware of the WebLogic domain.
|
242
|
+
:param builtins.str patch_readiness_status: A filter to return domains based on the patch readiness status.
|
243
|
+
:param builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
244
|
+
:param builtins.str weblogic_version: A filter to return WebLogic domains based on the WebLogic version.
|
245
|
+
"""
|
246
|
+
__args__ = dict()
|
247
|
+
__args__['compartmentId'] = compartment_id
|
248
|
+
__args__['displayName'] = display_name
|
249
|
+
__args__['filters'] = filters
|
250
|
+
__args__['id'] = id
|
251
|
+
__args__['middlewareType'] = middleware_type
|
252
|
+
__args__['patchReadinessStatus'] = patch_readiness_status
|
253
|
+
__args__['state'] = state
|
254
|
+
__args__['weblogicVersion'] = weblogic_version
|
255
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
256
|
+
__ret__ = pulumi.runtime.invoke_output('oci:oci/getWlmsWlsDomains:getWlmsWlsDomains', __args__, opts=opts, typ=GetWlmsWlsDomainsResult)
|
257
|
+
return __ret__.apply(lambda __response__: GetWlmsWlsDomainsResult(
|
258
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
259
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
260
|
+
filters=pulumi.get(__response__, 'filters'),
|
261
|
+
id=pulumi.get(__response__, 'id'),
|
262
|
+
middleware_type=pulumi.get(__response__, 'middleware_type'),
|
263
|
+
patch_readiness_status=pulumi.get(__response__, 'patch_readiness_status'),
|
264
|
+
state=pulumi.get(__response__, 'state'),
|
265
|
+
weblogic_version=pulumi.get(__response__, 'weblogic_version'),
|
266
|
+
wls_domain_collections=pulumi.get(__response__, 'wls_domain_collections')))
|