pulumi-oci 3.1.0a1750143229__py3-none-any.whl → 3.1.0a1751948424__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +299 -0
- pulumi_oci/capacitymanagement/__init__.py +18 -0
- pulumi_oci/capacitymanagement/_inputs.py +459 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
- pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
- pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
- pulumi_oci/capacitymanagement/outputs.py +3499 -1230
- pulumi_oci/containerengine/get_cluster.py +7 -7
- pulumi_oci/core/__init__.py +4 -0
- pulumi_oci/core/_inputs.py +477 -0
- pulumi_oci/core/compute_host.py +910 -0
- pulumi_oci/core/compute_host_group.py +648 -0
- pulumi_oci/core/dedicated_vm_host.py +56 -0
- pulumi_oci/core/get_compute_host.py +72 -1
- pulumi_oci/core/get_compute_host_group.py +269 -0
- pulumi_oci/core/get_compute_host_groups.py +148 -0
- pulumi_oci/core/get_compute_hosts.py +37 -1
- pulumi_oci/core/get_dedicated_vm_host.py +29 -1
- pulumi_oci/core/outputs.py +912 -24
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +739 -52
- pulumi_oci/database/autonomous_container_database.py +141 -12
- pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
- pulumi_oci/database/autonomous_database_software_image.py +28 -0
- pulumi_oci/database/autonomous_vm_cluster.py +28 -0
- pulumi_oci/database/backup_destination.py +28 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +82 -7
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/database_software_image.py +28 -0
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/db_home.py +28 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/db_system.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
- pulumi_oci/database/external_container_database.py +28 -0
- pulumi_oci/database/external_database_connector.py +28 -0
- pulumi_oci/database/external_non_container_database.py +28 -0
- pulumi_oci/database/external_pluggable_database.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +52 -2
- pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
- pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
- pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
- pulumi_oci/database/get_backup_destination.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_database_software_image.py +15 -1
- pulumi_oci/database/get_db_home.py +15 -1
- pulumi_oci/database/get_db_node.py +15 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_external_container_database.py +15 -1
- pulumi_oci/database/get_external_database_connector.py +15 -1
- pulumi_oci/database/get_external_non_container_database.py +15 -1
- pulumi_oci/database/get_external_pluggable_database.py +15 -1
- pulumi_oci/database/get_key_store.py +15 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_oneoff_patch.py +15 -1
- pulumi_oci/database/get_pluggable_database.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/get_vm_cluster_network.py +15 -1
- pulumi_oci/database/key_store.py +28 -0
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/oneoff_patch.py +28 -0
- pulumi_oci/database/outputs.py +1624 -54
- pulumi_oci/database/pluggable_database.py +28 -0
- pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
- pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
- pulumi_oci/database/vm_cluster.py +28 -0
- pulumi_oci/database/vm_cluster_network.py +28 -0
- pulumi_oci/databasemanagement/__init__.py +7 -0
- pulumi_oci/databasemanagement/_inputs.py +196 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
- pulumi_oci/databasemanagement/outputs.py +1330 -19
- pulumi_oci/databasemigration/_inputs.py +94 -0
- pulumi_oci/databasemigration/get_migration.py +15 -1
- pulumi_oci/databasemigration/get_migrations.py +15 -1
- pulumi_oci/databasemigration/job.py +28 -0
- pulumi_oci/databasemigration/migration.py +52 -3
- pulumi_oci/databasemigration/outputs.py +73 -0
- pulumi_oci/dataflow/_inputs.py +20 -0
- pulumi_oci/dataflow/outputs.py +36 -0
- pulumi_oci/fleetappsmanagement/__init__.py +48 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
- pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
- pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
- pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
- pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
- pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
- pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
- pulumi_oci/fleetappsmanagement/get_property.py +1 -1
- pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
- pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
- pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
- pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
- pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
- pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
- pulumi_oci/fleetappsmanagement/patch.py +980 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
- pulumi_oci/fleetappsmanagement/property.py +28 -27
- pulumi_oci/fleetappsmanagement/provision.py +1195 -0
- pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
- pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
- pulumi_oci/fleetappsmanagement/task_record.py +786 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
- pulumi_oci/goldengate/_inputs.py +449 -3
- pulumi_oci/goldengate/connection.py +200 -56
- pulumi_oci/goldengate/get_connection.py +59 -28
- pulumi_oci/goldengate/get_connections.py +0 -3
- pulumi_oci/goldengate/outputs.py +886 -22
- pulumi_oci/loadbalancer/_inputs.py +24 -6
- pulumi_oci/loadbalancer/backend.py +35 -7
- pulumi_oci/loadbalancer/backend_set.py +35 -7
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/loadbalancer/load_balancer.py +81 -0
- pulumi_oci/loadbalancer/outputs.py +29 -10
- pulumi_oci/loganalytics/__init__.py +3 -0
- pulumi_oci/loganalytics/_inputs.py +123 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
- pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
- pulumi_oci/loganalytics/outputs.py +258 -0
- pulumi_oci/mysql/_inputs.py +274 -0
- pulumi_oci/mysql/get_mysql_backup.py +29 -1
- pulumi_oci/mysql/get_mysql_backups.py +23 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/get_replica.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +98 -2
- pulumi_oci/mysql/mysql_db_system.py +57 -0
- pulumi_oci/mysql/outputs.py +594 -0
- pulumi_oci/mysql/replica.py +28 -0
- pulumi_oci/nosql/__init__.py +2 -0
- pulumi_oci/nosql/_inputs.py +129 -3
- pulumi_oci/nosql/configuration.py +383 -0
- pulumi_oci/nosql/get_configuration.py +162 -0
- pulumi_oci/nosql/index.py +7 -7
- pulumi_oci/nosql/outputs.py +164 -2
- pulumi_oci/nosql/table_replica.py +9 -9
- pulumi_oci/oci/__init__.py +56 -0
- pulumi_oci/oci/_inputs.py +1615 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
- pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
- pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
- pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
- pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
- pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
- pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
- pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
- pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
- pulumi_oci/oci/outputs.py +5617 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +8 -0
- pulumi_oci/redis/_inputs.py +179 -0
- pulumi_oci/redis/get_oci_cache_user.py +283 -0
- pulumi_oci/redis/get_oci_cache_users.py +192 -0
- pulumi_oci/redis/oci_cache_user.py +695 -0
- pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
- pulumi_oci/redis/outputs.py +330 -0
- pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
- pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
@@ -27,6 +27,7 @@ __all__ = [
|
|
27
27
|
'FsuCycleGoalVersionDetails',
|
28
28
|
'FsuCycleNextActionToExecute',
|
29
29
|
'FsuCycleStageActionSchedule',
|
30
|
+
'FsuCycleUpgradeDetails',
|
30
31
|
'GetFsuCollectionActiveFsuCycleResult',
|
31
32
|
'GetFsuCollectionFleetDiscoveryResult',
|
32
33
|
'GetFsuCollectionFleetDiscoveryFilterResult',
|
@@ -44,6 +45,7 @@ __all__ = [
|
|
44
45
|
'GetFsuCycleGoalVersionDetailResult',
|
45
46
|
'GetFsuCycleNextActionToExecuteResult',
|
46
47
|
'GetFsuCycleStageActionScheduleResult',
|
48
|
+
'GetFsuCycleUpgradeDetailResult',
|
47
49
|
'GetFsuCyclesFilterResult',
|
48
50
|
'GetFsuCyclesFsuCycleSummaryCollectionResult',
|
49
51
|
'GetFsuCyclesFsuCycleSummaryCollectionItemResult',
|
@@ -53,6 +55,7 @@ __all__ = [
|
|
53
55
|
'GetFsuCyclesFsuCycleSummaryCollectionItemGoalVersionDetailResult',
|
54
56
|
'GetFsuCyclesFsuCycleSummaryCollectionItemNextActionToExecuteResult',
|
55
57
|
'GetFsuCyclesFsuCycleSummaryCollectionItemStageActionScheduleResult',
|
58
|
+
'GetFsuCyclesFsuCycleSummaryCollectionItemUpgradeDetailResult',
|
56
59
|
]
|
57
60
|
|
58
61
|
@pulumi.output_type
|
@@ -613,11 +616,7 @@ class FsuCycleNextActionToExecute(dict):
|
|
613
616
|
type: Optional[builtins.str] = None):
|
614
617
|
"""
|
615
618
|
:param builtins.str time_to_start: The date and time the Exadata Fleet Update Action is expected to start. [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
|
616
|
-
:param builtins.str type: (Updatable) Type of Exadata Fleet Update Cycle.
|
617
|
-
|
618
|
-
|
619
|
-
** IMPORTANT **
|
620
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
619
|
+
:param builtins.str type: (Updatable) Type of Exadata Fleet Update Cycle.
|
621
620
|
"""
|
622
621
|
if time_to_start is not None:
|
623
622
|
pulumi.set(__self__, "time_to_start", time_to_start)
|
@@ -636,11 +635,7 @@ class FsuCycleNextActionToExecute(dict):
|
|
636
635
|
@pulumi.getter
|
637
636
|
def type(self) -> Optional[builtins.str]:
|
638
637
|
"""
|
639
|
-
(Updatable) Type of Exadata Fleet Update Cycle.
|
640
|
-
|
641
|
-
|
642
|
-
** IMPORTANT **
|
643
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
638
|
+
(Updatable) Type of Exadata Fleet Update Cycle.
|
644
639
|
"""
|
645
640
|
return pulumi.get(self, "type")
|
646
641
|
|
@@ -691,6 +686,77 @@ class FsuCycleStageActionSchedule(dict):
|
|
691
686
|
return pulumi.get(self, "type")
|
692
687
|
|
693
688
|
|
689
|
+
@pulumi.output_type
|
690
|
+
class FsuCycleUpgradeDetails(dict):
|
691
|
+
@staticmethod
|
692
|
+
def __key_warning(key: str):
|
693
|
+
suggest = None
|
694
|
+
if key == "collectionType":
|
695
|
+
suggest = "collection_type"
|
696
|
+
elif key == "isRecompileInvalidObjects":
|
697
|
+
suggest = "is_recompile_invalid_objects"
|
698
|
+
elif key == "isTimeZoneUpgrade":
|
699
|
+
suggest = "is_time_zone_upgrade"
|
700
|
+
|
701
|
+
if suggest:
|
702
|
+
pulumi.log.warn(f"Key '{key}' not found in FsuCycleUpgradeDetails. Access the value via the '{suggest}' property getter instead.")
|
703
|
+
|
704
|
+
def __getitem__(self, key: str) -> Any:
|
705
|
+
FsuCycleUpgradeDetails.__key_warning(key)
|
706
|
+
return super().__getitem__(key)
|
707
|
+
|
708
|
+
def get(self, key: str, default = None) -> Any:
|
709
|
+
FsuCycleUpgradeDetails.__key_warning(key)
|
710
|
+
return super().get(key, default)
|
711
|
+
|
712
|
+
def __init__(__self__, *,
|
713
|
+
collection_type: builtins.str,
|
714
|
+
is_recompile_invalid_objects: Optional[builtins.bool] = None,
|
715
|
+
is_time_zone_upgrade: Optional[builtins.bool] = None):
|
716
|
+
"""
|
717
|
+
:param builtins.str collection_type: (Updatable) Type of Exadata Fleet Update collection being upgraded.
|
718
|
+
:param builtins.bool is_recompile_invalid_objects: (Updatable) Enables or disables the recompilation of invalid objects.
|
719
|
+
:param builtins.bool is_time_zone_upgrade: (Updatable) Enables or disables time zone upgrade.
|
720
|
+
|
721
|
+
|
722
|
+
** IMPORTANT **
|
723
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
724
|
+
"""
|
725
|
+
pulumi.set(__self__, "collection_type", collection_type)
|
726
|
+
if is_recompile_invalid_objects is not None:
|
727
|
+
pulumi.set(__self__, "is_recompile_invalid_objects", is_recompile_invalid_objects)
|
728
|
+
if is_time_zone_upgrade is not None:
|
729
|
+
pulumi.set(__self__, "is_time_zone_upgrade", is_time_zone_upgrade)
|
730
|
+
|
731
|
+
@property
|
732
|
+
@pulumi.getter(name="collectionType")
|
733
|
+
def collection_type(self) -> builtins.str:
|
734
|
+
"""
|
735
|
+
(Updatable) Type of Exadata Fleet Update collection being upgraded.
|
736
|
+
"""
|
737
|
+
return pulumi.get(self, "collection_type")
|
738
|
+
|
739
|
+
@property
|
740
|
+
@pulumi.getter(name="isRecompileInvalidObjects")
|
741
|
+
def is_recompile_invalid_objects(self) -> Optional[builtins.bool]:
|
742
|
+
"""
|
743
|
+
(Updatable) Enables or disables the recompilation of invalid objects.
|
744
|
+
"""
|
745
|
+
return pulumi.get(self, "is_recompile_invalid_objects")
|
746
|
+
|
747
|
+
@property
|
748
|
+
@pulumi.getter(name="isTimeZoneUpgrade")
|
749
|
+
def is_time_zone_upgrade(self) -> Optional[builtins.bool]:
|
750
|
+
"""
|
751
|
+
(Updatable) Enables or disables time zone upgrade.
|
752
|
+
|
753
|
+
|
754
|
+
** IMPORTANT **
|
755
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
756
|
+
"""
|
757
|
+
return pulumi.get(self, "is_time_zone_upgrade")
|
758
|
+
|
759
|
+
|
694
760
|
@pulumi.output_type
|
695
761
|
class GetFsuCollectionActiveFsuCycleResult(dict):
|
696
762
|
def __init__(__self__, *,
|
@@ -1594,6 +1660,46 @@ class GetFsuCycleStageActionScheduleResult(dict):
|
|
1594
1660
|
return pulumi.get(self, "type")
|
1595
1661
|
|
1596
1662
|
|
1663
|
+
@pulumi.output_type
|
1664
|
+
class GetFsuCycleUpgradeDetailResult(dict):
|
1665
|
+
def __init__(__self__, *,
|
1666
|
+
collection_type: builtins.str,
|
1667
|
+
is_recompile_invalid_objects: builtins.bool,
|
1668
|
+
is_time_zone_upgrade: builtins.bool):
|
1669
|
+
"""
|
1670
|
+
:param builtins.str collection_type: Type of Exadata Fleet Update collection being upgraded.
|
1671
|
+
:param builtins.bool is_recompile_invalid_objects: Enables or disables the recompilation of invalid objects.
|
1672
|
+
:param builtins.bool is_time_zone_upgrade: Enables or disables time zone upgrade.
|
1673
|
+
"""
|
1674
|
+
pulumi.set(__self__, "collection_type", collection_type)
|
1675
|
+
pulumi.set(__self__, "is_recompile_invalid_objects", is_recompile_invalid_objects)
|
1676
|
+
pulumi.set(__self__, "is_time_zone_upgrade", is_time_zone_upgrade)
|
1677
|
+
|
1678
|
+
@property
|
1679
|
+
@pulumi.getter(name="collectionType")
|
1680
|
+
def collection_type(self) -> builtins.str:
|
1681
|
+
"""
|
1682
|
+
Type of Exadata Fleet Update collection being upgraded.
|
1683
|
+
"""
|
1684
|
+
return pulumi.get(self, "collection_type")
|
1685
|
+
|
1686
|
+
@property
|
1687
|
+
@pulumi.getter(name="isRecompileInvalidObjects")
|
1688
|
+
def is_recompile_invalid_objects(self) -> builtins.bool:
|
1689
|
+
"""
|
1690
|
+
Enables or disables the recompilation of invalid objects.
|
1691
|
+
"""
|
1692
|
+
return pulumi.get(self, "is_recompile_invalid_objects")
|
1693
|
+
|
1694
|
+
@property
|
1695
|
+
@pulumi.getter(name="isTimeZoneUpgrade")
|
1696
|
+
def is_time_zone_upgrade(self) -> builtins.bool:
|
1697
|
+
"""
|
1698
|
+
Enables or disables time zone upgrade.
|
1699
|
+
"""
|
1700
|
+
return pulumi.get(self, "is_time_zone_upgrade")
|
1701
|
+
|
1702
|
+
|
1597
1703
|
@pulumi.output_type
|
1598
1704
|
class GetFsuCyclesFilterResult(dict):
|
1599
1705
|
def __init__(__self__, *,
|
@@ -1663,7 +1769,8 @@ class GetFsuCyclesFsuCycleSummaryCollectionItemResult(dict):
|
|
1663
1769
|
time_created: builtins.str,
|
1664
1770
|
time_finished: builtins.str,
|
1665
1771
|
time_updated: builtins.str,
|
1666
|
-
type: builtins.str
|
1772
|
+
type: builtins.str,
|
1773
|
+
upgrade_details: Sequence['outputs.GetFsuCyclesFsuCycleSummaryCollectionItemUpgradeDetailResult']):
|
1667
1774
|
"""
|
1668
1775
|
:param Sequence['GetFsuCyclesFsuCycleSummaryCollectionItemApplyActionScheduleArgs'] apply_action_schedules: Scheduling related details for the Exadata Fleet Update Action. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails would execute the Exadata Fleet Update Action as soon as possible.
|
1669
1776
|
:param Sequence['GetFsuCyclesFsuCycleSummaryCollectionItemBatchingStrategyArgs'] batching_strategies: Batching strategy details to use during PRECHECK and APPLY Cycle Actions.
|
@@ -1677,8 +1784,8 @@ class GetFsuCyclesFsuCycleSummaryCollectionItemResult(dict):
|
|
1677
1784
|
:param builtins.str fsu_collection_id: A filter to return only resources whose fsuCollectionId matches the given fsuCollectionId.
|
1678
1785
|
:param Sequence['GetFsuCyclesFsuCycleSummaryCollectionItemGoalVersionDetailArgs'] goal_version_details: Goal version or image details for the Exadata Fleet Update Cycle.
|
1679
1786
|
:param builtins.str id: OCID identifier for the Exadata Fleet Update Cycle.
|
1680
|
-
:param Sequence[builtins.str] is_ignore_missing_patches: List of
|
1681
|
-
:param builtins.bool is_ignore_patches: Ignore
|
1787
|
+
:param Sequence[builtins.str] is_ignore_missing_patches: List of identifiers of patches to ignore.
|
1788
|
+
:param builtins.bool is_ignore_patches: Ignore patch conflicts or missing patches between the source and goal homes.
|
1682
1789
|
:param builtins.bool is_keep_placement: Ensure that services of administrator-managed Oracle RAC or Oracle RAC One databases are running on the same instances before and after the move operation.
|
1683
1790
|
:param builtins.str last_completed_action: The latest Action type that was completed in the Exadata Fleet Update Cycle. No value would indicate that the Cycle has not completed any Action yet.
|
1684
1791
|
:param builtins.str last_completed_action_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the latest Action in the Exadata Fleet Update Cycle.
|
@@ -1693,6 +1800,7 @@ class GetFsuCyclesFsuCycleSummaryCollectionItemResult(dict):
|
|
1693
1800
|
:param builtins.str time_finished: The date and time the Exadata Fleet Update Cycle was finished, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
1694
1801
|
:param builtins.str time_updated: The date and time the Exadata Fleet Update Cycle was updated, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
|
1695
1802
|
:param builtins.str type: Type of Exadata Fleet Update Cycle.
|
1803
|
+
:param Sequence['GetFsuCyclesFsuCycleSummaryCollectionItemUpgradeDetailArgs'] upgrade_details: Details of supported upgrade options for DB or GI collection.
|
1696
1804
|
"""
|
1697
1805
|
pulumi.set(__self__, "apply_action_schedules", apply_action_schedules)
|
1698
1806
|
pulumi.set(__self__, "batching_strategies", batching_strategies)
|
@@ -1722,6 +1830,7 @@ class GetFsuCyclesFsuCycleSummaryCollectionItemResult(dict):
|
|
1722
1830
|
pulumi.set(__self__, "time_finished", time_finished)
|
1723
1831
|
pulumi.set(__self__, "time_updated", time_updated)
|
1724
1832
|
pulumi.set(__self__, "type", type)
|
1833
|
+
pulumi.set(__self__, "upgrade_details", upgrade_details)
|
1725
1834
|
|
1726
1835
|
@property
|
1727
1836
|
@pulumi.getter(name="applyActionSchedules")
|
@@ -1823,7 +1932,7 @@ class GetFsuCyclesFsuCycleSummaryCollectionItemResult(dict):
|
|
1823
1932
|
@pulumi.getter(name="isIgnoreMissingPatches")
|
1824
1933
|
def is_ignore_missing_patches(self) -> Sequence[builtins.str]:
|
1825
1934
|
"""
|
1826
|
-
List of
|
1935
|
+
List of identifiers of patches to ignore.
|
1827
1936
|
"""
|
1828
1937
|
return pulumi.get(self, "is_ignore_missing_patches")
|
1829
1938
|
|
@@ -1831,7 +1940,7 @@ class GetFsuCyclesFsuCycleSummaryCollectionItemResult(dict):
|
|
1831
1940
|
@pulumi.getter(name="isIgnorePatches")
|
1832
1941
|
def is_ignore_patches(self) -> builtins.bool:
|
1833
1942
|
"""
|
1834
|
-
Ignore
|
1943
|
+
Ignore patch conflicts or missing patches between the source and goal homes.
|
1835
1944
|
"""
|
1836
1945
|
return pulumi.get(self, "is_ignore_patches")
|
1837
1946
|
|
@@ -1947,6 +2056,14 @@ class GetFsuCyclesFsuCycleSummaryCollectionItemResult(dict):
|
|
1947
2056
|
"""
|
1948
2057
|
return pulumi.get(self, "type")
|
1949
2058
|
|
2059
|
+
@property
|
2060
|
+
@pulumi.getter(name="upgradeDetails")
|
2061
|
+
def upgrade_details(self) -> Sequence['outputs.GetFsuCyclesFsuCycleSummaryCollectionItemUpgradeDetailResult']:
|
2062
|
+
"""
|
2063
|
+
Details of supported upgrade options for DB or GI collection.
|
2064
|
+
"""
|
2065
|
+
return pulumi.get(self, "upgrade_details")
|
2066
|
+
|
1950
2067
|
|
1951
2068
|
@pulumi.output_type
|
1952
2069
|
class GetFsuCyclesFsuCycleSummaryCollectionItemApplyActionScheduleResult(dict):
|
@@ -2166,3 +2283,43 @@ class GetFsuCyclesFsuCycleSummaryCollectionItemStageActionScheduleResult(dict):
|
|
2166
2283
|
return pulumi.get(self, "type")
|
2167
2284
|
|
2168
2285
|
|
2286
|
+
@pulumi.output_type
|
2287
|
+
class GetFsuCyclesFsuCycleSummaryCollectionItemUpgradeDetailResult(dict):
|
2288
|
+
def __init__(__self__, *,
|
2289
|
+
collection_type: builtins.str,
|
2290
|
+
is_recompile_invalid_objects: builtins.bool,
|
2291
|
+
is_time_zone_upgrade: builtins.bool):
|
2292
|
+
"""
|
2293
|
+
:param builtins.str collection_type: A filter to return only resources whose Collection type matches the given type.
|
2294
|
+
:param builtins.bool is_recompile_invalid_objects: Enables or disables the recompilation of invalid objects.
|
2295
|
+
:param builtins.bool is_time_zone_upgrade: Enables or disables time zone upgrade.
|
2296
|
+
"""
|
2297
|
+
pulumi.set(__self__, "collection_type", collection_type)
|
2298
|
+
pulumi.set(__self__, "is_recompile_invalid_objects", is_recompile_invalid_objects)
|
2299
|
+
pulumi.set(__self__, "is_time_zone_upgrade", is_time_zone_upgrade)
|
2300
|
+
|
2301
|
+
@property
|
2302
|
+
@pulumi.getter(name="collectionType")
|
2303
|
+
def collection_type(self) -> builtins.str:
|
2304
|
+
"""
|
2305
|
+
A filter to return only resources whose Collection type matches the given type.
|
2306
|
+
"""
|
2307
|
+
return pulumi.get(self, "collection_type")
|
2308
|
+
|
2309
|
+
@property
|
2310
|
+
@pulumi.getter(name="isRecompileInvalidObjects")
|
2311
|
+
def is_recompile_invalid_objects(self) -> builtins.bool:
|
2312
|
+
"""
|
2313
|
+
Enables or disables the recompilation of invalid objects.
|
2314
|
+
"""
|
2315
|
+
return pulumi.get(self, "is_recompile_invalid_objects")
|
2316
|
+
|
2317
|
+
@property
|
2318
|
+
@pulumi.getter(name="isTimeZoneUpgrade")
|
2319
|
+
def is_time_zone_upgrade(self) -> builtins.bool:
|
2320
|
+
"""
|
2321
|
+
Enables or disables time zone upgrade.
|
2322
|
+
"""
|
2323
|
+
return pulumi.get(self, "is_time_zone_upgrade")
|
2324
|
+
|
2325
|
+
|