pulumi-oci 3.1.0a1750143229__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.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,230 @@
|
|
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
|
+
'GetWlmsWlsDomainServerBackupResult',
|
20
|
+
'AwaitableGetWlmsWlsDomainServerBackupResult',
|
21
|
+
'get_wlms_wls_domain_server_backup',
|
22
|
+
'get_wlms_wls_domain_server_backup_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetWlmsWlsDomainServerBackupResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getWlmsWlsDomainServerBackup.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, backup_id=None, backup_location=None, content_type=None, id=None, managed_instance_id=None, server_id=None, time_created=None, type=None, wls_domain_id=None):
|
31
|
+
if backup_id and not isinstance(backup_id, str):
|
32
|
+
raise TypeError("Expected argument 'backup_id' to be a str")
|
33
|
+
pulumi.set(__self__, "backup_id", backup_id)
|
34
|
+
if backup_location and not isinstance(backup_location, str):
|
35
|
+
raise TypeError("Expected argument 'backup_location' to be a str")
|
36
|
+
pulumi.set(__self__, "backup_location", backup_location)
|
37
|
+
if content_type and not isinstance(content_type, str):
|
38
|
+
raise TypeError("Expected argument 'content_type' to be a str")
|
39
|
+
pulumi.set(__self__, "content_type", content_type)
|
40
|
+
if id and not isinstance(id, str):
|
41
|
+
raise TypeError("Expected argument 'id' to be a str")
|
42
|
+
pulumi.set(__self__, "id", id)
|
43
|
+
if managed_instance_id and not isinstance(managed_instance_id, str):
|
44
|
+
raise TypeError("Expected argument 'managed_instance_id' to be a str")
|
45
|
+
pulumi.set(__self__, "managed_instance_id", managed_instance_id)
|
46
|
+
if server_id and not isinstance(server_id, str):
|
47
|
+
raise TypeError("Expected argument 'server_id' to be a str")
|
48
|
+
pulumi.set(__self__, "server_id", server_id)
|
49
|
+
if time_created and not isinstance(time_created, str):
|
50
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
51
|
+
pulumi.set(__self__, "time_created", time_created)
|
52
|
+
if type and not isinstance(type, str):
|
53
|
+
raise TypeError("Expected argument 'type' to be a str")
|
54
|
+
pulumi.set(__self__, "type", type)
|
55
|
+
if wls_domain_id and not isinstance(wls_domain_id, str):
|
56
|
+
raise TypeError("Expected argument 'wls_domain_id' to be a str")
|
57
|
+
pulumi.set(__self__, "wls_domain_id", wls_domain_id)
|
58
|
+
|
59
|
+
@property
|
60
|
+
@pulumi.getter(name="backupId")
|
61
|
+
def backup_id(self) -> builtins.str:
|
62
|
+
return pulumi.get(self, "backup_id")
|
63
|
+
|
64
|
+
@property
|
65
|
+
@pulumi.getter(name="backupLocation")
|
66
|
+
def backup_location(self) -> builtins.str:
|
67
|
+
"""
|
68
|
+
The location of the backup. For backups of type LOCAL_FILE this is the absolute path of the backup file.
|
69
|
+
"""
|
70
|
+
return pulumi.get(self, "backup_location")
|
71
|
+
|
72
|
+
@property
|
73
|
+
@pulumi.getter(name="contentType")
|
74
|
+
def content_type(self) -> builtins.str:
|
75
|
+
"""
|
76
|
+
The type of content of the backup.
|
77
|
+
"""
|
78
|
+
return pulumi.get(self, "content_type")
|
79
|
+
|
80
|
+
@property
|
81
|
+
@pulumi.getter
|
82
|
+
def id(self) -> builtins.str:
|
83
|
+
"""
|
84
|
+
The provider-assigned unique ID for this managed resource.
|
85
|
+
"""
|
86
|
+
return pulumi.get(self, "id")
|
87
|
+
|
88
|
+
@property
|
89
|
+
@pulumi.getter(name="managedInstanceId")
|
90
|
+
def managed_instance_id(self) -> builtins.str:
|
91
|
+
"""
|
92
|
+
The managed instance ID of the server for which the backup was created.
|
93
|
+
"""
|
94
|
+
return pulumi.get(self, "managed_instance_id")
|
95
|
+
|
96
|
+
@property
|
97
|
+
@pulumi.getter(name="serverId")
|
98
|
+
def server_id(self) -> builtins.str:
|
99
|
+
return pulumi.get(self, "server_id")
|
100
|
+
|
101
|
+
@property
|
102
|
+
@pulumi.getter(name="timeCreated")
|
103
|
+
def time_created(self) -> builtins.str:
|
104
|
+
"""
|
105
|
+
The date and time when the backup was created (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format). Example: `2016-08-25T21:10:29.600Z`
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "time_created")
|
108
|
+
|
109
|
+
@property
|
110
|
+
@pulumi.getter
|
111
|
+
def type(self) -> builtins.str:
|
112
|
+
"""
|
113
|
+
The type of the backup.
|
114
|
+
"""
|
115
|
+
return pulumi.get(self, "type")
|
116
|
+
|
117
|
+
@property
|
118
|
+
@pulumi.getter(name="wlsDomainId")
|
119
|
+
def wls_domain_id(self) -> builtins.str:
|
120
|
+
return pulumi.get(self, "wls_domain_id")
|
121
|
+
|
122
|
+
|
123
|
+
class AwaitableGetWlmsWlsDomainServerBackupResult(GetWlmsWlsDomainServerBackupResult):
|
124
|
+
# pylint: disable=using-constant-test
|
125
|
+
def __await__(self):
|
126
|
+
if False:
|
127
|
+
yield self
|
128
|
+
return GetWlmsWlsDomainServerBackupResult(
|
129
|
+
backup_id=self.backup_id,
|
130
|
+
backup_location=self.backup_location,
|
131
|
+
content_type=self.content_type,
|
132
|
+
id=self.id,
|
133
|
+
managed_instance_id=self.managed_instance_id,
|
134
|
+
server_id=self.server_id,
|
135
|
+
time_created=self.time_created,
|
136
|
+
type=self.type,
|
137
|
+
wls_domain_id=self.wls_domain_id)
|
138
|
+
|
139
|
+
|
140
|
+
def get_wlms_wls_domain_server_backup(backup_id: Optional[builtins.str] = None,
|
141
|
+
server_id: Optional[builtins.str] = None,
|
142
|
+
wls_domain_id: Optional[builtins.str] = None,
|
143
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetWlmsWlsDomainServerBackupResult:
|
144
|
+
"""
|
145
|
+
This data source provides details about a specific Wls Domain Server Backup resource in Oracle Cloud Infrastructure Wlms service.
|
146
|
+
|
147
|
+
Get details of specific backup for the WebLogic Domain.
|
148
|
+
|
149
|
+
## Example Usage
|
150
|
+
|
151
|
+
```python
|
152
|
+
import pulumi
|
153
|
+
import pulumi_oci as oci
|
154
|
+
|
155
|
+
test_wls_domain_server_backup = oci.oci.get_wlms_wls_domain_server_backup(backup_id=test_backup["id"],
|
156
|
+
server_id=test_server["id"],
|
157
|
+
wls_domain_id=test_wls_domain["id"])
|
158
|
+
```
|
159
|
+
|
160
|
+
|
161
|
+
:param builtins.str backup_id: The unique identifier of the backup.
|
162
|
+
|
163
|
+
**Note:** Not an [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
164
|
+
:param builtins.str server_id: The unique identifier of a server.
|
165
|
+
|
166
|
+
**Note:** Not an [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
167
|
+
:param builtins.str wls_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain.
|
168
|
+
"""
|
169
|
+
__args__ = dict()
|
170
|
+
__args__['backupId'] = backup_id
|
171
|
+
__args__['serverId'] = server_id
|
172
|
+
__args__['wlsDomainId'] = wls_domain_id
|
173
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
174
|
+
__ret__ = pulumi.runtime.invoke('oci:oci/getWlmsWlsDomainServerBackup:getWlmsWlsDomainServerBackup', __args__, opts=opts, typ=GetWlmsWlsDomainServerBackupResult).value
|
175
|
+
|
176
|
+
return AwaitableGetWlmsWlsDomainServerBackupResult(
|
177
|
+
backup_id=pulumi.get(__ret__, 'backup_id'),
|
178
|
+
backup_location=pulumi.get(__ret__, 'backup_location'),
|
179
|
+
content_type=pulumi.get(__ret__, 'content_type'),
|
180
|
+
id=pulumi.get(__ret__, 'id'),
|
181
|
+
managed_instance_id=pulumi.get(__ret__, 'managed_instance_id'),
|
182
|
+
server_id=pulumi.get(__ret__, 'server_id'),
|
183
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
184
|
+
type=pulumi.get(__ret__, 'type'),
|
185
|
+
wls_domain_id=pulumi.get(__ret__, 'wls_domain_id'))
|
186
|
+
def get_wlms_wls_domain_server_backup_output(backup_id: Optional[pulumi.Input[builtins.str]] = None,
|
187
|
+
server_id: Optional[pulumi.Input[builtins.str]] = None,
|
188
|
+
wls_domain_id: Optional[pulumi.Input[builtins.str]] = None,
|
189
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetWlmsWlsDomainServerBackupResult]:
|
190
|
+
"""
|
191
|
+
This data source provides details about a specific Wls Domain Server Backup resource in Oracle Cloud Infrastructure Wlms service.
|
192
|
+
|
193
|
+
Get details of specific backup for the WebLogic Domain.
|
194
|
+
|
195
|
+
## Example Usage
|
196
|
+
|
197
|
+
```python
|
198
|
+
import pulumi
|
199
|
+
import pulumi_oci as oci
|
200
|
+
|
201
|
+
test_wls_domain_server_backup = oci.oci.get_wlms_wls_domain_server_backup(backup_id=test_backup["id"],
|
202
|
+
server_id=test_server["id"],
|
203
|
+
wls_domain_id=test_wls_domain["id"])
|
204
|
+
```
|
205
|
+
|
206
|
+
|
207
|
+
:param builtins.str backup_id: The unique identifier of the backup.
|
208
|
+
|
209
|
+
**Note:** Not an [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
210
|
+
:param builtins.str server_id: The unique identifier of a server.
|
211
|
+
|
212
|
+
**Note:** Not an [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
213
|
+
:param builtins.str wls_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain.
|
214
|
+
"""
|
215
|
+
__args__ = dict()
|
216
|
+
__args__['backupId'] = backup_id
|
217
|
+
__args__['serverId'] = server_id
|
218
|
+
__args__['wlsDomainId'] = wls_domain_id
|
219
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
220
|
+
__ret__ = pulumi.runtime.invoke_output('oci:oci/getWlmsWlsDomainServerBackup:getWlmsWlsDomainServerBackup', __args__, opts=opts, typ=GetWlmsWlsDomainServerBackupResult)
|
221
|
+
return __ret__.apply(lambda __response__: GetWlmsWlsDomainServerBackupResult(
|
222
|
+
backup_id=pulumi.get(__response__, 'backup_id'),
|
223
|
+
backup_location=pulumi.get(__response__, 'backup_location'),
|
224
|
+
content_type=pulumi.get(__response__, 'content_type'),
|
225
|
+
id=pulumi.get(__response__, 'id'),
|
226
|
+
managed_instance_id=pulumi.get(__response__, 'managed_instance_id'),
|
227
|
+
server_id=pulumi.get(__response__, 'server_id'),
|
228
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
229
|
+
type=pulumi.get(__response__, 'type'),
|
230
|
+
wls_domain_id=pulumi.get(__response__, 'wls_domain_id')))
|
@@ -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
|
+
|
19
|
+
__all__ = [
|
20
|
+
'GetWlmsWlsDomainServerBackupContentResult',
|
21
|
+
'AwaitableGetWlmsWlsDomainServerBackupContentResult',
|
22
|
+
'get_wlms_wls_domain_server_backup_content',
|
23
|
+
'get_wlms_wls_domain_server_backup_content_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetWlmsWlsDomainServerBackupContentResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getWlmsWlsDomainServerBackupContent.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, backup_id=None, content_type=None, id=None, middlewares=None, server_id=None, wls_domain_id=None):
|
32
|
+
if backup_id and not isinstance(backup_id, str):
|
33
|
+
raise TypeError("Expected argument 'backup_id' to be a str")
|
34
|
+
pulumi.set(__self__, "backup_id", backup_id)
|
35
|
+
if content_type and not isinstance(content_type, str):
|
36
|
+
raise TypeError("Expected argument 'content_type' to be a str")
|
37
|
+
pulumi.set(__self__, "content_type", content_type)
|
38
|
+
if id and not isinstance(id, str):
|
39
|
+
raise TypeError("Expected argument 'id' to be a str")
|
40
|
+
pulumi.set(__self__, "id", id)
|
41
|
+
if middlewares and not isinstance(middlewares, list):
|
42
|
+
raise TypeError("Expected argument 'middlewares' to be a list")
|
43
|
+
pulumi.set(__self__, "middlewares", middlewares)
|
44
|
+
if server_id and not isinstance(server_id, str):
|
45
|
+
raise TypeError("Expected argument 'server_id' to be a str")
|
46
|
+
pulumi.set(__self__, "server_id", server_id)
|
47
|
+
if wls_domain_id and not isinstance(wls_domain_id, str):
|
48
|
+
raise TypeError("Expected argument 'wls_domain_id' to be a str")
|
49
|
+
pulumi.set(__self__, "wls_domain_id", wls_domain_id)
|
50
|
+
|
51
|
+
@property
|
52
|
+
@pulumi.getter(name="backupId")
|
53
|
+
def backup_id(self) -> builtins.str:
|
54
|
+
return pulumi.get(self, "backup_id")
|
55
|
+
|
56
|
+
@property
|
57
|
+
@pulumi.getter(name="contentType")
|
58
|
+
def content_type(self) -> builtins.str:
|
59
|
+
"""
|
60
|
+
The type of content of the backup.
|
61
|
+
"""
|
62
|
+
return pulumi.get(self, "content_type")
|
63
|
+
|
64
|
+
@property
|
65
|
+
@pulumi.getter
|
66
|
+
def id(self) -> builtins.str:
|
67
|
+
"""
|
68
|
+
The provider-assigned unique ID for this managed resource.
|
69
|
+
"""
|
70
|
+
return pulumi.get(self, "id")
|
71
|
+
|
72
|
+
@property
|
73
|
+
@pulumi.getter
|
74
|
+
def middlewares(self) -> Sequence['outputs.GetWlmsWlsDomainServerBackupContentMiddlewareResult']:
|
75
|
+
"""
|
76
|
+
The content of the middleware binaries included in a backup.
|
77
|
+
"""
|
78
|
+
return pulumi.get(self, "middlewares")
|
79
|
+
|
80
|
+
@property
|
81
|
+
@pulumi.getter(name="serverId")
|
82
|
+
def server_id(self) -> builtins.str:
|
83
|
+
return pulumi.get(self, "server_id")
|
84
|
+
|
85
|
+
@property
|
86
|
+
@pulumi.getter(name="wlsDomainId")
|
87
|
+
def wls_domain_id(self) -> builtins.str:
|
88
|
+
return pulumi.get(self, "wls_domain_id")
|
89
|
+
|
90
|
+
|
91
|
+
class AwaitableGetWlmsWlsDomainServerBackupContentResult(GetWlmsWlsDomainServerBackupContentResult):
|
92
|
+
# pylint: disable=using-constant-test
|
93
|
+
def __await__(self):
|
94
|
+
if False:
|
95
|
+
yield self
|
96
|
+
return GetWlmsWlsDomainServerBackupContentResult(
|
97
|
+
backup_id=self.backup_id,
|
98
|
+
content_type=self.content_type,
|
99
|
+
id=self.id,
|
100
|
+
middlewares=self.middlewares,
|
101
|
+
server_id=self.server_id,
|
102
|
+
wls_domain_id=self.wls_domain_id)
|
103
|
+
|
104
|
+
|
105
|
+
def get_wlms_wls_domain_server_backup_content(backup_id: Optional[builtins.str] = None,
|
106
|
+
server_id: Optional[builtins.str] = None,
|
107
|
+
wls_domain_id: Optional[builtins.str] = None,
|
108
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetWlmsWlsDomainServerBackupContentResult:
|
109
|
+
"""
|
110
|
+
This data source provides details about a specific Wls Domain Server Backup Content resource in Oracle Cloud Infrastructure Wlms service.
|
111
|
+
|
112
|
+
Get details of specific backup for the WebLogic Domain.
|
113
|
+
|
114
|
+
## Example Usage
|
115
|
+
|
116
|
+
```python
|
117
|
+
import pulumi
|
118
|
+
import pulumi_oci as oci
|
119
|
+
|
120
|
+
test_wls_domain_server_backup_content = oci.oci.get_wlms_wls_domain_server_backup_content(backup_id=test_backup["id"],
|
121
|
+
server_id=test_server["id"],
|
122
|
+
wls_domain_id=test_wls_domain["id"])
|
123
|
+
```
|
124
|
+
|
125
|
+
|
126
|
+
:param builtins.str backup_id: The unique identifier of the backup.
|
127
|
+
|
128
|
+
**Note:** Not an [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
129
|
+
:param builtins.str server_id: The unique identifier of a server.
|
130
|
+
|
131
|
+
**Note:** Not an [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
132
|
+
:param builtins.str wls_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain.
|
133
|
+
"""
|
134
|
+
__args__ = dict()
|
135
|
+
__args__['backupId'] = backup_id
|
136
|
+
__args__['serverId'] = server_id
|
137
|
+
__args__['wlsDomainId'] = wls_domain_id
|
138
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
139
|
+
__ret__ = pulumi.runtime.invoke('oci:oci/getWlmsWlsDomainServerBackupContent:getWlmsWlsDomainServerBackupContent', __args__, opts=opts, typ=GetWlmsWlsDomainServerBackupContentResult).value
|
140
|
+
|
141
|
+
return AwaitableGetWlmsWlsDomainServerBackupContentResult(
|
142
|
+
backup_id=pulumi.get(__ret__, 'backup_id'),
|
143
|
+
content_type=pulumi.get(__ret__, 'content_type'),
|
144
|
+
id=pulumi.get(__ret__, 'id'),
|
145
|
+
middlewares=pulumi.get(__ret__, 'middlewares'),
|
146
|
+
server_id=pulumi.get(__ret__, 'server_id'),
|
147
|
+
wls_domain_id=pulumi.get(__ret__, 'wls_domain_id'))
|
148
|
+
def get_wlms_wls_domain_server_backup_content_output(backup_id: Optional[pulumi.Input[builtins.str]] = None,
|
149
|
+
server_id: Optional[pulumi.Input[builtins.str]] = None,
|
150
|
+
wls_domain_id: Optional[pulumi.Input[builtins.str]] = None,
|
151
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetWlmsWlsDomainServerBackupContentResult]:
|
152
|
+
"""
|
153
|
+
This data source provides details about a specific Wls Domain Server Backup Content resource in Oracle Cloud Infrastructure Wlms service.
|
154
|
+
|
155
|
+
Get details of specific backup for the WebLogic Domain.
|
156
|
+
|
157
|
+
## Example Usage
|
158
|
+
|
159
|
+
```python
|
160
|
+
import pulumi
|
161
|
+
import pulumi_oci as oci
|
162
|
+
|
163
|
+
test_wls_domain_server_backup_content = oci.oci.get_wlms_wls_domain_server_backup_content(backup_id=test_backup["id"],
|
164
|
+
server_id=test_server["id"],
|
165
|
+
wls_domain_id=test_wls_domain["id"])
|
166
|
+
```
|
167
|
+
|
168
|
+
|
169
|
+
:param builtins.str backup_id: The unique identifier of the backup.
|
170
|
+
|
171
|
+
**Note:** Not an [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
172
|
+
:param builtins.str server_id: The unique identifier of a server.
|
173
|
+
|
174
|
+
**Note:** Not an [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
175
|
+
:param builtins.str wls_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WebLogic domain.
|
176
|
+
"""
|
177
|
+
__args__ = dict()
|
178
|
+
__args__['backupId'] = backup_id
|
179
|
+
__args__['serverId'] = server_id
|
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/getWlmsWlsDomainServerBackupContent:getWlmsWlsDomainServerBackupContent', __args__, opts=opts, typ=GetWlmsWlsDomainServerBackupContentResult)
|
183
|
+
return __ret__.apply(lambda __response__: GetWlmsWlsDomainServerBackupContentResult(
|
184
|
+
backup_id=pulumi.get(__response__, 'backup_id'),
|
185
|
+
content_type=pulumi.get(__response__, 'content_type'),
|
186
|
+
id=pulumi.get(__response__, 'id'),
|
187
|
+
middlewares=pulumi.get(__response__, 'middlewares'),
|
188
|
+
server_id=pulumi.get(__response__, 'server_id'),
|
189
|
+
wls_domain_id=pulumi.get(__response__, 'wls_domain_id')))
|
@@ -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
|
+
'GetWlmsWlsDomainServerBackupsResult',
|
22
|
+
'AwaitableGetWlmsWlsDomainServerBackupsResult',
|
23
|
+
'get_wlms_wls_domain_server_backups',
|
24
|
+
'get_wlms_wls_domain_server_backups_output',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class GetWlmsWlsDomainServerBackupsResult:
|
29
|
+
"""
|
30
|
+
A collection of values returned by getWlmsWlsDomainServerBackups.
|
31
|
+
"""
|
32
|
+
def __init__(__self__, backup_collections=None, filters=None, id=None, server_id=None, wls_domain_id=None):
|
33
|
+
if backup_collections and not isinstance(backup_collections, list):
|
34
|
+
raise TypeError("Expected argument 'backup_collections' to be a list")
|
35
|
+
pulumi.set(__self__, "backup_collections", backup_collections)
|
36
|
+
if filters and not isinstance(filters, list):
|
37
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
38
|
+
pulumi.set(__self__, "filters", filters)
|
39
|
+
if id and not isinstance(id, str):
|
40
|
+
raise TypeError("Expected argument 'id' to be a str")
|
41
|
+
pulumi.set(__self__, "id", id)
|
42
|
+
if 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(name="backupCollections")
|
51
|
+
def backup_collections(self) -> Sequence['outputs.GetWlmsWlsDomainServerBackupsBackupCollectionResult']:
|
52
|
+
"""
|
53
|
+
The list of backup_collection.
|
54
|
+
"""
|
55
|
+
return pulumi.get(self, "backup_collections")
|
56
|
+
|
57
|
+
@property
|
58
|
+
@pulumi.getter
|
59
|
+
def filters(self) -> Optional[Sequence['outputs.GetWlmsWlsDomainServerBackupsFilterResult']]:
|
60
|
+
return pulumi.get(self, "filters")
|
61
|
+
|
62
|
+
@property
|
63
|
+
@pulumi.getter
|
64
|
+
def id(self) -> builtins.str:
|
65
|
+
"""
|
66
|
+
The provider-assigned unique ID for this managed resource.
|
67
|
+
"""
|
68
|
+
return pulumi.get(self, "id")
|
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 AwaitableGetWlmsWlsDomainServerBackupsResult(GetWlmsWlsDomainServerBackupsResult):
|
82
|
+
# pylint: disable=using-constant-test
|
83
|
+
def __await__(self):
|
84
|
+
if False:
|
85
|
+
yield self
|
86
|
+
return GetWlmsWlsDomainServerBackupsResult(
|
87
|
+
backup_collections=self.backup_collections,
|
88
|
+
filters=self.filters,
|
89
|
+
id=self.id,
|
90
|
+
server_id=self.server_id,
|
91
|
+
wls_domain_id=self.wls_domain_id)
|
92
|
+
|
93
|
+
|
94
|
+
def get_wlms_wls_domain_server_backups(filters: Optional[Sequence[Union['GetWlmsWlsDomainServerBackupsFilterArgs', 'GetWlmsWlsDomainServerBackupsFilterArgsDict']]] = None,
|
95
|
+
server_id: Optional[builtins.str] = None,
|
96
|
+
wls_domain_id: Optional[builtins.str] = None,
|
97
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetWlmsWlsDomainServerBackupsResult:
|
98
|
+
"""
|
99
|
+
This data source provides the list of Wls Domain Server Backups in Oracle Cloud Infrastructure Wlms service.
|
100
|
+
|
101
|
+
Gets a list of backups for the server of a specific WebLogic Domain.
|
102
|
+
|
103
|
+
## Example Usage
|
104
|
+
|
105
|
+
```python
|
106
|
+
import pulumi
|
107
|
+
import pulumi_oci as oci
|
108
|
+
|
109
|
+
test_wls_domain_server_backups = oci.oci.get_wlms_wls_domain_server_backups(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/getWlmsWlsDomainServerBackups:getWlmsWlsDomainServerBackups', __args__, opts=opts, typ=GetWlmsWlsDomainServerBackupsResult).value
|
125
|
+
|
126
|
+
return AwaitableGetWlmsWlsDomainServerBackupsResult(
|
127
|
+
backup_collections=pulumi.get(__ret__, 'backup_collections'),
|
128
|
+
filters=pulumi.get(__ret__, 'filters'),
|
129
|
+
id=pulumi.get(__ret__, 'id'),
|
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_backups_output(filters: Optional[pulumi.Input[Optional[Sequence[Union['GetWlmsWlsDomainServerBackupsFilterArgs', 'GetWlmsWlsDomainServerBackupsFilterArgsDict']]]]] = 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[GetWlmsWlsDomainServerBackupsResult]:
|
136
|
+
"""
|
137
|
+
This data source provides the list of Wls Domain Server Backups in Oracle Cloud Infrastructure Wlms service.
|
138
|
+
|
139
|
+
Gets a list of backups for the server of a specific WebLogic Domain.
|
140
|
+
|
141
|
+
## Example Usage
|
142
|
+
|
143
|
+
```python
|
144
|
+
import pulumi
|
145
|
+
import pulumi_oci as oci
|
146
|
+
|
147
|
+
test_wls_domain_server_backups = oci.oci.get_wlms_wls_domain_server_backups(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/getWlmsWlsDomainServerBackups:getWlmsWlsDomainServerBackups', __args__, opts=opts, typ=GetWlmsWlsDomainServerBackupsResult)
|
163
|
+
return __ret__.apply(lambda __response__: GetWlmsWlsDomainServerBackupsResult(
|
164
|
+
backup_collections=pulumi.get(__response__, 'backup_collections'),
|
165
|
+
filters=pulumi.get(__response__, 'filters'),
|
166
|
+
id=pulumi.get(__response__, 'id'),
|
167
|
+
server_id=pulumi.get(__response__, 'server_id'),
|
168
|
+
wls_domain_id=pulumi.get(__response__, 'wls_domain_id')))
|