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
@@ -83,8 +83,8 @@ class GetClusterResult:
|
|
83
83
|
if options and not isinstance(options, list):
|
84
84
|
raise TypeError("Expected argument 'options' to be a list")
|
85
85
|
pulumi.set(__self__, "options", options)
|
86
|
-
if should_include_oidc_config_file and not isinstance(should_include_oidc_config_file,
|
87
|
-
raise TypeError("Expected argument 'should_include_oidc_config_file' to be a
|
86
|
+
if should_include_oidc_config_file and not isinstance(should_include_oidc_config_file, bool):
|
87
|
+
raise TypeError("Expected argument 'should_include_oidc_config_file' to be a bool")
|
88
88
|
pulumi.set(__self__, "should_include_oidc_config_file", should_include_oidc_config_file)
|
89
89
|
if state and not isinstance(state, str):
|
90
90
|
raise TypeError("Expected argument 'state' to be a str")
|
@@ -239,7 +239,7 @@ class GetClusterResult:
|
|
239
239
|
|
240
240
|
@property
|
241
241
|
@pulumi.getter(name="shouldIncludeOidcConfigFile")
|
242
|
-
def should_include_oidc_config_file(self) -> Optional[builtins.
|
242
|
+
def should_include_oidc_config_file(self) -> Optional[builtins.bool]:
|
243
243
|
return pulumi.get(self, "should_include_oidc_config_file")
|
244
244
|
|
245
245
|
@property
|
@@ -298,7 +298,7 @@ class AwaitableGetClusterResult(GetClusterResult):
|
|
298
298
|
|
299
299
|
|
300
300
|
def get_cluster(cluster_id: Optional[builtins.str] = None,
|
301
|
-
should_include_oidc_config_file: Optional[builtins.
|
301
|
+
should_include_oidc_config_file: Optional[builtins.bool] = None,
|
302
302
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetClusterResult:
|
303
303
|
"""
|
304
304
|
This data source provides details about a specific Cluster resource in Oracle Cloud Infrastructure Container Engine service.
|
@@ -317,7 +317,7 @@ def get_cluster(cluster_id: Optional[builtins.str] = None,
|
|
317
317
|
|
318
318
|
|
319
319
|
:param builtins.str cluster_id: The OCID of the cluster.
|
320
|
-
:param builtins.
|
320
|
+
:param builtins.bool should_include_oidc_config_file: Boolean value to determine if the OpenIdConnectAuth configuration file should be displayed for the provided cluster.
|
321
321
|
"""
|
322
322
|
__args__ = dict()
|
323
323
|
__args__['clusterId'] = cluster_id
|
@@ -349,7 +349,7 @@ def get_cluster(cluster_id: Optional[builtins.str] = None,
|
|
349
349
|
type=pulumi.get(__ret__, 'type'),
|
350
350
|
vcn_id=pulumi.get(__ret__, 'vcn_id'))
|
351
351
|
def get_cluster_output(cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
352
|
-
should_include_oidc_config_file: Optional[pulumi.Input[Optional[builtins.
|
352
|
+
should_include_oidc_config_file: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
|
353
353
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetClusterResult]:
|
354
354
|
"""
|
355
355
|
This data source provides details about a specific Cluster resource in Oracle Cloud Infrastructure Container Engine service.
|
@@ -368,7 +368,7 @@ def get_cluster_output(cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
368
368
|
|
369
369
|
|
370
370
|
:param builtins.str cluster_id: The OCID of the cluster.
|
371
|
-
:param builtins.
|
371
|
+
:param builtins.bool should_include_oidc_config_file: Boolean value to determine if the OpenIdConnectAuth configuration file should be displayed for the provided cluster.
|
372
372
|
"""
|
373
373
|
__args__ = dict()
|
374
374
|
__args__['clusterId'] = cluster_id
|
pulumi_oci/core/__init__.py
CHANGED
@@ -19,6 +19,8 @@ from .compute_capacity_topology import *
|
|
19
19
|
from .compute_cluster import *
|
20
20
|
from .compute_gpu_memory_cluster import *
|
21
21
|
from .compute_gpu_memory_fabric import *
|
22
|
+
from .compute_host import *
|
23
|
+
from .compute_host_group import *
|
22
24
|
from .compute_image_capability_schema import *
|
23
25
|
from .console_history import *
|
24
26
|
from .cpe import *
|
@@ -83,6 +85,8 @@ from .get_compute_gpu_memory_clusters import *
|
|
83
85
|
from .get_compute_gpu_memory_fabric import *
|
84
86
|
from .get_compute_gpu_memory_fabrics import *
|
85
87
|
from .get_compute_host import *
|
88
|
+
from .get_compute_host_group import *
|
89
|
+
from .get_compute_host_groups import *
|
86
90
|
from .get_compute_hosts import *
|
87
91
|
from .get_compute_image_capability_schema import *
|
88
92
|
from .get_compute_image_capability_schemas import *
|
pulumi_oci/core/_inputs.py
CHANGED
@@ -96,6 +96,14 @@ __all__ = [
|
|
96
96
|
'ComputeCapacityReservationInstanceReservationConfigInstanceShapeConfigArgsDict',
|
97
97
|
'ComputeCapacityTopologyCapacitySourceArgs',
|
98
98
|
'ComputeCapacityTopologyCapacitySourceArgsDict',
|
99
|
+
'ComputeHostConfigurationDataArgs',
|
100
|
+
'ComputeHostConfigurationDataArgsDict',
|
101
|
+
'ComputeHostConfigurationDataCheckDetailArgs',
|
102
|
+
'ComputeHostConfigurationDataCheckDetailArgsDict',
|
103
|
+
'ComputeHostGroupConfigurationArgs',
|
104
|
+
'ComputeHostGroupConfigurationArgsDict',
|
105
|
+
'ComputeHostRecycleDetailArgs',
|
106
|
+
'ComputeHostRecycleDetailArgsDict',
|
99
107
|
'CrossConnectGroupMacsecPropertiesArgs',
|
100
108
|
'CrossConnectGroupMacsecPropertiesArgsDict',
|
101
109
|
'CrossConnectGroupMacsecPropertiesPrimaryKeyArgs',
|
@@ -104,6 +112,8 @@ __all__ = [
|
|
104
112
|
'CrossConnectMacsecPropertiesArgsDict',
|
105
113
|
'CrossConnectMacsecPropertiesPrimaryKeyArgs',
|
106
114
|
'CrossConnectMacsecPropertiesPrimaryKeyArgsDict',
|
115
|
+
'DedicatedVmHostCapacityBinArgs',
|
116
|
+
'DedicatedVmHostCapacityBinArgsDict',
|
107
117
|
'DedicatedVmHostPlacementConstraintDetailsArgs',
|
108
118
|
'DedicatedVmHostPlacementConstraintDetailsArgsDict',
|
109
119
|
'DefaultDhcpOptionsOptionArgs',
|
@@ -440,6 +450,8 @@ __all__ = [
|
|
440
450
|
'GetComputeGpuMemoryClustersFilterArgsDict',
|
441
451
|
'GetComputeGpuMemoryFabricsFilterArgs',
|
442
452
|
'GetComputeGpuMemoryFabricsFilterArgsDict',
|
453
|
+
'GetComputeHostGroupsFilterArgs',
|
454
|
+
'GetComputeHostGroupsFilterArgsDict',
|
443
455
|
'GetComputeHostsFilterArgs',
|
444
456
|
'GetComputeHostsFilterArgsDict',
|
445
457
|
'GetComputeImageCapabilitySchemasFilterArgs',
|
@@ -3860,6 +3872,292 @@ class ComputeCapacityTopologyCapacitySourceArgs:
|
|
3860
3872
|
pulumi.set(self, "compartment_id", value)
|
3861
3873
|
|
3862
3874
|
|
3875
|
+
if not MYPY:
|
3876
|
+
class ComputeHostConfigurationDataArgsDict(TypedDict):
|
3877
|
+
check_details: NotRequired[pulumi.Input[Sequence[pulumi.Input['ComputeHostConfigurationDataCheckDetailArgsDict']]]]
|
3878
|
+
"""
|
3879
|
+
Compute Host Group Configuration Details Check
|
3880
|
+
"""
|
3881
|
+
time_last_apply: NotRequired[pulumi.Input[builtins.str]]
|
3882
|
+
"""
|
3883
|
+
The time that was last applied.
|
3884
|
+
"""
|
3885
|
+
elif False:
|
3886
|
+
ComputeHostConfigurationDataArgsDict: TypeAlias = Mapping[str, Any]
|
3887
|
+
|
3888
|
+
@pulumi.input_type
|
3889
|
+
class ComputeHostConfigurationDataArgs:
|
3890
|
+
def __init__(__self__, *,
|
3891
|
+
check_details: Optional[pulumi.Input[Sequence[pulumi.Input['ComputeHostConfigurationDataCheckDetailArgs']]]] = None,
|
3892
|
+
time_last_apply: Optional[pulumi.Input[builtins.str]] = None):
|
3893
|
+
"""
|
3894
|
+
:param pulumi.Input[Sequence[pulumi.Input['ComputeHostConfigurationDataCheckDetailArgs']]] check_details: Compute Host Group Configuration Details Check
|
3895
|
+
:param pulumi.Input[builtins.str] time_last_apply: The time that was last applied.
|
3896
|
+
"""
|
3897
|
+
if check_details is not None:
|
3898
|
+
pulumi.set(__self__, "check_details", check_details)
|
3899
|
+
if time_last_apply is not None:
|
3900
|
+
pulumi.set(__self__, "time_last_apply", time_last_apply)
|
3901
|
+
|
3902
|
+
@property
|
3903
|
+
@pulumi.getter(name="checkDetails")
|
3904
|
+
def check_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ComputeHostConfigurationDataCheckDetailArgs']]]]:
|
3905
|
+
"""
|
3906
|
+
Compute Host Group Configuration Details Check
|
3907
|
+
"""
|
3908
|
+
return pulumi.get(self, "check_details")
|
3909
|
+
|
3910
|
+
@check_details.setter
|
3911
|
+
def check_details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ComputeHostConfigurationDataCheckDetailArgs']]]]):
|
3912
|
+
pulumi.set(self, "check_details", value)
|
3913
|
+
|
3914
|
+
@property
|
3915
|
+
@pulumi.getter(name="timeLastApply")
|
3916
|
+
def time_last_apply(self) -> Optional[pulumi.Input[builtins.str]]:
|
3917
|
+
"""
|
3918
|
+
The time that was last applied.
|
3919
|
+
"""
|
3920
|
+
return pulumi.get(self, "time_last_apply")
|
3921
|
+
|
3922
|
+
@time_last_apply.setter
|
3923
|
+
def time_last_apply(self, value: Optional[pulumi.Input[builtins.str]]):
|
3924
|
+
pulumi.set(self, "time_last_apply", value)
|
3925
|
+
|
3926
|
+
|
3927
|
+
if not MYPY:
|
3928
|
+
class ComputeHostConfigurationDataCheckDetailArgsDict(TypedDict):
|
3929
|
+
configuration_state: NotRequired[pulumi.Input[builtins.str]]
|
3930
|
+
"""
|
3931
|
+
Configuration state of the Compute Bare Metal Host.
|
3932
|
+
"""
|
3933
|
+
firmware_bundle_id: NotRequired[pulumi.Input[builtins.str]]
|
3934
|
+
"""
|
3935
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique firmware bundle associated with the Host Configuration.
|
3936
|
+
"""
|
3937
|
+
recycle_level: NotRequired[pulumi.Input[builtins.str]]
|
3938
|
+
"""
|
3939
|
+
Preferred recycle level for hosts associated with the reservation config.
|
3940
|
+
* `SKIP_RECYCLE` - Skips host wipe.
|
3941
|
+
* `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
|
3942
|
+
"""
|
3943
|
+
type: NotRequired[pulumi.Input[builtins.str]]
|
3944
|
+
"""
|
3945
|
+
The type of configuration
|
3946
|
+
"""
|
3947
|
+
elif False:
|
3948
|
+
ComputeHostConfigurationDataCheckDetailArgsDict: TypeAlias = Mapping[str, Any]
|
3949
|
+
|
3950
|
+
@pulumi.input_type
|
3951
|
+
class ComputeHostConfigurationDataCheckDetailArgs:
|
3952
|
+
def __init__(__self__, *,
|
3953
|
+
configuration_state: Optional[pulumi.Input[builtins.str]] = None,
|
3954
|
+
firmware_bundle_id: Optional[pulumi.Input[builtins.str]] = None,
|
3955
|
+
recycle_level: Optional[pulumi.Input[builtins.str]] = None,
|
3956
|
+
type: Optional[pulumi.Input[builtins.str]] = None):
|
3957
|
+
"""
|
3958
|
+
:param pulumi.Input[builtins.str] configuration_state: Configuration state of the Compute Bare Metal Host.
|
3959
|
+
:param pulumi.Input[builtins.str] firmware_bundle_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique firmware bundle associated with the Host Configuration.
|
3960
|
+
:param pulumi.Input[builtins.str] recycle_level: Preferred recycle level for hosts associated with the reservation config.
|
3961
|
+
* `SKIP_RECYCLE` - Skips host wipe.
|
3962
|
+
* `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
|
3963
|
+
:param pulumi.Input[builtins.str] type: The type of configuration
|
3964
|
+
"""
|
3965
|
+
if configuration_state is not None:
|
3966
|
+
pulumi.set(__self__, "configuration_state", configuration_state)
|
3967
|
+
if firmware_bundle_id is not None:
|
3968
|
+
pulumi.set(__self__, "firmware_bundle_id", firmware_bundle_id)
|
3969
|
+
if recycle_level is not None:
|
3970
|
+
pulumi.set(__self__, "recycle_level", recycle_level)
|
3971
|
+
if type is not None:
|
3972
|
+
pulumi.set(__self__, "type", type)
|
3973
|
+
|
3974
|
+
@property
|
3975
|
+
@pulumi.getter(name="configurationState")
|
3976
|
+
def configuration_state(self) -> Optional[pulumi.Input[builtins.str]]:
|
3977
|
+
"""
|
3978
|
+
Configuration state of the Compute Bare Metal Host.
|
3979
|
+
"""
|
3980
|
+
return pulumi.get(self, "configuration_state")
|
3981
|
+
|
3982
|
+
@configuration_state.setter
|
3983
|
+
def configuration_state(self, value: Optional[pulumi.Input[builtins.str]]):
|
3984
|
+
pulumi.set(self, "configuration_state", value)
|
3985
|
+
|
3986
|
+
@property
|
3987
|
+
@pulumi.getter(name="firmwareBundleId")
|
3988
|
+
def firmware_bundle_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
3989
|
+
"""
|
3990
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique firmware bundle associated with the Host Configuration.
|
3991
|
+
"""
|
3992
|
+
return pulumi.get(self, "firmware_bundle_id")
|
3993
|
+
|
3994
|
+
@firmware_bundle_id.setter
|
3995
|
+
def firmware_bundle_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
3996
|
+
pulumi.set(self, "firmware_bundle_id", value)
|
3997
|
+
|
3998
|
+
@property
|
3999
|
+
@pulumi.getter(name="recycleLevel")
|
4000
|
+
def recycle_level(self) -> Optional[pulumi.Input[builtins.str]]:
|
4001
|
+
"""
|
4002
|
+
Preferred recycle level for hosts associated with the reservation config.
|
4003
|
+
* `SKIP_RECYCLE` - Skips host wipe.
|
4004
|
+
* `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
|
4005
|
+
"""
|
4006
|
+
return pulumi.get(self, "recycle_level")
|
4007
|
+
|
4008
|
+
@recycle_level.setter
|
4009
|
+
def recycle_level(self, value: Optional[pulumi.Input[builtins.str]]):
|
4010
|
+
pulumi.set(self, "recycle_level", value)
|
4011
|
+
|
4012
|
+
@property
|
4013
|
+
@pulumi.getter
|
4014
|
+
def type(self) -> Optional[pulumi.Input[builtins.str]]:
|
4015
|
+
"""
|
4016
|
+
The type of configuration
|
4017
|
+
"""
|
4018
|
+
return pulumi.get(self, "type")
|
4019
|
+
|
4020
|
+
@type.setter
|
4021
|
+
def type(self, value: Optional[pulumi.Input[builtins.str]]):
|
4022
|
+
pulumi.set(self, "type", value)
|
4023
|
+
|
4024
|
+
|
4025
|
+
if not MYPY:
|
4026
|
+
class ComputeHostGroupConfigurationArgsDict(TypedDict):
|
4027
|
+
firmware_bundle_id: NotRequired[pulumi.Input[builtins.str]]
|
4028
|
+
"""
|
4029
|
+
(Updatable) The OCID for firmware bundle
|
4030
|
+
"""
|
4031
|
+
recycle_level: NotRequired[pulumi.Input[builtins.str]]
|
4032
|
+
"""
|
4033
|
+
(Updatable) Preferred recycle level for hosts associated with the reservation config.
|
4034
|
+
* `SKIP_RECYCLE` - Skips host wipe.
|
4035
|
+
* `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
|
4036
|
+
"""
|
4037
|
+
target: NotRequired[pulumi.Input[builtins.str]]
|
4038
|
+
"""
|
4039
|
+
(Updatable) Either the platform name or compute shape that the configuration is targeting
|
4040
|
+
"""
|
4041
|
+
elif False:
|
4042
|
+
ComputeHostGroupConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
4043
|
+
|
4044
|
+
@pulumi.input_type
|
4045
|
+
class ComputeHostGroupConfigurationArgs:
|
4046
|
+
def __init__(__self__, *,
|
4047
|
+
firmware_bundle_id: Optional[pulumi.Input[builtins.str]] = None,
|
4048
|
+
recycle_level: Optional[pulumi.Input[builtins.str]] = None,
|
4049
|
+
target: Optional[pulumi.Input[builtins.str]] = None):
|
4050
|
+
"""
|
4051
|
+
:param pulumi.Input[builtins.str] firmware_bundle_id: (Updatable) The OCID for firmware bundle
|
4052
|
+
:param pulumi.Input[builtins.str] recycle_level: (Updatable) Preferred recycle level for hosts associated with the reservation config.
|
4053
|
+
* `SKIP_RECYCLE` - Skips host wipe.
|
4054
|
+
* `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
|
4055
|
+
:param pulumi.Input[builtins.str] target: (Updatable) Either the platform name or compute shape that the configuration is targeting
|
4056
|
+
"""
|
4057
|
+
if firmware_bundle_id is not None:
|
4058
|
+
pulumi.set(__self__, "firmware_bundle_id", firmware_bundle_id)
|
4059
|
+
if recycle_level is not None:
|
4060
|
+
pulumi.set(__self__, "recycle_level", recycle_level)
|
4061
|
+
if target is not None:
|
4062
|
+
pulumi.set(__self__, "target", target)
|
4063
|
+
|
4064
|
+
@property
|
4065
|
+
@pulumi.getter(name="firmwareBundleId")
|
4066
|
+
def firmware_bundle_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
4067
|
+
"""
|
4068
|
+
(Updatable) The OCID for firmware bundle
|
4069
|
+
"""
|
4070
|
+
return pulumi.get(self, "firmware_bundle_id")
|
4071
|
+
|
4072
|
+
@firmware_bundle_id.setter
|
4073
|
+
def firmware_bundle_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
4074
|
+
pulumi.set(self, "firmware_bundle_id", value)
|
4075
|
+
|
4076
|
+
@property
|
4077
|
+
@pulumi.getter(name="recycleLevel")
|
4078
|
+
def recycle_level(self) -> Optional[pulumi.Input[builtins.str]]:
|
4079
|
+
"""
|
4080
|
+
(Updatable) Preferred recycle level for hosts associated with the reservation config.
|
4081
|
+
* `SKIP_RECYCLE` - Skips host wipe.
|
4082
|
+
* `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
|
4083
|
+
"""
|
4084
|
+
return pulumi.get(self, "recycle_level")
|
4085
|
+
|
4086
|
+
@recycle_level.setter
|
4087
|
+
def recycle_level(self, value: Optional[pulumi.Input[builtins.str]]):
|
4088
|
+
pulumi.set(self, "recycle_level", value)
|
4089
|
+
|
4090
|
+
@property
|
4091
|
+
@pulumi.getter
|
4092
|
+
def target(self) -> Optional[pulumi.Input[builtins.str]]:
|
4093
|
+
"""
|
4094
|
+
(Updatable) Either the platform name or compute shape that the configuration is targeting
|
4095
|
+
"""
|
4096
|
+
return pulumi.get(self, "target")
|
4097
|
+
|
4098
|
+
@target.setter
|
4099
|
+
def target(self, value: Optional[pulumi.Input[builtins.str]]):
|
4100
|
+
pulumi.set(self, "target", value)
|
4101
|
+
|
4102
|
+
|
4103
|
+
if not MYPY:
|
4104
|
+
class ComputeHostRecycleDetailArgsDict(TypedDict):
|
4105
|
+
compute_host_group_id: NotRequired[pulumi.Input[builtins.str]]
|
4106
|
+
"""
|
4107
|
+
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.
|
4108
|
+
"""
|
4109
|
+
recycle_level: NotRequired[pulumi.Input[builtins.str]]
|
4110
|
+
"""
|
4111
|
+
Preferred recycle level for hosts associated with the reservation config.
|
4112
|
+
* `SKIP_RECYCLE` - Skips host wipe.
|
4113
|
+
* `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
|
4114
|
+
"""
|
4115
|
+
elif False:
|
4116
|
+
ComputeHostRecycleDetailArgsDict: TypeAlias = Mapping[str, Any]
|
4117
|
+
|
4118
|
+
@pulumi.input_type
|
4119
|
+
class ComputeHostRecycleDetailArgs:
|
4120
|
+
def __init__(__self__, *,
|
4121
|
+
compute_host_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
4122
|
+
recycle_level: Optional[pulumi.Input[builtins.str]] = None):
|
4123
|
+
"""
|
4124
|
+
: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.
|
4125
|
+
:param pulumi.Input[builtins.str] recycle_level: Preferred recycle level for hosts associated with the reservation config.
|
4126
|
+
* `SKIP_RECYCLE` - Skips host wipe.
|
4127
|
+
* `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
|
4128
|
+
"""
|
4129
|
+
if compute_host_group_id is not None:
|
4130
|
+
pulumi.set(__self__, "compute_host_group_id", compute_host_group_id)
|
4131
|
+
if recycle_level is not None:
|
4132
|
+
pulumi.set(__self__, "recycle_level", recycle_level)
|
4133
|
+
|
4134
|
+
@property
|
4135
|
+
@pulumi.getter(name="computeHostGroupId")
|
4136
|
+
def compute_host_group_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
4137
|
+
"""
|
4138
|
+
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.
|
4139
|
+
"""
|
4140
|
+
return pulumi.get(self, "compute_host_group_id")
|
4141
|
+
|
4142
|
+
@compute_host_group_id.setter
|
4143
|
+
def compute_host_group_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
4144
|
+
pulumi.set(self, "compute_host_group_id", value)
|
4145
|
+
|
4146
|
+
@property
|
4147
|
+
@pulumi.getter(name="recycleLevel")
|
4148
|
+
def recycle_level(self) -> Optional[pulumi.Input[builtins.str]]:
|
4149
|
+
"""
|
4150
|
+
Preferred recycle level for hosts associated with the reservation config.
|
4151
|
+
* `SKIP_RECYCLE` - Skips host wipe.
|
4152
|
+
* `FULL_RECYCLE` - Does not skip host wipe. This is the default behavior.
|
4153
|
+
"""
|
4154
|
+
return pulumi.get(self, "recycle_level")
|
4155
|
+
|
4156
|
+
@recycle_level.setter
|
4157
|
+
def recycle_level(self, value: Optional[pulumi.Input[builtins.str]]):
|
4158
|
+
pulumi.set(self, "recycle_level", value)
|
4159
|
+
|
4160
|
+
|
3863
4161
|
if not MYPY:
|
3864
4162
|
class CrossConnectGroupMacsecPropertiesArgsDict(TypedDict):
|
3865
4163
|
state: pulumi.Input[builtins.str]
|
@@ -4246,6 +4544,138 @@ class CrossConnectMacsecPropertiesPrimaryKeyArgs:
|
|
4246
4544
|
pulumi.set(self, "connectivity_association_name_secret_version", value)
|
4247
4545
|
|
4248
4546
|
|
4547
|
+
if not MYPY:
|
4548
|
+
class DedicatedVmHostCapacityBinArgsDict(TypedDict):
|
4549
|
+
capacity_index: NotRequired[pulumi.Input[builtins.int]]
|
4550
|
+
"""
|
4551
|
+
Zero-based index for the corresponding capacity bucket.
|
4552
|
+
"""
|
4553
|
+
remaining_memory_in_gbs: NotRequired[pulumi.Input[builtins.float]]
|
4554
|
+
"""
|
4555
|
+
The current available memory of the dedicated VM host, in GBs.
|
4556
|
+
"""
|
4557
|
+
remaining_ocpus: NotRequired[pulumi.Input[builtins.float]]
|
4558
|
+
"""
|
4559
|
+
The current available OCPUs of the dedicated VM host.
|
4560
|
+
"""
|
4561
|
+
supported_shapes: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
|
4562
|
+
"""
|
4563
|
+
List of VMI shapes supported on each capacity bucket.
|
4564
|
+
"""
|
4565
|
+
total_memory_in_gbs: NotRequired[pulumi.Input[builtins.float]]
|
4566
|
+
"""
|
4567
|
+
The current total memory of the dedicated VM host, in GBs.
|
4568
|
+
"""
|
4569
|
+
total_ocpus: NotRequired[pulumi.Input[builtins.float]]
|
4570
|
+
"""
|
4571
|
+
The current total OCPUs of the dedicated VM host.
|
4572
|
+
"""
|
4573
|
+
elif False:
|
4574
|
+
DedicatedVmHostCapacityBinArgsDict: TypeAlias = Mapping[str, Any]
|
4575
|
+
|
4576
|
+
@pulumi.input_type
|
4577
|
+
class DedicatedVmHostCapacityBinArgs:
|
4578
|
+
def __init__(__self__, *,
|
4579
|
+
capacity_index: Optional[pulumi.Input[builtins.int]] = None,
|
4580
|
+
remaining_memory_in_gbs: Optional[pulumi.Input[builtins.float]] = None,
|
4581
|
+
remaining_ocpus: Optional[pulumi.Input[builtins.float]] = None,
|
4582
|
+
supported_shapes: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
4583
|
+
total_memory_in_gbs: Optional[pulumi.Input[builtins.float]] = None,
|
4584
|
+
total_ocpus: Optional[pulumi.Input[builtins.float]] = None):
|
4585
|
+
"""
|
4586
|
+
:param pulumi.Input[builtins.int] capacity_index: Zero-based index for the corresponding capacity bucket.
|
4587
|
+
:param pulumi.Input[builtins.float] remaining_memory_in_gbs: The current available memory of the dedicated VM host, in GBs.
|
4588
|
+
:param pulumi.Input[builtins.float] remaining_ocpus: The current available OCPUs of the dedicated VM host.
|
4589
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] supported_shapes: List of VMI shapes supported on each capacity bucket.
|
4590
|
+
:param pulumi.Input[builtins.float] total_memory_in_gbs: The current total memory of the dedicated VM host, in GBs.
|
4591
|
+
:param pulumi.Input[builtins.float] total_ocpus: The current total OCPUs of the dedicated VM host.
|
4592
|
+
"""
|
4593
|
+
if capacity_index is not None:
|
4594
|
+
pulumi.set(__self__, "capacity_index", capacity_index)
|
4595
|
+
if remaining_memory_in_gbs is not None:
|
4596
|
+
pulumi.set(__self__, "remaining_memory_in_gbs", remaining_memory_in_gbs)
|
4597
|
+
if remaining_ocpus is not None:
|
4598
|
+
pulumi.set(__self__, "remaining_ocpus", remaining_ocpus)
|
4599
|
+
if supported_shapes is not None:
|
4600
|
+
pulumi.set(__self__, "supported_shapes", supported_shapes)
|
4601
|
+
if total_memory_in_gbs is not None:
|
4602
|
+
pulumi.set(__self__, "total_memory_in_gbs", total_memory_in_gbs)
|
4603
|
+
if total_ocpus is not None:
|
4604
|
+
pulumi.set(__self__, "total_ocpus", total_ocpus)
|
4605
|
+
|
4606
|
+
@property
|
4607
|
+
@pulumi.getter(name="capacityIndex")
|
4608
|
+
def capacity_index(self) -> Optional[pulumi.Input[builtins.int]]:
|
4609
|
+
"""
|
4610
|
+
Zero-based index for the corresponding capacity bucket.
|
4611
|
+
"""
|
4612
|
+
return pulumi.get(self, "capacity_index")
|
4613
|
+
|
4614
|
+
@capacity_index.setter
|
4615
|
+
def capacity_index(self, value: Optional[pulumi.Input[builtins.int]]):
|
4616
|
+
pulumi.set(self, "capacity_index", value)
|
4617
|
+
|
4618
|
+
@property
|
4619
|
+
@pulumi.getter(name="remainingMemoryInGbs")
|
4620
|
+
def remaining_memory_in_gbs(self) -> Optional[pulumi.Input[builtins.float]]:
|
4621
|
+
"""
|
4622
|
+
The current available memory of the dedicated VM host, in GBs.
|
4623
|
+
"""
|
4624
|
+
return pulumi.get(self, "remaining_memory_in_gbs")
|
4625
|
+
|
4626
|
+
@remaining_memory_in_gbs.setter
|
4627
|
+
def remaining_memory_in_gbs(self, value: Optional[pulumi.Input[builtins.float]]):
|
4628
|
+
pulumi.set(self, "remaining_memory_in_gbs", value)
|
4629
|
+
|
4630
|
+
@property
|
4631
|
+
@pulumi.getter(name="remainingOcpus")
|
4632
|
+
def remaining_ocpus(self) -> Optional[pulumi.Input[builtins.float]]:
|
4633
|
+
"""
|
4634
|
+
The current available OCPUs of the dedicated VM host.
|
4635
|
+
"""
|
4636
|
+
return pulumi.get(self, "remaining_ocpus")
|
4637
|
+
|
4638
|
+
@remaining_ocpus.setter
|
4639
|
+
def remaining_ocpus(self, value: Optional[pulumi.Input[builtins.float]]):
|
4640
|
+
pulumi.set(self, "remaining_ocpus", value)
|
4641
|
+
|
4642
|
+
@property
|
4643
|
+
@pulumi.getter(name="supportedShapes")
|
4644
|
+
def supported_shapes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
4645
|
+
"""
|
4646
|
+
List of VMI shapes supported on each capacity bucket.
|
4647
|
+
"""
|
4648
|
+
return pulumi.get(self, "supported_shapes")
|
4649
|
+
|
4650
|
+
@supported_shapes.setter
|
4651
|
+
def supported_shapes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
4652
|
+
pulumi.set(self, "supported_shapes", value)
|
4653
|
+
|
4654
|
+
@property
|
4655
|
+
@pulumi.getter(name="totalMemoryInGbs")
|
4656
|
+
def total_memory_in_gbs(self) -> Optional[pulumi.Input[builtins.float]]:
|
4657
|
+
"""
|
4658
|
+
The current total memory of the dedicated VM host, in GBs.
|
4659
|
+
"""
|
4660
|
+
return pulumi.get(self, "total_memory_in_gbs")
|
4661
|
+
|
4662
|
+
@total_memory_in_gbs.setter
|
4663
|
+
def total_memory_in_gbs(self, value: Optional[pulumi.Input[builtins.float]]):
|
4664
|
+
pulumi.set(self, "total_memory_in_gbs", value)
|
4665
|
+
|
4666
|
+
@property
|
4667
|
+
@pulumi.getter(name="totalOcpus")
|
4668
|
+
def total_ocpus(self) -> Optional[pulumi.Input[builtins.float]]:
|
4669
|
+
"""
|
4670
|
+
The current total OCPUs of the dedicated VM host.
|
4671
|
+
"""
|
4672
|
+
return pulumi.get(self, "total_ocpus")
|
4673
|
+
|
4674
|
+
@total_ocpus.setter
|
4675
|
+
def total_ocpus(self, value: Optional[pulumi.Input[builtins.float]]):
|
4676
|
+
pulumi.set(self, "total_ocpus", value)
|
4677
|
+
|
4678
|
+
|
4249
4679
|
if not MYPY:
|
4250
4680
|
class DedicatedVmHostPlacementConstraintDetailsArgsDict(TypedDict):
|
4251
4681
|
type: pulumi.Input[builtins.str]
|
@@ -21220,6 +21650,53 @@ class GetComputeGpuMemoryFabricsFilterArgs:
|
|
21220
21650
|
pulumi.set(self, "regex", value)
|
21221
21651
|
|
21222
21652
|
|
21653
|
+
if not MYPY:
|
21654
|
+
class GetComputeHostGroupsFilterArgsDict(TypedDict):
|
21655
|
+
name: builtins.str
|
21656
|
+
values: Sequence[builtins.str]
|
21657
|
+
regex: NotRequired[builtins.bool]
|
21658
|
+
elif False:
|
21659
|
+
GetComputeHostGroupsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
21660
|
+
|
21661
|
+
@pulumi.input_type
|
21662
|
+
class GetComputeHostGroupsFilterArgs:
|
21663
|
+
def __init__(__self__, *,
|
21664
|
+
name: builtins.str,
|
21665
|
+
values: Sequence[builtins.str],
|
21666
|
+
regex: Optional[builtins.bool] = None):
|
21667
|
+
pulumi.set(__self__, "name", name)
|
21668
|
+
pulumi.set(__self__, "values", values)
|
21669
|
+
if regex is not None:
|
21670
|
+
pulumi.set(__self__, "regex", regex)
|
21671
|
+
|
21672
|
+
@property
|
21673
|
+
@pulumi.getter
|
21674
|
+
def name(self) -> builtins.str:
|
21675
|
+
return pulumi.get(self, "name")
|
21676
|
+
|
21677
|
+
@name.setter
|
21678
|
+
def name(self, value: builtins.str):
|
21679
|
+
pulumi.set(self, "name", value)
|
21680
|
+
|
21681
|
+
@property
|
21682
|
+
@pulumi.getter
|
21683
|
+
def values(self) -> Sequence[builtins.str]:
|
21684
|
+
return pulumi.get(self, "values")
|
21685
|
+
|
21686
|
+
@values.setter
|
21687
|
+
def values(self, value: Sequence[builtins.str]):
|
21688
|
+
pulumi.set(self, "values", value)
|
21689
|
+
|
21690
|
+
@property
|
21691
|
+
@pulumi.getter
|
21692
|
+
def regex(self) -> Optional[builtins.bool]:
|
21693
|
+
return pulumi.get(self, "regex")
|
21694
|
+
|
21695
|
+
@regex.setter
|
21696
|
+
def regex(self, value: Optional[builtins.bool]):
|
21697
|
+
pulumi.set(self, "regex", value)
|
21698
|
+
|
21699
|
+
|
21223
21700
|
if not MYPY:
|
21224
21701
|
class GetComputeHostsFilterArgsDict(TypedDict):
|
21225
21702
|
name: builtins.str
|