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,910 @@
|
|
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__ = ['ComputeHostArgs', 'ComputeHost']
|
21
|
+
|
22
|
+
@pulumi.input_type
|
23
|
+
class ComputeHostArgs:
|
24
|
+
def __init__(__self__, *,
|
25
|
+
compute_host_id: pulumi.Input[builtins.str],
|
26
|
+
compute_host_group_id: Optional[pulumi.Input[builtins.str]] = None):
|
27
|
+
"""
|
28
|
+
The set of arguments for constructing a ComputeHost resource.
|
29
|
+
:param pulumi.Input[builtins.str] compute_host_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host.
|
30
|
+
:param pulumi.Input[builtins.str] compute_host_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host group this host was attached to at the time of recycle.
|
31
|
+
"""
|
32
|
+
pulumi.set(__self__, "compute_host_id", compute_host_id)
|
33
|
+
if compute_host_group_id is not None:
|
34
|
+
pulumi.set(__self__, "compute_host_group_id", compute_host_group_id)
|
35
|
+
|
36
|
+
@property
|
37
|
+
@pulumi.getter(name="computeHostId")
|
38
|
+
def compute_host_id(self) -> pulumi.Input[builtins.str]:
|
39
|
+
"""
|
40
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host.
|
41
|
+
"""
|
42
|
+
return pulumi.get(self, "compute_host_id")
|
43
|
+
|
44
|
+
@compute_host_id.setter
|
45
|
+
def compute_host_id(self, value: pulumi.Input[builtins.str]):
|
46
|
+
pulumi.set(self, "compute_host_id", value)
|
47
|
+
|
48
|
+
@property
|
49
|
+
@pulumi.getter(name="computeHostGroupId")
|
50
|
+
def compute_host_group_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
51
|
+
"""
|
52
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host group this host was attached to at the time of recycle.
|
53
|
+
"""
|
54
|
+
return pulumi.get(self, "compute_host_group_id")
|
55
|
+
|
56
|
+
@compute_host_group_id.setter
|
57
|
+
def compute_host_group_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
58
|
+
pulumi.set(self, "compute_host_group_id", value)
|
59
|
+
|
60
|
+
|
61
|
+
@pulumi.input_type
|
62
|
+
class _ComputeHostState:
|
63
|
+
def __init__(__self__, *,
|
64
|
+
additional_data: Optional[pulumi.Input[builtins.str]] = None,
|
65
|
+
availability_domain: Optional[pulumi.Input[builtins.str]] = None,
|
66
|
+
capacity_reservation_id: Optional[pulumi.Input[builtins.str]] = None,
|
67
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
68
|
+
compute_host_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
69
|
+
compute_host_id: Optional[pulumi.Input[builtins.str]] = None,
|
70
|
+
configuration_datas: Optional[pulumi.Input[Sequence[pulumi.Input['ComputeHostConfigurationDataArgs']]]] = None,
|
71
|
+
configuration_state: Optional[pulumi.Input[builtins.str]] = None,
|
72
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
73
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
74
|
+
fault_domain: Optional[pulumi.Input[builtins.str]] = None,
|
75
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
76
|
+
gpu_memory_fabric_id: Optional[pulumi.Input[builtins.str]] = None,
|
77
|
+
health: Optional[pulumi.Input[builtins.str]] = None,
|
78
|
+
hpc_island_id: Optional[pulumi.Input[builtins.str]] = None,
|
79
|
+
impacted_component_details: Optional[pulumi.Input[builtins.str]] = None,
|
80
|
+
instance_id: Optional[pulumi.Input[builtins.str]] = None,
|
81
|
+
lifecycle_details: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
82
|
+
local_block_id: Optional[pulumi.Input[builtins.str]] = None,
|
83
|
+
network_block_id: Optional[pulumi.Input[builtins.str]] = None,
|
84
|
+
recycle_details: Optional[pulumi.Input[Sequence[pulumi.Input['ComputeHostRecycleDetailArgs']]]] = None,
|
85
|
+
shape: Optional[pulumi.Input[builtins.str]] = None,
|
86
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
87
|
+
time_configuration_check: Optional[pulumi.Input[builtins.str]] = None,
|
88
|
+
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
89
|
+
time_updated: Optional[pulumi.Input[builtins.str]] = None):
|
90
|
+
"""
|
91
|
+
Input properties used for looking up and filtering ComputeHost resources.
|
92
|
+
:param pulumi.Input[builtins.str] additional_data: Additional data that can be exposed to the customer. Will include raw fault codes for strategic customers
|
93
|
+
:param pulumi.Input[builtins.str] availability_domain: The availability domain of the compute host. Example: `Uocm:US-CHICAGO-1-AD-2`
|
94
|
+
:param pulumi.Input[builtins.str] capacity_reservation_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Capacity Reserver that is currently on host
|
95
|
+
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment. This should always be the root compartment.
|
96
|
+
:param pulumi.Input[builtins.str] compute_host_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host group this host was attached to at the time of recycle.
|
97
|
+
:param pulumi.Input[builtins.str] compute_host_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host.
|
98
|
+
:param pulumi.Input[Sequence[pulumi.Input['ComputeHostConfigurationDataArgs']]] configuration_datas: Compute Host Configuration Data
|
99
|
+
:param pulumi.Input[builtins.str] configuration_state: Configuration state of the Compute Bare Metal Host.
|
100
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
101
|
+
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
102
|
+
:param pulumi.Input[builtins.str] fault_domain: A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
|
103
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
104
|
+
|
105
|
+
|
106
|
+
** IMPORTANT **
|
107
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
108
|
+
:param pulumi.Input[builtins.str] gpu_memory_fabric_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique GPU Memory Fabric
|
109
|
+
:param pulumi.Input[builtins.str] health: The heathy state of the host
|
110
|
+
:param pulumi.Input[builtins.str] hpc_island_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique HPC Island
|
111
|
+
:param pulumi.Input[builtins.str] impacted_component_details: A list that contains impacted components related to an unhealthy host. An impacted component will be a free-form structure of key values pairs that will provide more or less details based on data tiering
|
112
|
+
:param pulumi.Input[builtins.str] instance_id: The public [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Virtual Machine or Bare Metal instance
|
113
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] lifecycle_details: A free-form description detailing why the host is in its current state.
|
114
|
+
:param pulumi.Input[builtins.str] local_block_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Local Block
|
115
|
+
:param pulumi.Input[builtins.str] network_block_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Network Block
|
116
|
+
:param pulumi.Input[Sequence[pulumi.Input['ComputeHostRecycleDetailArgs']]] recycle_details: Shows details about the last recycle performed on this host.
|
117
|
+
:param pulumi.Input[builtins.str] shape: The shape of host
|
118
|
+
:param pulumi.Input[builtins.str] state: The lifecycle state of the host
|
119
|
+
:param pulumi.Input[builtins.str] time_configuration_check: The date and time that the compute bare metal host configuration check was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
120
|
+
:param pulumi.Input[builtins.str] time_created: The date and time that the compute host record was created, in the format defined by [RFC3339](https://tools .ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
121
|
+
:param pulumi.Input[builtins.str] time_updated: The date and time that the compute host record was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
122
|
+
"""
|
123
|
+
if additional_data is not None:
|
124
|
+
pulumi.set(__self__, "additional_data", additional_data)
|
125
|
+
if availability_domain is not None:
|
126
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
127
|
+
if capacity_reservation_id is not None:
|
128
|
+
pulumi.set(__self__, "capacity_reservation_id", capacity_reservation_id)
|
129
|
+
if compartment_id is not None:
|
130
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
131
|
+
if compute_host_group_id is not None:
|
132
|
+
pulumi.set(__self__, "compute_host_group_id", compute_host_group_id)
|
133
|
+
if compute_host_id is not None:
|
134
|
+
pulumi.set(__self__, "compute_host_id", compute_host_id)
|
135
|
+
if configuration_datas is not None:
|
136
|
+
pulumi.set(__self__, "configuration_datas", configuration_datas)
|
137
|
+
if configuration_state is not None:
|
138
|
+
pulumi.set(__self__, "configuration_state", configuration_state)
|
139
|
+
if defined_tags is not None:
|
140
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
141
|
+
if display_name is not None:
|
142
|
+
pulumi.set(__self__, "display_name", display_name)
|
143
|
+
if fault_domain is not None:
|
144
|
+
pulumi.set(__self__, "fault_domain", fault_domain)
|
145
|
+
if freeform_tags is not None:
|
146
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
147
|
+
if gpu_memory_fabric_id is not None:
|
148
|
+
pulumi.set(__self__, "gpu_memory_fabric_id", gpu_memory_fabric_id)
|
149
|
+
if health is not None:
|
150
|
+
pulumi.set(__self__, "health", health)
|
151
|
+
if hpc_island_id is not None:
|
152
|
+
pulumi.set(__self__, "hpc_island_id", hpc_island_id)
|
153
|
+
if impacted_component_details is not None:
|
154
|
+
pulumi.set(__self__, "impacted_component_details", impacted_component_details)
|
155
|
+
if instance_id is not None:
|
156
|
+
pulumi.set(__self__, "instance_id", instance_id)
|
157
|
+
if lifecycle_details is not None:
|
158
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
159
|
+
if local_block_id is not None:
|
160
|
+
pulumi.set(__self__, "local_block_id", local_block_id)
|
161
|
+
if network_block_id is not None:
|
162
|
+
pulumi.set(__self__, "network_block_id", network_block_id)
|
163
|
+
if recycle_details is not None:
|
164
|
+
pulumi.set(__self__, "recycle_details", recycle_details)
|
165
|
+
if shape is not None:
|
166
|
+
pulumi.set(__self__, "shape", shape)
|
167
|
+
if state is not None:
|
168
|
+
pulumi.set(__self__, "state", state)
|
169
|
+
if time_configuration_check is not None:
|
170
|
+
pulumi.set(__self__, "time_configuration_check", time_configuration_check)
|
171
|
+
if time_created is not None:
|
172
|
+
pulumi.set(__self__, "time_created", time_created)
|
173
|
+
if time_updated is not None:
|
174
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
175
|
+
|
176
|
+
@property
|
177
|
+
@pulumi.getter(name="additionalData")
|
178
|
+
def additional_data(self) -> Optional[pulumi.Input[builtins.str]]:
|
179
|
+
"""
|
180
|
+
Additional data that can be exposed to the customer. Will include raw fault codes for strategic customers
|
181
|
+
"""
|
182
|
+
return pulumi.get(self, "additional_data")
|
183
|
+
|
184
|
+
@additional_data.setter
|
185
|
+
def additional_data(self, value: Optional[pulumi.Input[builtins.str]]):
|
186
|
+
pulumi.set(self, "additional_data", value)
|
187
|
+
|
188
|
+
@property
|
189
|
+
@pulumi.getter(name="availabilityDomain")
|
190
|
+
def availability_domain(self) -> Optional[pulumi.Input[builtins.str]]:
|
191
|
+
"""
|
192
|
+
The availability domain of the compute host. Example: `Uocm:US-CHICAGO-1-AD-2`
|
193
|
+
"""
|
194
|
+
return pulumi.get(self, "availability_domain")
|
195
|
+
|
196
|
+
@availability_domain.setter
|
197
|
+
def availability_domain(self, value: Optional[pulumi.Input[builtins.str]]):
|
198
|
+
pulumi.set(self, "availability_domain", value)
|
199
|
+
|
200
|
+
@property
|
201
|
+
@pulumi.getter(name="capacityReservationId")
|
202
|
+
def capacity_reservation_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
203
|
+
"""
|
204
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Capacity Reserver that is currently on host
|
205
|
+
"""
|
206
|
+
return pulumi.get(self, "capacity_reservation_id")
|
207
|
+
|
208
|
+
@capacity_reservation_id.setter
|
209
|
+
def capacity_reservation_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
210
|
+
pulumi.set(self, "capacity_reservation_id", value)
|
211
|
+
|
212
|
+
@property
|
213
|
+
@pulumi.getter(name="compartmentId")
|
214
|
+
def compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
215
|
+
"""
|
216
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment. This should always be the root compartment.
|
217
|
+
"""
|
218
|
+
return pulumi.get(self, "compartment_id")
|
219
|
+
|
220
|
+
@compartment_id.setter
|
221
|
+
def compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
222
|
+
pulumi.set(self, "compartment_id", value)
|
223
|
+
|
224
|
+
@property
|
225
|
+
@pulumi.getter(name="computeHostGroupId")
|
226
|
+
def compute_host_group_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
227
|
+
"""
|
228
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host group this host was attached to at the time of recycle.
|
229
|
+
"""
|
230
|
+
return pulumi.get(self, "compute_host_group_id")
|
231
|
+
|
232
|
+
@compute_host_group_id.setter
|
233
|
+
def compute_host_group_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
234
|
+
pulumi.set(self, "compute_host_group_id", value)
|
235
|
+
|
236
|
+
@property
|
237
|
+
@pulumi.getter(name="computeHostId")
|
238
|
+
def compute_host_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
239
|
+
"""
|
240
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host.
|
241
|
+
"""
|
242
|
+
return pulumi.get(self, "compute_host_id")
|
243
|
+
|
244
|
+
@compute_host_id.setter
|
245
|
+
def compute_host_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
246
|
+
pulumi.set(self, "compute_host_id", value)
|
247
|
+
|
248
|
+
@property
|
249
|
+
@pulumi.getter(name="configurationDatas")
|
250
|
+
def configuration_datas(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ComputeHostConfigurationDataArgs']]]]:
|
251
|
+
"""
|
252
|
+
Compute Host Configuration Data
|
253
|
+
"""
|
254
|
+
return pulumi.get(self, "configuration_datas")
|
255
|
+
|
256
|
+
@configuration_datas.setter
|
257
|
+
def configuration_datas(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ComputeHostConfigurationDataArgs']]]]):
|
258
|
+
pulumi.set(self, "configuration_datas", value)
|
259
|
+
|
260
|
+
@property
|
261
|
+
@pulumi.getter(name="configurationState")
|
262
|
+
def configuration_state(self) -> Optional[pulumi.Input[builtins.str]]:
|
263
|
+
"""
|
264
|
+
Configuration state of the Compute Bare Metal Host.
|
265
|
+
"""
|
266
|
+
return pulumi.get(self, "configuration_state")
|
267
|
+
|
268
|
+
@configuration_state.setter
|
269
|
+
def configuration_state(self, value: Optional[pulumi.Input[builtins.str]]):
|
270
|
+
pulumi.set(self, "configuration_state", value)
|
271
|
+
|
272
|
+
@property
|
273
|
+
@pulumi.getter(name="definedTags")
|
274
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
275
|
+
"""
|
276
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
277
|
+
"""
|
278
|
+
return pulumi.get(self, "defined_tags")
|
279
|
+
|
280
|
+
@defined_tags.setter
|
281
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
282
|
+
pulumi.set(self, "defined_tags", value)
|
283
|
+
|
284
|
+
@property
|
285
|
+
@pulumi.getter(name="displayName")
|
286
|
+
def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
287
|
+
"""
|
288
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
289
|
+
"""
|
290
|
+
return pulumi.get(self, "display_name")
|
291
|
+
|
292
|
+
@display_name.setter
|
293
|
+
def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
294
|
+
pulumi.set(self, "display_name", value)
|
295
|
+
|
296
|
+
@property
|
297
|
+
@pulumi.getter(name="faultDomain")
|
298
|
+
def fault_domain(self) -> Optional[pulumi.Input[builtins.str]]:
|
299
|
+
"""
|
300
|
+
A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
|
301
|
+
"""
|
302
|
+
return pulumi.get(self, "fault_domain")
|
303
|
+
|
304
|
+
@fault_domain.setter
|
305
|
+
def fault_domain(self, value: Optional[pulumi.Input[builtins.str]]):
|
306
|
+
pulumi.set(self, "fault_domain", value)
|
307
|
+
|
308
|
+
@property
|
309
|
+
@pulumi.getter(name="freeformTags")
|
310
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
311
|
+
"""
|
312
|
+
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
313
|
+
|
314
|
+
|
315
|
+
** IMPORTANT **
|
316
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
317
|
+
"""
|
318
|
+
return pulumi.get(self, "freeform_tags")
|
319
|
+
|
320
|
+
@freeform_tags.setter
|
321
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
322
|
+
pulumi.set(self, "freeform_tags", value)
|
323
|
+
|
324
|
+
@property
|
325
|
+
@pulumi.getter(name="gpuMemoryFabricId")
|
326
|
+
def gpu_memory_fabric_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
327
|
+
"""
|
328
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique GPU Memory Fabric
|
329
|
+
"""
|
330
|
+
return pulumi.get(self, "gpu_memory_fabric_id")
|
331
|
+
|
332
|
+
@gpu_memory_fabric_id.setter
|
333
|
+
def gpu_memory_fabric_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
334
|
+
pulumi.set(self, "gpu_memory_fabric_id", value)
|
335
|
+
|
336
|
+
@property
|
337
|
+
@pulumi.getter
|
338
|
+
def health(self) -> Optional[pulumi.Input[builtins.str]]:
|
339
|
+
"""
|
340
|
+
The heathy state of the host
|
341
|
+
"""
|
342
|
+
return pulumi.get(self, "health")
|
343
|
+
|
344
|
+
@health.setter
|
345
|
+
def health(self, value: Optional[pulumi.Input[builtins.str]]):
|
346
|
+
pulumi.set(self, "health", value)
|
347
|
+
|
348
|
+
@property
|
349
|
+
@pulumi.getter(name="hpcIslandId")
|
350
|
+
def hpc_island_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
351
|
+
"""
|
352
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique HPC Island
|
353
|
+
"""
|
354
|
+
return pulumi.get(self, "hpc_island_id")
|
355
|
+
|
356
|
+
@hpc_island_id.setter
|
357
|
+
def hpc_island_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
358
|
+
pulumi.set(self, "hpc_island_id", value)
|
359
|
+
|
360
|
+
@property
|
361
|
+
@pulumi.getter(name="impactedComponentDetails")
|
362
|
+
def impacted_component_details(self) -> Optional[pulumi.Input[builtins.str]]:
|
363
|
+
"""
|
364
|
+
A list that contains impacted components related to an unhealthy host. An impacted component will be a free-form structure of key values pairs that will provide more or less details based on data tiering
|
365
|
+
"""
|
366
|
+
return pulumi.get(self, "impacted_component_details")
|
367
|
+
|
368
|
+
@impacted_component_details.setter
|
369
|
+
def impacted_component_details(self, value: Optional[pulumi.Input[builtins.str]]):
|
370
|
+
pulumi.set(self, "impacted_component_details", value)
|
371
|
+
|
372
|
+
@property
|
373
|
+
@pulumi.getter(name="instanceId")
|
374
|
+
def instance_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
375
|
+
"""
|
376
|
+
The public [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Virtual Machine or Bare Metal instance
|
377
|
+
"""
|
378
|
+
return pulumi.get(self, "instance_id")
|
379
|
+
|
380
|
+
@instance_id.setter
|
381
|
+
def instance_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
382
|
+
pulumi.set(self, "instance_id", value)
|
383
|
+
|
384
|
+
@property
|
385
|
+
@pulumi.getter(name="lifecycleDetails")
|
386
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
387
|
+
"""
|
388
|
+
A free-form description detailing why the host is in its current state.
|
389
|
+
"""
|
390
|
+
return pulumi.get(self, "lifecycle_details")
|
391
|
+
|
392
|
+
@lifecycle_details.setter
|
393
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
394
|
+
pulumi.set(self, "lifecycle_details", value)
|
395
|
+
|
396
|
+
@property
|
397
|
+
@pulumi.getter(name="localBlockId")
|
398
|
+
def local_block_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
399
|
+
"""
|
400
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Local Block
|
401
|
+
"""
|
402
|
+
return pulumi.get(self, "local_block_id")
|
403
|
+
|
404
|
+
@local_block_id.setter
|
405
|
+
def local_block_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
406
|
+
pulumi.set(self, "local_block_id", value)
|
407
|
+
|
408
|
+
@property
|
409
|
+
@pulumi.getter(name="networkBlockId")
|
410
|
+
def network_block_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
411
|
+
"""
|
412
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Network Block
|
413
|
+
"""
|
414
|
+
return pulumi.get(self, "network_block_id")
|
415
|
+
|
416
|
+
@network_block_id.setter
|
417
|
+
def network_block_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
418
|
+
pulumi.set(self, "network_block_id", value)
|
419
|
+
|
420
|
+
@property
|
421
|
+
@pulumi.getter(name="recycleDetails")
|
422
|
+
def recycle_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ComputeHostRecycleDetailArgs']]]]:
|
423
|
+
"""
|
424
|
+
Shows details about the last recycle performed on this host.
|
425
|
+
"""
|
426
|
+
return pulumi.get(self, "recycle_details")
|
427
|
+
|
428
|
+
@recycle_details.setter
|
429
|
+
def recycle_details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ComputeHostRecycleDetailArgs']]]]):
|
430
|
+
pulumi.set(self, "recycle_details", value)
|
431
|
+
|
432
|
+
@property
|
433
|
+
@pulumi.getter
|
434
|
+
def shape(self) -> Optional[pulumi.Input[builtins.str]]:
|
435
|
+
"""
|
436
|
+
The shape of host
|
437
|
+
"""
|
438
|
+
return pulumi.get(self, "shape")
|
439
|
+
|
440
|
+
@shape.setter
|
441
|
+
def shape(self, value: Optional[pulumi.Input[builtins.str]]):
|
442
|
+
pulumi.set(self, "shape", value)
|
443
|
+
|
444
|
+
@property
|
445
|
+
@pulumi.getter
|
446
|
+
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
447
|
+
"""
|
448
|
+
The lifecycle state of the host
|
449
|
+
"""
|
450
|
+
return pulumi.get(self, "state")
|
451
|
+
|
452
|
+
@state.setter
|
453
|
+
def state(self, value: Optional[pulumi.Input[builtins.str]]):
|
454
|
+
pulumi.set(self, "state", value)
|
455
|
+
|
456
|
+
@property
|
457
|
+
@pulumi.getter(name="timeConfigurationCheck")
|
458
|
+
def time_configuration_check(self) -> Optional[pulumi.Input[builtins.str]]:
|
459
|
+
"""
|
460
|
+
The date and time that the compute bare metal host configuration check was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
461
|
+
"""
|
462
|
+
return pulumi.get(self, "time_configuration_check")
|
463
|
+
|
464
|
+
@time_configuration_check.setter
|
465
|
+
def time_configuration_check(self, value: Optional[pulumi.Input[builtins.str]]):
|
466
|
+
pulumi.set(self, "time_configuration_check", value)
|
467
|
+
|
468
|
+
@property
|
469
|
+
@pulumi.getter(name="timeCreated")
|
470
|
+
def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
|
471
|
+
"""
|
472
|
+
The date and time that the compute host record was created, in the format defined by [RFC3339](https://tools .ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
473
|
+
"""
|
474
|
+
return pulumi.get(self, "time_created")
|
475
|
+
|
476
|
+
@time_created.setter
|
477
|
+
def time_created(self, value: Optional[pulumi.Input[builtins.str]]):
|
478
|
+
pulumi.set(self, "time_created", value)
|
479
|
+
|
480
|
+
@property
|
481
|
+
@pulumi.getter(name="timeUpdated")
|
482
|
+
def time_updated(self) -> Optional[pulumi.Input[builtins.str]]:
|
483
|
+
"""
|
484
|
+
The date and time that the compute host record was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
485
|
+
"""
|
486
|
+
return pulumi.get(self, "time_updated")
|
487
|
+
|
488
|
+
@time_updated.setter
|
489
|
+
def time_updated(self, value: Optional[pulumi.Input[builtins.str]]):
|
490
|
+
pulumi.set(self, "time_updated", value)
|
491
|
+
|
492
|
+
|
493
|
+
@pulumi.type_token("oci:Core/computeHost:ComputeHost")
|
494
|
+
class ComputeHost(pulumi.CustomResource):
|
495
|
+
@overload
|
496
|
+
def __init__(__self__,
|
497
|
+
resource_name: str,
|
498
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
499
|
+
compute_host_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
500
|
+
compute_host_id: Optional[pulumi.Input[builtins.str]] = None,
|
501
|
+
__props__=None):
|
502
|
+
"""
|
503
|
+
This resource provides the Compute Host resource in Oracle Cloud Infrastructure Core service.
|
504
|
+
|
505
|
+
Customer can update the some fields for ComputeHost record
|
506
|
+
|
507
|
+
## Import
|
508
|
+
|
509
|
+
ComputeHosts can be imported using the `id`, e.g.
|
510
|
+
|
511
|
+
```sh
|
512
|
+
$ pulumi import oci:Core/computeHost:ComputeHost test_compute_host "id"
|
513
|
+
```
|
514
|
+
|
515
|
+
:param str resource_name: The name of the resource.
|
516
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
517
|
+
:param pulumi.Input[builtins.str] compute_host_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host group this host was attached to at the time of recycle.
|
518
|
+
:param pulumi.Input[builtins.str] compute_host_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host.
|
519
|
+
"""
|
520
|
+
...
|
521
|
+
@overload
|
522
|
+
def __init__(__self__,
|
523
|
+
resource_name: str,
|
524
|
+
args: ComputeHostArgs,
|
525
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
526
|
+
"""
|
527
|
+
This resource provides the Compute Host resource in Oracle Cloud Infrastructure Core service.
|
528
|
+
|
529
|
+
Customer can update the some fields for ComputeHost record
|
530
|
+
|
531
|
+
## Import
|
532
|
+
|
533
|
+
ComputeHosts can be imported using the `id`, e.g.
|
534
|
+
|
535
|
+
```sh
|
536
|
+
$ pulumi import oci:Core/computeHost:ComputeHost test_compute_host "id"
|
537
|
+
```
|
538
|
+
|
539
|
+
:param str resource_name: The name of the resource.
|
540
|
+
:param ComputeHostArgs args: The arguments to use to populate this resource's properties.
|
541
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
542
|
+
"""
|
543
|
+
...
|
544
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
545
|
+
resource_args, opts = _utilities.get_resource_args_opts(ComputeHostArgs, pulumi.ResourceOptions, *args, **kwargs)
|
546
|
+
if resource_args is not None:
|
547
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
548
|
+
else:
|
549
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
550
|
+
|
551
|
+
def _internal_init(__self__,
|
552
|
+
resource_name: str,
|
553
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
554
|
+
compute_host_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
555
|
+
compute_host_id: Optional[pulumi.Input[builtins.str]] = None,
|
556
|
+
__props__=None):
|
557
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
558
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
559
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
560
|
+
if opts.id is None:
|
561
|
+
if __props__ is not None:
|
562
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
563
|
+
__props__ = ComputeHostArgs.__new__(ComputeHostArgs)
|
564
|
+
|
565
|
+
__props__.__dict__["compute_host_group_id"] = compute_host_group_id
|
566
|
+
if compute_host_id is None and not opts.urn:
|
567
|
+
raise TypeError("Missing required property 'compute_host_id'")
|
568
|
+
__props__.__dict__["compute_host_id"] = compute_host_id
|
569
|
+
__props__.__dict__["additional_data"] = None
|
570
|
+
__props__.__dict__["availability_domain"] = None
|
571
|
+
__props__.__dict__["capacity_reservation_id"] = None
|
572
|
+
__props__.__dict__["compartment_id"] = None
|
573
|
+
__props__.__dict__["configuration_datas"] = None
|
574
|
+
__props__.__dict__["configuration_state"] = None
|
575
|
+
__props__.__dict__["defined_tags"] = None
|
576
|
+
__props__.__dict__["display_name"] = None
|
577
|
+
__props__.__dict__["fault_domain"] = None
|
578
|
+
__props__.__dict__["freeform_tags"] = None
|
579
|
+
__props__.__dict__["gpu_memory_fabric_id"] = None
|
580
|
+
__props__.__dict__["health"] = None
|
581
|
+
__props__.__dict__["hpc_island_id"] = None
|
582
|
+
__props__.__dict__["impacted_component_details"] = None
|
583
|
+
__props__.__dict__["instance_id"] = None
|
584
|
+
__props__.__dict__["lifecycle_details"] = None
|
585
|
+
__props__.__dict__["local_block_id"] = None
|
586
|
+
__props__.__dict__["network_block_id"] = None
|
587
|
+
__props__.__dict__["recycle_details"] = None
|
588
|
+
__props__.__dict__["shape"] = None
|
589
|
+
__props__.__dict__["state"] = None
|
590
|
+
__props__.__dict__["time_configuration_check"] = None
|
591
|
+
__props__.__dict__["time_created"] = None
|
592
|
+
__props__.__dict__["time_updated"] = None
|
593
|
+
super(ComputeHost, __self__).__init__(
|
594
|
+
'oci:Core/computeHost:ComputeHost',
|
595
|
+
resource_name,
|
596
|
+
__props__,
|
597
|
+
opts)
|
598
|
+
|
599
|
+
@staticmethod
|
600
|
+
def get(resource_name: str,
|
601
|
+
id: pulumi.Input[str],
|
602
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
603
|
+
additional_data: Optional[pulumi.Input[builtins.str]] = None,
|
604
|
+
availability_domain: Optional[pulumi.Input[builtins.str]] = None,
|
605
|
+
capacity_reservation_id: Optional[pulumi.Input[builtins.str]] = None,
|
606
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
607
|
+
compute_host_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
608
|
+
compute_host_id: Optional[pulumi.Input[builtins.str]] = None,
|
609
|
+
configuration_datas: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ComputeHostConfigurationDataArgs', 'ComputeHostConfigurationDataArgsDict']]]]] = None,
|
610
|
+
configuration_state: Optional[pulumi.Input[builtins.str]] = None,
|
611
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
612
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
613
|
+
fault_domain: Optional[pulumi.Input[builtins.str]] = None,
|
614
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
615
|
+
gpu_memory_fabric_id: Optional[pulumi.Input[builtins.str]] = None,
|
616
|
+
health: Optional[pulumi.Input[builtins.str]] = None,
|
617
|
+
hpc_island_id: Optional[pulumi.Input[builtins.str]] = None,
|
618
|
+
impacted_component_details: Optional[pulumi.Input[builtins.str]] = None,
|
619
|
+
instance_id: Optional[pulumi.Input[builtins.str]] = None,
|
620
|
+
lifecycle_details: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
621
|
+
local_block_id: Optional[pulumi.Input[builtins.str]] = None,
|
622
|
+
network_block_id: Optional[pulumi.Input[builtins.str]] = None,
|
623
|
+
recycle_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ComputeHostRecycleDetailArgs', 'ComputeHostRecycleDetailArgsDict']]]]] = None,
|
624
|
+
shape: Optional[pulumi.Input[builtins.str]] = None,
|
625
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
626
|
+
time_configuration_check: Optional[pulumi.Input[builtins.str]] = None,
|
627
|
+
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
628
|
+
time_updated: Optional[pulumi.Input[builtins.str]] = None) -> 'ComputeHost':
|
629
|
+
"""
|
630
|
+
Get an existing ComputeHost resource's state with the given name, id, and optional extra
|
631
|
+
properties used to qualify the lookup.
|
632
|
+
|
633
|
+
:param str resource_name: The unique name of the resulting resource.
|
634
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
635
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
636
|
+
:param pulumi.Input[builtins.str] additional_data: Additional data that can be exposed to the customer. Will include raw fault codes for strategic customers
|
637
|
+
:param pulumi.Input[builtins.str] availability_domain: The availability domain of the compute host. Example: `Uocm:US-CHICAGO-1-AD-2`
|
638
|
+
:param pulumi.Input[builtins.str] capacity_reservation_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Capacity Reserver that is currently on host
|
639
|
+
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment. This should always be the root compartment.
|
640
|
+
:param pulumi.Input[builtins.str] compute_host_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host group this host was attached to at the time of recycle.
|
641
|
+
:param pulumi.Input[builtins.str] compute_host_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host.
|
642
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ComputeHostConfigurationDataArgs', 'ComputeHostConfigurationDataArgsDict']]]] configuration_datas: Compute Host Configuration Data
|
643
|
+
:param pulumi.Input[builtins.str] configuration_state: Configuration state of the Compute Bare Metal Host.
|
644
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
645
|
+
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
646
|
+
:param pulumi.Input[builtins.str] fault_domain: A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
|
647
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
648
|
+
|
649
|
+
|
650
|
+
** IMPORTANT **
|
651
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
652
|
+
:param pulumi.Input[builtins.str] gpu_memory_fabric_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique GPU Memory Fabric
|
653
|
+
:param pulumi.Input[builtins.str] health: The heathy state of the host
|
654
|
+
:param pulumi.Input[builtins.str] hpc_island_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique HPC Island
|
655
|
+
:param pulumi.Input[builtins.str] impacted_component_details: A list that contains impacted components related to an unhealthy host. An impacted component will be a free-form structure of key values pairs that will provide more or less details based on data tiering
|
656
|
+
:param pulumi.Input[builtins.str] instance_id: The public [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Virtual Machine or Bare Metal instance
|
657
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] lifecycle_details: A free-form description detailing why the host is in its current state.
|
658
|
+
:param pulumi.Input[builtins.str] local_block_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Local Block
|
659
|
+
:param pulumi.Input[builtins.str] network_block_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Network Block
|
660
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ComputeHostRecycleDetailArgs', 'ComputeHostRecycleDetailArgsDict']]]] recycle_details: Shows details about the last recycle performed on this host.
|
661
|
+
:param pulumi.Input[builtins.str] shape: The shape of host
|
662
|
+
:param pulumi.Input[builtins.str] state: The lifecycle state of the host
|
663
|
+
:param pulumi.Input[builtins.str] time_configuration_check: The date and time that the compute bare metal host configuration check was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
664
|
+
:param pulumi.Input[builtins.str] time_created: The date and time that the compute host record was created, in the format defined by [RFC3339](https://tools .ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
665
|
+
:param pulumi.Input[builtins.str] time_updated: The date and time that the compute host record was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
666
|
+
"""
|
667
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
668
|
+
|
669
|
+
__props__ = _ComputeHostState.__new__(_ComputeHostState)
|
670
|
+
|
671
|
+
__props__.__dict__["additional_data"] = additional_data
|
672
|
+
__props__.__dict__["availability_domain"] = availability_domain
|
673
|
+
__props__.__dict__["capacity_reservation_id"] = capacity_reservation_id
|
674
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
675
|
+
__props__.__dict__["compute_host_group_id"] = compute_host_group_id
|
676
|
+
__props__.__dict__["compute_host_id"] = compute_host_id
|
677
|
+
__props__.__dict__["configuration_datas"] = configuration_datas
|
678
|
+
__props__.__dict__["configuration_state"] = configuration_state
|
679
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
680
|
+
__props__.__dict__["display_name"] = display_name
|
681
|
+
__props__.__dict__["fault_domain"] = fault_domain
|
682
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
683
|
+
__props__.__dict__["gpu_memory_fabric_id"] = gpu_memory_fabric_id
|
684
|
+
__props__.__dict__["health"] = health
|
685
|
+
__props__.__dict__["hpc_island_id"] = hpc_island_id
|
686
|
+
__props__.__dict__["impacted_component_details"] = impacted_component_details
|
687
|
+
__props__.__dict__["instance_id"] = instance_id
|
688
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
689
|
+
__props__.__dict__["local_block_id"] = local_block_id
|
690
|
+
__props__.__dict__["network_block_id"] = network_block_id
|
691
|
+
__props__.__dict__["recycle_details"] = recycle_details
|
692
|
+
__props__.__dict__["shape"] = shape
|
693
|
+
__props__.__dict__["state"] = state
|
694
|
+
__props__.__dict__["time_configuration_check"] = time_configuration_check
|
695
|
+
__props__.__dict__["time_created"] = time_created
|
696
|
+
__props__.__dict__["time_updated"] = time_updated
|
697
|
+
return ComputeHost(resource_name, opts=opts, __props__=__props__)
|
698
|
+
|
699
|
+
@property
|
700
|
+
@pulumi.getter(name="additionalData")
|
701
|
+
def additional_data(self) -> pulumi.Output[builtins.str]:
|
702
|
+
"""
|
703
|
+
Additional data that can be exposed to the customer. Will include raw fault codes for strategic customers
|
704
|
+
"""
|
705
|
+
return pulumi.get(self, "additional_data")
|
706
|
+
|
707
|
+
@property
|
708
|
+
@pulumi.getter(name="availabilityDomain")
|
709
|
+
def availability_domain(self) -> pulumi.Output[builtins.str]:
|
710
|
+
"""
|
711
|
+
The availability domain of the compute host. Example: `Uocm:US-CHICAGO-1-AD-2`
|
712
|
+
"""
|
713
|
+
return pulumi.get(self, "availability_domain")
|
714
|
+
|
715
|
+
@property
|
716
|
+
@pulumi.getter(name="capacityReservationId")
|
717
|
+
def capacity_reservation_id(self) -> pulumi.Output[builtins.str]:
|
718
|
+
"""
|
719
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Capacity Reserver that is currently on host
|
720
|
+
"""
|
721
|
+
return pulumi.get(self, "capacity_reservation_id")
|
722
|
+
|
723
|
+
@property
|
724
|
+
@pulumi.getter(name="compartmentId")
|
725
|
+
def compartment_id(self) -> pulumi.Output[builtins.str]:
|
726
|
+
"""
|
727
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment. This should always be the root compartment.
|
728
|
+
"""
|
729
|
+
return pulumi.get(self, "compartment_id")
|
730
|
+
|
731
|
+
@property
|
732
|
+
@pulumi.getter(name="computeHostGroupId")
|
733
|
+
def compute_host_group_id(self) -> pulumi.Output[builtins.str]:
|
734
|
+
"""
|
735
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host group this host was attached to at the time of recycle.
|
736
|
+
"""
|
737
|
+
return pulumi.get(self, "compute_host_group_id")
|
738
|
+
|
739
|
+
@property
|
740
|
+
@pulumi.getter(name="computeHostId")
|
741
|
+
def compute_host_id(self) -> pulumi.Output[builtins.str]:
|
742
|
+
"""
|
743
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host.
|
744
|
+
"""
|
745
|
+
return pulumi.get(self, "compute_host_id")
|
746
|
+
|
747
|
+
@property
|
748
|
+
@pulumi.getter(name="configurationDatas")
|
749
|
+
def configuration_datas(self) -> pulumi.Output[Sequence['outputs.ComputeHostConfigurationData']]:
|
750
|
+
"""
|
751
|
+
Compute Host Configuration Data
|
752
|
+
"""
|
753
|
+
return pulumi.get(self, "configuration_datas")
|
754
|
+
|
755
|
+
@property
|
756
|
+
@pulumi.getter(name="configurationState")
|
757
|
+
def configuration_state(self) -> pulumi.Output[builtins.str]:
|
758
|
+
"""
|
759
|
+
Configuration state of the Compute Bare Metal Host.
|
760
|
+
"""
|
761
|
+
return pulumi.get(self, "configuration_state")
|
762
|
+
|
763
|
+
@property
|
764
|
+
@pulumi.getter(name="definedTags")
|
765
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
766
|
+
"""
|
767
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
768
|
+
"""
|
769
|
+
return pulumi.get(self, "defined_tags")
|
770
|
+
|
771
|
+
@property
|
772
|
+
@pulumi.getter(name="displayName")
|
773
|
+
def display_name(self) -> pulumi.Output[builtins.str]:
|
774
|
+
"""
|
775
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
776
|
+
"""
|
777
|
+
return pulumi.get(self, "display_name")
|
778
|
+
|
779
|
+
@property
|
780
|
+
@pulumi.getter(name="faultDomain")
|
781
|
+
def fault_domain(self) -> pulumi.Output[builtins.str]:
|
782
|
+
"""
|
783
|
+
A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
|
784
|
+
"""
|
785
|
+
return pulumi.get(self, "fault_domain")
|
786
|
+
|
787
|
+
@property
|
788
|
+
@pulumi.getter(name="freeformTags")
|
789
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
790
|
+
"""
|
791
|
+
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
792
|
+
|
793
|
+
|
794
|
+
** IMPORTANT **
|
795
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
796
|
+
"""
|
797
|
+
return pulumi.get(self, "freeform_tags")
|
798
|
+
|
799
|
+
@property
|
800
|
+
@pulumi.getter(name="gpuMemoryFabricId")
|
801
|
+
def gpu_memory_fabric_id(self) -> pulumi.Output[builtins.str]:
|
802
|
+
"""
|
803
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique GPU Memory Fabric
|
804
|
+
"""
|
805
|
+
return pulumi.get(self, "gpu_memory_fabric_id")
|
806
|
+
|
807
|
+
@property
|
808
|
+
@pulumi.getter
|
809
|
+
def health(self) -> pulumi.Output[builtins.str]:
|
810
|
+
"""
|
811
|
+
The heathy state of the host
|
812
|
+
"""
|
813
|
+
return pulumi.get(self, "health")
|
814
|
+
|
815
|
+
@property
|
816
|
+
@pulumi.getter(name="hpcIslandId")
|
817
|
+
def hpc_island_id(self) -> pulumi.Output[builtins.str]:
|
818
|
+
"""
|
819
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique HPC Island
|
820
|
+
"""
|
821
|
+
return pulumi.get(self, "hpc_island_id")
|
822
|
+
|
823
|
+
@property
|
824
|
+
@pulumi.getter(name="impactedComponentDetails")
|
825
|
+
def impacted_component_details(self) -> pulumi.Output[builtins.str]:
|
826
|
+
"""
|
827
|
+
A list that contains impacted components related to an unhealthy host. An impacted component will be a free-form structure of key values pairs that will provide more or less details based on data tiering
|
828
|
+
"""
|
829
|
+
return pulumi.get(self, "impacted_component_details")
|
830
|
+
|
831
|
+
@property
|
832
|
+
@pulumi.getter(name="instanceId")
|
833
|
+
def instance_id(self) -> pulumi.Output[builtins.str]:
|
834
|
+
"""
|
835
|
+
The public [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Virtual Machine or Bare Metal instance
|
836
|
+
"""
|
837
|
+
return pulumi.get(self, "instance_id")
|
838
|
+
|
839
|
+
@property
|
840
|
+
@pulumi.getter(name="lifecycleDetails")
|
841
|
+
def lifecycle_details(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
842
|
+
"""
|
843
|
+
A free-form description detailing why the host is in its current state.
|
844
|
+
"""
|
845
|
+
return pulumi.get(self, "lifecycle_details")
|
846
|
+
|
847
|
+
@property
|
848
|
+
@pulumi.getter(name="localBlockId")
|
849
|
+
def local_block_id(self) -> pulumi.Output[builtins.str]:
|
850
|
+
"""
|
851
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Local Block
|
852
|
+
"""
|
853
|
+
return pulumi.get(self, "local_block_id")
|
854
|
+
|
855
|
+
@property
|
856
|
+
@pulumi.getter(name="networkBlockId")
|
857
|
+
def network_block_id(self) -> pulumi.Output[builtins.str]:
|
858
|
+
"""
|
859
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Network Block
|
860
|
+
"""
|
861
|
+
return pulumi.get(self, "network_block_id")
|
862
|
+
|
863
|
+
@property
|
864
|
+
@pulumi.getter(name="recycleDetails")
|
865
|
+
def recycle_details(self) -> pulumi.Output[Sequence['outputs.ComputeHostRecycleDetail']]:
|
866
|
+
"""
|
867
|
+
Shows details about the last recycle performed on this host.
|
868
|
+
"""
|
869
|
+
return pulumi.get(self, "recycle_details")
|
870
|
+
|
871
|
+
@property
|
872
|
+
@pulumi.getter
|
873
|
+
def shape(self) -> pulumi.Output[builtins.str]:
|
874
|
+
"""
|
875
|
+
The shape of host
|
876
|
+
"""
|
877
|
+
return pulumi.get(self, "shape")
|
878
|
+
|
879
|
+
@property
|
880
|
+
@pulumi.getter
|
881
|
+
def state(self) -> pulumi.Output[builtins.str]:
|
882
|
+
"""
|
883
|
+
The lifecycle state of the host
|
884
|
+
"""
|
885
|
+
return pulumi.get(self, "state")
|
886
|
+
|
887
|
+
@property
|
888
|
+
@pulumi.getter(name="timeConfigurationCheck")
|
889
|
+
def time_configuration_check(self) -> pulumi.Output[builtins.str]:
|
890
|
+
"""
|
891
|
+
The date and time that the compute bare metal host configuration check was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
892
|
+
"""
|
893
|
+
return pulumi.get(self, "time_configuration_check")
|
894
|
+
|
895
|
+
@property
|
896
|
+
@pulumi.getter(name="timeCreated")
|
897
|
+
def time_created(self) -> pulumi.Output[builtins.str]:
|
898
|
+
"""
|
899
|
+
The date and time that the compute host record was created, in the format defined by [RFC3339](https://tools .ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
900
|
+
"""
|
901
|
+
return pulumi.get(self, "time_created")
|
902
|
+
|
903
|
+
@property
|
904
|
+
@pulumi.getter(name="timeUpdated")
|
905
|
+
def time_updated(self) -> pulumi.Output[builtins.str]:
|
906
|
+
"""
|
907
|
+
The date and time that the compute host record was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
908
|
+
"""
|
909
|
+
return pulumi.get(self, "time_updated")
|
910
|
+
|