pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.1.0a1751948424__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +299 -0
- pulumi_oci/capacitymanagement/__init__.py +18 -0
- pulumi_oci/capacitymanagement/_inputs.py +459 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
- pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
- pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
- pulumi_oci/capacitymanagement/outputs.py +3499 -1230
- pulumi_oci/containerengine/get_cluster.py +7 -7
- pulumi_oci/core/__init__.py +4 -0
- pulumi_oci/core/_inputs.py +477 -0
- pulumi_oci/core/compute_host.py +910 -0
- pulumi_oci/core/compute_host_group.py +648 -0
- pulumi_oci/core/dedicated_vm_host.py +56 -0
- pulumi_oci/core/get_compute_host.py +72 -1
- pulumi_oci/core/get_compute_host_group.py +269 -0
- pulumi_oci/core/get_compute_host_groups.py +148 -0
- pulumi_oci/core/get_compute_hosts.py +37 -1
- pulumi_oci/core/get_dedicated_vm_host.py +29 -1
- pulumi_oci/core/outputs.py +912 -24
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +739 -52
- pulumi_oci/database/autonomous_container_database.py +141 -12
- pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
- pulumi_oci/database/autonomous_database_software_image.py +28 -0
- pulumi_oci/database/autonomous_vm_cluster.py +28 -0
- pulumi_oci/database/backup_destination.py +28 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +82 -7
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/database_software_image.py +28 -0
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/db_home.py +28 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/db_system.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
- pulumi_oci/database/external_container_database.py +28 -0
- pulumi_oci/database/external_database_connector.py +28 -0
- pulumi_oci/database/external_non_container_database.py +28 -0
- pulumi_oci/database/external_pluggable_database.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +52 -2
- pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
- pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
- pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
- pulumi_oci/database/get_backup_destination.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_database_software_image.py +15 -1
- pulumi_oci/database/get_db_home.py +15 -1
- pulumi_oci/database/get_db_node.py +15 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_external_container_database.py +15 -1
- pulumi_oci/database/get_external_database_connector.py +15 -1
- pulumi_oci/database/get_external_non_container_database.py +15 -1
- pulumi_oci/database/get_external_pluggable_database.py +15 -1
- pulumi_oci/database/get_key_store.py +15 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_oneoff_patch.py +15 -1
- pulumi_oci/database/get_pluggable_database.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/get_vm_cluster_network.py +15 -1
- pulumi_oci/database/key_store.py +28 -0
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/oneoff_patch.py +28 -0
- pulumi_oci/database/outputs.py +1624 -54
- pulumi_oci/database/pluggable_database.py +28 -0
- pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
- pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
- pulumi_oci/database/vm_cluster.py +28 -0
- pulumi_oci/database/vm_cluster_network.py +28 -0
- pulumi_oci/databasemanagement/__init__.py +7 -0
- pulumi_oci/databasemanagement/_inputs.py +196 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
- pulumi_oci/databasemanagement/outputs.py +1330 -19
- pulumi_oci/databasemigration/_inputs.py +94 -0
- pulumi_oci/databasemigration/get_migration.py +15 -1
- pulumi_oci/databasemigration/get_migrations.py +15 -1
- pulumi_oci/databasemigration/job.py +28 -0
- pulumi_oci/databasemigration/migration.py +52 -3
- pulumi_oci/databasemigration/outputs.py +73 -0
- pulumi_oci/dataflow/_inputs.py +20 -0
- pulumi_oci/dataflow/outputs.py +36 -0
- pulumi_oci/fleetappsmanagement/__init__.py +48 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
- pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
- pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
- pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
- pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
- pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
- pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
- pulumi_oci/fleetappsmanagement/get_property.py +1 -1
- pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
- pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
- pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
- pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
- pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
- pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
- pulumi_oci/fleetappsmanagement/patch.py +980 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
- pulumi_oci/fleetappsmanagement/property.py +28 -27
- pulumi_oci/fleetappsmanagement/provision.py +1195 -0
- pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
- pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
- pulumi_oci/fleetappsmanagement/task_record.py +786 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
- pulumi_oci/goldengate/_inputs.py +449 -3
- pulumi_oci/goldengate/connection.py +200 -56
- pulumi_oci/goldengate/get_connection.py +59 -28
- pulumi_oci/goldengate/get_connections.py +0 -3
- pulumi_oci/goldengate/outputs.py +886 -22
- pulumi_oci/loadbalancer/_inputs.py +24 -6
- pulumi_oci/loadbalancer/backend.py +35 -7
- pulumi_oci/loadbalancer/backend_set.py +35 -7
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/loadbalancer/load_balancer.py +81 -0
- pulumi_oci/loadbalancer/outputs.py +29 -10
- pulumi_oci/loganalytics/__init__.py +3 -0
- pulumi_oci/loganalytics/_inputs.py +123 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
- pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
- pulumi_oci/loganalytics/outputs.py +258 -0
- pulumi_oci/mysql/_inputs.py +274 -0
- pulumi_oci/mysql/get_mysql_backup.py +29 -1
- pulumi_oci/mysql/get_mysql_backups.py +23 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/get_replica.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +98 -2
- pulumi_oci/mysql/mysql_db_system.py +57 -0
- pulumi_oci/mysql/outputs.py +594 -0
- pulumi_oci/mysql/replica.py +28 -0
- pulumi_oci/nosql/__init__.py +2 -0
- pulumi_oci/nosql/_inputs.py +129 -3
- pulumi_oci/nosql/configuration.py +383 -0
- pulumi_oci/nosql/get_configuration.py +162 -0
- pulumi_oci/nosql/index.py +7 -7
- pulumi_oci/nosql/outputs.py +164 -2
- pulumi_oci/nosql/table_replica.py +9 -9
- pulumi_oci/oci/__init__.py +56 -0
- pulumi_oci/oci/_inputs.py +1615 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
- pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
- pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
- pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
- pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
- pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
- pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
- pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
- pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
- pulumi_oci/oci/outputs.py +5617 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +8 -0
- pulumi_oci/redis/_inputs.py +179 -0
- pulumi_oci/redis/get_oci_cache_user.py +283 -0
- pulumi_oci/redis/get_oci_cache_users.py +192 -0
- pulumi_oci/redis/oci_cache_user.py +695 -0
- pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
- pulumi_oci/redis/outputs.py +330 -0
- pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
- pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
@@ -164,7 +164,9 @@ class DedicatedVmHostArgs:
|
|
164
164
|
class _DedicatedVmHostState:
|
165
165
|
def __init__(__self__, *,
|
166
166
|
availability_domain: Optional[pulumi.Input[builtins.str]] = None,
|
167
|
+
capacity_bins: Optional[pulumi.Input[Sequence[pulumi.Input['DedicatedVmHostCapacityBinArgs']]]] = None,
|
167
168
|
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
169
|
+
compute_bare_metal_host_id: Optional[pulumi.Input[builtins.str]] = None,
|
168
170
|
dedicated_vm_host_shape: Optional[pulumi.Input[builtins.str]] = None,
|
169
171
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
170
172
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -180,7 +182,9 @@ class _DedicatedVmHostState:
|
|
180
182
|
"""
|
181
183
|
Input properties used for looking up and filtering DedicatedVmHost resources.
|
182
184
|
:param pulumi.Input[builtins.str] availability_domain: The availability domain of the dedicated virtual machine host. Example: `Uocm:PHX-AD-1`
|
185
|
+
:param pulumi.Input[Sequence[pulumi.Input['DedicatedVmHostCapacityBinArgs']]] capacity_bins: A list of total and remaining CPU & memory per capacity bucket.
|
183
186
|
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The OCID of the compartment.
|
187
|
+
:param pulumi.Input[builtins.str] compute_bare_metal_host_id: The OCID of the compute bare metal host.
|
184
188
|
:param pulumi.Input[builtins.str] dedicated_vm_host_shape: The dedicated virtual machine host shape. The shape determines the number of CPUs and other resources available for VM instances launched on the dedicated virtual machine host.
|
185
189
|
: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"}`
|
186
190
|
: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.
|
@@ -200,8 +204,12 @@ class _DedicatedVmHostState:
|
|
200
204
|
"""
|
201
205
|
if availability_domain is not None:
|
202
206
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
207
|
+
if capacity_bins is not None:
|
208
|
+
pulumi.set(__self__, "capacity_bins", capacity_bins)
|
203
209
|
if compartment_id is not None:
|
204
210
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
211
|
+
if compute_bare_metal_host_id is not None:
|
212
|
+
pulumi.set(__self__, "compute_bare_metal_host_id", compute_bare_metal_host_id)
|
205
213
|
if dedicated_vm_host_shape is not None:
|
206
214
|
pulumi.set(__self__, "dedicated_vm_host_shape", dedicated_vm_host_shape)
|
207
215
|
if defined_tags is not None:
|
@@ -239,6 +247,18 @@ class _DedicatedVmHostState:
|
|
239
247
|
def availability_domain(self, value: Optional[pulumi.Input[builtins.str]]):
|
240
248
|
pulumi.set(self, "availability_domain", value)
|
241
249
|
|
250
|
+
@property
|
251
|
+
@pulumi.getter(name="capacityBins")
|
252
|
+
def capacity_bins(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DedicatedVmHostCapacityBinArgs']]]]:
|
253
|
+
"""
|
254
|
+
A list of total and remaining CPU & memory per capacity bucket.
|
255
|
+
"""
|
256
|
+
return pulumi.get(self, "capacity_bins")
|
257
|
+
|
258
|
+
@capacity_bins.setter
|
259
|
+
def capacity_bins(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DedicatedVmHostCapacityBinArgs']]]]):
|
260
|
+
pulumi.set(self, "capacity_bins", value)
|
261
|
+
|
242
262
|
@property
|
243
263
|
@pulumi.getter(name="compartmentId")
|
244
264
|
def compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -251,6 +271,18 @@ class _DedicatedVmHostState:
|
|
251
271
|
def compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
252
272
|
pulumi.set(self, "compartment_id", value)
|
253
273
|
|
274
|
+
@property
|
275
|
+
@pulumi.getter(name="computeBareMetalHostId")
|
276
|
+
def compute_bare_metal_host_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
277
|
+
"""
|
278
|
+
The OCID of the compute bare metal host.
|
279
|
+
"""
|
280
|
+
return pulumi.get(self, "compute_bare_metal_host_id")
|
281
|
+
|
282
|
+
@compute_bare_metal_host_id.setter
|
283
|
+
def compute_bare_metal_host_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
284
|
+
pulumi.set(self, "compute_bare_metal_host_id", value)
|
285
|
+
|
254
286
|
@property
|
255
287
|
@pulumi.getter(name="dedicatedVmHostShape")
|
256
288
|
def dedicated_vm_host_shape(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -562,6 +594,8 @@ class DedicatedVmHost(pulumi.CustomResource):
|
|
562
594
|
__props__.__dict__["fault_domain"] = fault_domain
|
563
595
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
564
596
|
__props__.__dict__["placement_constraint_details"] = placement_constraint_details
|
597
|
+
__props__.__dict__["capacity_bins"] = None
|
598
|
+
__props__.__dict__["compute_bare_metal_host_id"] = None
|
565
599
|
__props__.__dict__["remaining_memory_in_gbs"] = None
|
566
600
|
__props__.__dict__["remaining_ocpus"] = None
|
567
601
|
__props__.__dict__["state"] = None
|
@@ -579,7 +613,9 @@ class DedicatedVmHost(pulumi.CustomResource):
|
|
579
613
|
id: pulumi.Input[str],
|
580
614
|
opts: Optional[pulumi.ResourceOptions] = None,
|
581
615
|
availability_domain: Optional[pulumi.Input[builtins.str]] = None,
|
616
|
+
capacity_bins: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DedicatedVmHostCapacityBinArgs', 'DedicatedVmHostCapacityBinArgsDict']]]]] = None,
|
582
617
|
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
618
|
+
compute_bare_metal_host_id: Optional[pulumi.Input[builtins.str]] = None,
|
583
619
|
dedicated_vm_host_shape: Optional[pulumi.Input[builtins.str]] = None,
|
584
620
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
585
621
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -600,7 +636,9 @@ class DedicatedVmHost(pulumi.CustomResource):
|
|
600
636
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
601
637
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
602
638
|
:param pulumi.Input[builtins.str] availability_domain: The availability domain of the dedicated virtual machine host. Example: `Uocm:PHX-AD-1`
|
639
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['DedicatedVmHostCapacityBinArgs', 'DedicatedVmHostCapacityBinArgsDict']]]] capacity_bins: A list of total and remaining CPU & memory per capacity bucket.
|
603
640
|
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The OCID of the compartment.
|
641
|
+
:param pulumi.Input[builtins.str] compute_bare_metal_host_id: The OCID of the compute bare metal host.
|
604
642
|
:param pulumi.Input[builtins.str] dedicated_vm_host_shape: The dedicated virtual machine host shape. The shape determines the number of CPUs and other resources available for VM instances launched on the dedicated virtual machine host.
|
605
643
|
: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"}`
|
606
644
|
: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.
|
@@ -623,7 +661,9 @@ class DedicatedVmHost(pulumi.CustomResource):
|
|
623
661
|
__props__ = _DedicatedVmHostState.__new__(_DedicatedVmHostState)
|
624
662
|
|
625
663
|
__props__.__dict__["availability_domain"] = availability_domain
|
664
|
+
__props__.__dict__["capacity_bins"] = capacity_bins
|
626
665
|
__props__.__dict__["compartment_id"] = compartment_id
|
666
|
+
__props__.__dict__["compute_bare_metal_host_id"] = compute_bare_metal_host_id
|
627
667
|
__props__.__dict__["dedicated_vm_host_shape"] = dedicated_vm_host_shape
|
628
668
|
__props__.__dict__["defined_tags"] = defined_tags
|
629
669
|
__props__.__dict__["display_name"] = display_name
|
@@ -646,6 +686,14 @@ class DedicatedVmHost(pulumi.CustomResource):
|
|
646
686
|
"""
|
647
687
|
return pulumi.get(self, "availability_domain")
|
648
688
|
|
689
|
+
@property
|
690
|
+
@pulumi.getter(name="capacityBins")
|
691
|
+
def capacity_bins(self) -> pulumi.Output[Sequence['outputs.DedicatedVmHostCapacityBin']]:
|
692
|
+
"""
|
693
|
+
A list of total and remaining CPU & memory per capacity bucket.
|
694
|
+
"""
|
695
|
+
return pulumi.get(self, "capacity_bins")
|
696
|
+
|
649
697
|
@property
|
650
698
|
@pulumi.getter(name="compartmentId")
|
651
699
|
def compartment_id(self) -> pulumi.Output[builtins.str]:
|
@@ -654,6 +702,14 @@ class DedicatedVmHost(pulumi.CustomResource):
|
|
654
702
|
"""
|
655
703
|
return pulumi.get(self, "compartment_id")
|
656
704
|
|
705
|
+
@property
|
706
|
+
@pulumi.getter(name="computeBareMetalHostId")
|
707
|
+
def compute_bare_metal_host_id(self) -> pulumi.Output[builtins.str]:
|
708
|
+
"""
|
709
|
+
The OCID of the compute bare metal host.
|
710
|
+
"""
|
711
|
+
return pulumi.get(self, "compute_bare_metal_host_id")
|
712
|
+
|
657
713
|
@property
|
658
714
|
@pulumi.getter(name="dedicatedVmHostShape")
|
659
715
|
def dedicated_vm_host_shape(self) -> pulumi.Output[builtins.str]:
|
@@ -14,6 +14,7 @@ if sys.version_info >= (3, 11):
|
|
14
14
|
else:
|
15
15
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
16
|
from .. import _utilities
|
17
|
+
from . import outputs
|
17
18
|
|
18
19
|
__all__ = [
|
19
20
|
'GetComputeHostResult',
|
@@ -27,7 +28,7 @@ class GetComputeHostResult:
|
|
27
28
|
"""
|
28
29
|
A collection of values returned by getComputeHost.
|
29
30
|
"""
|
30
|
-
def __init__(__self__, additional_data=None, availability_domain=None, capacity_reservation_id=None, compartment_id=None, compute_host_id=None, defined_tags=None, display_name=None, fault_domain=None, freeform_tags=None, gpu_memory_fabric_id=None, health=None, hpc_island_id=None, id=None, impacted_component_details=None, instance_id=None, lifecycle_details=None, local_block_id=None, network_block_id=None, shape=None, state=None, time_created=None, time_updated=None):
|
31
|
+
def __init__(__self__, additional_data=None, availability_domain=None, capacity_reservation_id=None, compartment_id=None, compute_host_group_id=None, compute_host_id=None, configuration_datas=None, configuration_state=None, defined_tags=None, display_name=None, fault_domain=None, freeform_tags=None, gpu_memory_fabric_id=None, health=None, hpc_island_id=None, id=None, impacted_component_details=None, instance_id=None, lifecycle_details=None, local_block_id=None, network_block_id=None, recycle_details=None, shape=None, state=None, time_configuration_check=None, time_created=None, time_updated=None):
|
31
32
|
if additional_data and not isinstance(additional_data, str):
|
32
33
|
raise TypeError("Expected argument 'additional_data' to be a str")
|
33
34
|
pulumi.set(__self__, "additional_data", additional_data)
|
@@ -40,9 +41,18 @@ class GetComputeHostResult:
|
|
40
41
|
if compartment_id and not isinstance(compartment_id, str):
|
41
42
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
42
43
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
44
|
+
if compute_host_group_id and not isinstance(compute_host_group_id, str):
|
45
|
+
raise TypeError("Expected argument 'compute_host_group_id' to be a str")
|
46
|
+
pulumi.set(__self__, "compute_host_group_id", compute_host_group_id)
|
43
47
|
if compute_host_id and not isinstance(compute_host_id, str):
|
44
48
|
raise TypeError("Expected argument 'compute_host_id' to be a str")
|
45
49
|
pulumi.set(__self__, "compute_host_id", compute_host_id)
|
50
|
+
if configuration_datas and not isinstance(configuration_datas, list):
|
51
|
+
raise TypeError("Expected argument 'configuration_datas' to be a list")
|
52
|
+
pulumi.set(__self__, "configuration_datas", configuration_datas)
|
53
|
+
if configuration_state and not isinstance(configuration_state, str):
|
54
|
+
raise TypeError("Expected argument 'configuration_state' to be a str")
|
55
|
+
pulumi.set(__self__, "configuration_state", configuration_state)
|
46
56
|
if defined_tags and not isinstance(defined_tags, dict):
|
47
57
|
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
48
58
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
@@ -82,12 +92,18 @@ class GetComputeHostResult:
|
|
82
92
|
if network_block_id and not isinstance(network_block_id, str):
|
83
93
|
raise TypeError("Expected argument 'network_block_id' to be a str")
|
84
94
|
pulumi.set(__self__, "network_block_id", network_block_id)
|
95
|
+
if recycle_details and not isinstance(recycle_details, list):
|
96
|
+
raise TypeError("Expected argument 'recycle_details' to be a list")
|
97
|
+
pulumi.set(__self__, "recycle_details", recycle_details)
|
85
98
|
if shape and not isinstance(shape, str):
|
86
99
|
raise TypeError("Expected argument 'shape' to be a str")
|
87
100
|
pulumi.set(__self__, "shape", shape)
|
88
101
|
if state and not isinstance(state, str):
|
89
102
|
raise TypeError("Expected argument 'state' to be a str")
|
90
103
|
pulumi.set(__self__, "state", state)
|
104
|
+
if time_configuration_check and not isinstance(time_configuration_check, str):
|
105
|
+
raise TypeError("Expected argument 'time_configuration_check' to be a str")
|
106
|
+
pulumi.set(__self__, "time_configuration_check", time_configuration_check)
|
91
107
|
if time_created and not isinstance(time_created, str):
|
92
108
|
raise TypeError("Expected argument 'time_created' to be a str")
|
93
109
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -127,11 +143,35 @@ class GetComputeHostResult:
|
|
127
143
|
"""
|
128
144
|
return pulumi.get(self, "compartment_id")
|
129
145
|
|
146
|
+
@property
|
147
|
+
@pulumi.getter(name="computeHostGroupId")
|
148
|
+
def compute_host_group_id(self) -> builtins.str:
|
149
|
+
"""
|
150
|
+
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.
|
151
|
+
"""
|
152
|
+
return pulumi.get(self, "compute_host_group_id")
|
153
|
+
|
130
154
|
@property
|
131
155
|
@pulumi.getter(name="computeHostId")
|
132
156
|
def compute_host_id(self) -> builtins.str:
|
133
157
|
return pulumi.get(self, "compute_host_id")
|
134
158
|
|
159
|
+
@property
|
160
|
+
@pulumi.getter(name="configurationDatas")
|
161
|
+
def configuration_datas(self) -> Sequence['outputs.GetComputeHostConfigurationDataResult']:
|
162
|
+
"""
|
163
|
+
Compute Host Configuration Data
|
164
|
+
"""
|
165
|
+
return pulumi.get(self, "configuration_datas")
|
166
|
+
|
167
|
+
@property
|
168
|
+
@pulumi.getter(name="configurationState")
|
169
|
+
def configuration_state(self) -> builtins.str:
|
170
|
+
"""
|
171
|
+
Configuration state of the Compute Bare Metal Host.
|
172
|
+
"""
|
173
|
+
return pulumi.get(self, "configuration_state")
|
174
|
+
|
135
175
|
@property
|
136
176
|
@pulumi.getter(name="definedTags")
|
137
177
|
def defined_tags(self) -> Mapping[str, builtins.str]:
|
@@ -236,6 +276,14 @@ class GetComputeHostResult:
|
|
236
276
|
"""
|
237
277
|
return pulumi.get(self, "network_block_id")
|
238
278
|
|
279
|
+
@property
|
280
|
+
@pulumi.getter(name="recycleDetails")
|
281
|
+
def recycle_details(self) -> Sequence['outputs.GetComputeHostRecycleDetailResult']:
|
282
|
+
"""
|
283
|
+
Shows details about the last recycle performed on this host.
|
284
|
+
"""
|
285
|
+
return pulumi.get(self, "recycle_details")
|
286
|
+
|
239
287
|
@property
|
240
288
|
@pulumi.getter
|
241
289
|
def shape(self) -> builtins.str:
|
@@ -252,6 +300,14 @@ class GetComputeHostResult:
|
|
252
300
|
"""
|
253
301
|
return pulumi.get(self, "state")
|
254
302
|
|
303
|
+
@property
|
304
|
+
@pulumi.getter(name="timeConfigurationCheck")
|
305
|
+
def time_configuration_check(self) -> builtins.str:
|
306
|
+
"""
|
307
|
+
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`
|
308
|
+
"""
|
309
|
+
return pulumi.get(self, "time_configuration_check")
|
310
|
+
|
255
311
|
@property
|
256
312
|
@pulumi.getter(name="timeCreated")
|
257
313
|
def time_created(self) -> builtins.str:
|
@@ -279,7 +335,10 @@ class AwaitableGetComputeHostResult(GetComputeHostResult):
|
|
279
335
|
availability_domain=self.availability_domain,
|
280
336
|
capacity_reservation_id=self.capacity_reservation_id,
|
281
337
|
compartment_id=self.compartment_id,
|
338
|
+
compute_host_group_id=self.compute_host_group_id,
|
282
339
|
compute_host_id=self.compute_host_id,
|
340
|
+
configuration_datas=self.configuration_datas,
|
341
|
+
configuration_state=self.configuration_state,
|
283
342
|
defined_tags=self.defined_tags,
|
284
343
|
display_name=self.display_name,
|
285
344
|
fault_domain=self.fault_domain,
|
@@ -293,8 +352,10 @@ class AwaitableGetComputeHostResult(GetComputeHostResult):
|
|
293
352
|
lifecycle_details=self.lifecycle_details,
|
294
353
|
local_block_id=self.local_block_id,
|
295
354
|
network_block_id=self.network_block_id,
|
355
|
+
recycle_details=self.recycle_details,
|
296
356
|
shape=self.shape,
|
297
357
|
state=self.state,
|
358
|
+
time_configuration_check=self.time_configuration_check,
|
298
359
|
time_created=self.time_created,
|
299
360
|
time_updated=self.time_updated)
|
300
361
|
|
@@ -328,7 +389,10 @@ def get_compute_host(compute_host_id: Optional[builtins.str] = None,
|
|
328
389
|
availability_domain=pulumi.get(__ret__, 'availability_domain'),
|
329
390
|
capacity_reservation_id=pulumi.get(__ret__, 'capacity_reservation_id'),
|
330
391
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
392
|
+
compute_host_group_id=pulumi.get(__ret__, 'compute_host_group_id'),
|
331
393
|
compute_host_id=pulumi.get(__ret__, 'compute_host_id'),
|
394
|
+
configuration_datas=pulumi.get(__ret__, 'configuration_datas'),
|
395
|
+
configuration_state=pulumi.get(__ret__, 'configuration_state'),
|
332
396
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
333
397
|
display_name=pulumi.get(__ret__, 'display_name'),
|
334
398
|
fault_domain=pulumi.get(__ret__, 'fault_domain'),
|
@@ -342,8 +406,10 @@ def get_compute_host(compute_host_id: Optional[builtins.str] = None,
|
|
342
406
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
343
407
|
local_block_id=pulumi.get(__ret__, 'local_block_id'),
|
344
408
|
network_block_id=pulumi.get(__ret__, 'network_block_id'),
|
409
|
+
recycle_details=pulumi.get(__ret__, 'recycle_details'),
|
345
410
|
shape=pulumi.get(__ret__, 'shape'),
|
346
411
|
state=pulumi.get(__ret__, 'state'),
|
412
|
+
time_configuration_check=pulumi.get(__ret__, 'time_configuration_check'),
|
347
413
|
time_created=pulumi.get(__ret__, 'time_created'),
|
348
414
|
time_updated=pulumi.get(__ret__, 'time_updated'))
|
349
415
|
def get_compute_host_output(compute_host_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -374,7 +440,10 @@ def get_compute_host_output(compute_host_id: Optional[pulumi.Input[builtins.str]
|
|
374
440
|
availability_domain=pulumi.get(__response__, 'availability_domain'),
|
375
441
|
capacity_reservation_id=pulumi.get(__response__, 'capacity_reservation_id'),
|
376
442
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
443
|
+
compute_host_group_id=pulumi.get(__response__, 'compute_host_group_id'),
|
377
444
|
compute_host_id=pulumi.get(__response__, 'compute_host_id'),
|
445
|
+
configuration_datas=pulumi.get(__response__, 'configuration_datas'),
|
446
|
+
configuration_state=pulumi.get(__response__, 'configuration_state'),
|
378
447
|
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
379
448
|
display_name=pulumi.get(__response__, 'display_name'),
|
380
449
|
fault_domain=pulumi.get(__response__, 'fault_domain'),
|
@@ -388,7 +457,9 @@ def get_compute_host_output(compute_host_id: Optional[pulumi.Input[builtins.str]
|
|
388
457
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
389
458
|
local_block_id=pulumi.get(__response__, 'local_block_id'),
|
390
459
|
network_block_id=pulumi.get(__response__, 'network_block_id'),
|
460
|
+
recycle_details=pulumi.get(__response__, 'recycle_details'),
|
391
461
|
shape=pulumi.get(__response__, 'shape'),
|
392
462
|
state=pulumi.get(__response__, 'state'),
|
463
|
+
time_configuration_check=pulumi.get(__response__, 'time_configuration_check'),
|
393
464
|
time_created=pulumi.get(__response__, 'time_created'),
|
394
465
|
time_updated=pulumi.get(__response__, 'time_updated')))
|
@@ -0,0 +1,269 @@
|
|
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
|
+
'GetComputeHostGroupResult',
|
21
|
+
'AwaitableGetComputeHostGroupResult',
|
22
|
+
'get_compute_host_group',
|
23
|
+
'get_compute_host_group_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetComputeHostGroupResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getComputeHostGroup.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, availability_domain=None, compartment_id=None, compute_host_group_id=None, configurations=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, is_targeted_placement_required=None, state=None, system_tags=None, time_created=None, time_updated=None):
|
32
|
+
if availability_domain and not isinstance(availability_domain, str):
|
33
|
+
raise TypeError("Expected argument 'availability_domain' to be a str")
|
34
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
35
|
+
if compartment_id and not isinstance(compartment_id, str):
|
36
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
37
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
38
|
+
if compute_host_group_id and not isinstance(compute_host_group_id, str):
|
39
|
+
raise TypeError("Expected argument 'compute_host_group_id' to be a str")
|
40
|
+
pulumi.set(__self__, "compute_host_group_id", compute_host_group_id)
|
41
|
+
if configurations and not isinstance(configurations, list):
|
42
|
+
raise TypeError("Expected argument 'configurations' to be a list")
|
43
|
+
pulumi.set(__self__, "configurations", configurations)
|
44
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
45
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
46
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
47
|
+
if display_name and not isinstance(display_name, str):
|
48
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
49
|
+
pulumi.set(__self__, "display_name", display_name)
|
50
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
51
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
52
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
53
|
+
if id and not isinstance(id, str):
|
54
|
+
raise TypeError("Expected argument 'id' to be a str")
|
55
|
+
pulumi.set(__self__, "id", id)
|
56
|
+
if is_targeted_placement_required and not isinstance(is_targeted_placement_required, bool):
|
57
|
+
raise TypeError("Expected argument 'is_targeted_placement_required' to be a bool")
|
58
|
+
pulumi.set(__self__, "is_targeted_placement_required", is_targeted_placement_required)
|
59
|
+
if state and not isinstance(state, str):
|
60
|
+
raise TypeError("Expected argument 'state' to be a str")
|
61
|
+
pulumi.set(__self__, "state", state)
|
62
|
+
if system_tags and not isinstance(system_tags, dict):
|
63
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
64
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
65
|
+
if time_created and not isinstance(time_created, str):
|
66
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
67
|
+
pulumi.set(__self__, "time_created", time_created)
|
68
|
+
if time_updated and not isinstance(time_updated, str):
|
69
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
70
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
71
|
+
|
72
|
+
@property
|
73
|
+
@pulumi.getter(name="availabilityDomain")
|
74
|
+
def availability_domain(self) -> builtins.str:
|
75
|
+
"""
|
76
|
+
The availability domain of a host group. Example: `Uocm:PHX-AD-1`
|
77
|
+
"""
|
78
|
+
return pulumi.get(self, "availability_domain")
|
79
|
+
|
80
|
+
@property
|
81
|
+
@pulumi.getter(name="compartmentId")
|
82
|
+
def compartment_id(self) -> builtins.str:
|
83
|
+
"""
|
84
|
+
The OCID of the compartment that contains host group.
|
85
|
+
"""
|
86
|
+
return pulumi.get(self, "compartment_id")
|
87
|
+
|
88
|
+
@property
|
89
|
+
@pulumi.getter(name="computeHostGroupId")
|
90
|
+
def compute_host_group_id(self) -> builtins.str:
|
91
|
+
return pulumi.get(self, "compute_host_group_id")
|
92
|
+
|
93
|
+
@property
|
94
|
+
@pulumi.getter
|
95
|
+
def configurations(self) -> Sequence['outputs.GetComputeHostGroupConfigurationResult']:
|
96
|
+
"""
|
97
|
+
A list of HostGroupConfiguration objects
|
98
|
+
"""
|
99
|
+
return pulumi.get(self, "configurations")
|
100
|
+
|
101
|
+
@property
|
102
|
+
@pulumi.getter(name="definedTags")
|
103
|
+
def defined_tags(self) -> Mapping[str, builtins.str]:
|
104
|
+
"""
|
105
|
+
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"}`
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "defined_tags")
|
108
|
+
|
109
|
+
@property
|
110
|
+
@pulumi.getter(name="displayName")
|
111
|
+
def display_name(self) -> builtins.str:
|
112
|
+
"""
|
113
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
114
|
+
"""
|
115
|
+
return pulumi.get(self, "display_name")
|
116
|
+
|
117
|
+
@property
|
118
|
+
@pulumi.getter(name="freeformTags")
|
119
|
+
def freeform_tags(self) -> Mapping[str, builtins.str]:
|
120
|
+
"""
|
121
|
+
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"}`
|
122
|
+
"""
|
123
|
+
return pulumi.get(self, "freeform_tags")
|
124
|
+
|
125
|
+
@property
|
126
|
+
@pulumi.getter
|
127
|
+
def id(self) -> builtins.str:
|
128
|
+
"""
|
129
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique host group
|
130
|
+
"""
|
131
|
+
return pulumi.get(self, "id")
|
132
|
+
|
133
|
+
@property
|
134
|
+
@pulumi.getter(name="isTargetedPlacementRequired")
|
135
|
+
def is_targeted_placement_required(self) -> builtins.bool:
|
136
|
+
"""
|
137
|
+
A flag that allows customers to restrict placement for hosts attached to the group. If true, the only way to place on hosts is to target the specific host group.
|
138
|
+
"""
|
139
|
+
return pulumi.get(self, "is_targeted_placement_required")
|
140
|
+
|
141
|
+
@property
|
142
|
+
@pulumi.getter
|
143
|
+
def state(self) -> builtins.str:
|
144
|
+
"""
|
145
|
+
The lifecycle state of the host group
|
146
|
+
"""
|
147
|
+
return pulumi.get(self, "state")
|
148
|
+
|
149
|
+
@property
|
150
|
+
@pulumi.getter(name="systemTags")
|
151
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
152
|
+
"""
|
153
|
+
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"}`
|
154
|
+
"""
|
155
|
+
return pulumi.get(self, "system_tags")
|
156
|
+
|
157
|
+
@property
|
158
|
+
@pulumi.getter(name="timeCreated")
|
159
|
+
def time_created(self) -> builtins.str:
|
160
|
+
"""
|
161
|
+
The date and time the host group was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
162
|
+
"""
|
163
|
+
return pulumi.get(self, "time_created")
|
164
|
+
|
165
|
+
@property
|
166
|
+
@pulumi.getter(name="timeUpdated")
|
167
|
+
def time_updated(self) -> builtins.str:
|
168
|
+
"""
|
169
|
+
The date and time the host group was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
170
|
+
"""
|
171
|
+
return pulumi.get(self, "time_updated")
|
172
|
+
|
173
|
+
|
174
|
+
class AwaitableGetComputeHostGroupResult(GetComputeHostGroupResult):
|
175
|
+
# pylint: disable=using-constant-test
|
176
|
+
def __await__(self):
|
177
|
+
if False:
|
178
|
+
yield self
|
179
|
+
return GetComputeHostGroupResult(
|
180
|
+
availability_domain=self.availability_domain,
|
181
|
+
compartment_id=self.compartment_id,
|
182
|
+
compute_host_group_id=self.compute_host_group_id,
|
183
|
+
configurations=self.configurations,
|
184
|
+
defined_tags=self.defined_tags,
|
185
|
+
display_name=self.display_name,
|
186
|
+
freeform_tags=self.freeform_tags,
|
187
|
+
id=self.id,
|
188
|
+
is_targeted_placement_required=self.is_targeted_placement_required,
|
189
|
+
state=self.state,
|
190
|
+
system_tags=self.system_tags,
|
191
|
+
time_created=self.time_created,
|
192
|
+
time_updated=self.time_updated)
|
193
|
+
|
194
|
+
|
195
|
+
def get_compute_host_group(compute_host_group_id: Optional[builtins.str] = None,
|
196
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetComputeHostGroupResult:
|
197
|
+
"""
|
198
|
+
This data source provides details about a specific Compute Host Group resource in Oracle Cloud Infrastructure Core service.
|
199
|
+
|
200
|
+
Gets information about the specified compute host group
|
201
|
+
|
202
|
+
## Example Usage
|
203
|
+
|
204
|
+
```python
|
205
|
+
import pulumi
|
206
|
+
import pulumi_oci as oci
|
207
|
+
|
208
|
+
test_compute_host_group = oci.Core.get_compute_host_group(compute_host_group_id=test_compute_host_group_oci_core_compute_host_group["id"])
|
209
|
+
```
|
210
|
+
|
211
|
+
|
212
|
+
:param builtins.str compute_host_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host group.
|
213
|
+
"""
|
214
|
+
__args__ = dict()
|
215
|
+
__args__['computeHostGroupId'] = compute_host_group_id
|
216
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
217
|
+
__ret__ = pulumi.runtime.invoke('oci:Core/getComputeHostGroup:getComputeHostGroup', __args__, opts=opts, typ=GetComputeHostGroupResult).value
|
218
|
+
|
219
|
+
return AwaitableGetComputeHostGroupResult(
|
220
|
+
availability_domain=pulumi.get(__ret__, 'availability_domain'),
|
221
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
222
|
+
compute_host_group_id=pulumi.get(__ret__, 'compute_host_group_id'),
|
223
|
+
configurations=pulumi.get(__ret__, 'configurations'),
|
224
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
225
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
226
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
227
|
+
id=pulumi.get(__ret__, 'id'),
|
228
|
+
is_targeted_placement_required=pulumi.get(__ret__, 'is_targeted_placement_required'),
|
229
|
+
state=pulumi.get(__ret__, 'state'),
|
230
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
231
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
232
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
233
|
+
def get_compute_host_group_output(compute_host_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
234
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetComputeHostGroupResult]:
|
235
|
+
"""
|
236
|
+
This data source provides details about a specific Compute Host Group resource in Oracle Cloud Infrastructure Core service.
|
237
|
+
|
238
|
+
Gets information about the specified compute host group
|
239
|
+
|
240
|
+
## Example Usage
|
241
|
+
|
242
|
+
```python
|
243
|
+
import pulumi
|
244
|
+
import pulumi_oci as oci
|
245
|
+
|
246
|
+
test_compute_host_group = oci.Core.get_compute_host_group(compute_host_group_id=test_compute_host_group_oci_core_compute_host_group["id"])
|
247
|
+
```
|
248
|
+
|
249
|
+
|
250
|
+
:param builtins.str compute_host_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host group.
|
251
|
+
"""
|
252
|
+
__args__ = dict()
|
253
|
+
__args__['computeHostGroupId'] = compute_host_group_id
|
254
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
255
|
+
__ret__ = pulumi.runtime.invoke_output('oci:Core/getComputeHostGroup:getComputeHostGroup', __args__, opts=opts, typ=GetComputeHostGroupResult)
|
256
|
+
return __ret__.apply(lambda __response__: GetComputeHostGroupResult(
|
257
|
+
availability_domain=pulumi.get(__response__, 'availability_domain'),
|
258
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
259
|
+
compute_host_group_id=pulumi.get(__response__, 'compute_host_group_id'),
|
260
|
+
configurations=pulumi.get(__response__, 'configurations'),
|
261
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
262
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
263
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
264
|
+
id=pulumi.get(__response__, 'id'),
|
265
|
+
is_targeted_placement_required=pulumi.get(__response__, 'is_targeted_placement_required'),
|
266
|
+
state=pulumi.get(__response__, 'state'),
|
267
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
268
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
269
|
+
time_updated=pulumi.get(__response__, 'time_updated')))
|