pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.2.0a1752121229__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 +339 -0
- pulumi_oci/bigdataservice/__init__.py +10 -0
- pulumi_oci/bigdataservice/_inputs.py +378 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup.py +481 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup_configuration.py +611 -0
- pulumi_oci/bigdataservice/bds_instance_node_replace_configuration.py +538 -0
- pulumi_oci/bigdataservice/bds_instance_replace_node_action.py +406 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup.py +245 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configuration.py +263 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configurations.py +192 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backups.py +211 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configuration.py +246 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configurations.py +192 -0
- pulumi_oci/bigdataservice/outputs.py +798 -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/generativeai/__init__.py +3 -0
- pulumi_oci/generativeai/_inputs.py +1479 -132
- pulumi_oci/generativeai/agent_agent.py +66 -11
- pulumi_oci/generativeai/agent_agent_endpoint.py +296 -25
- pulumi_oci/generativeai/agent_data_source.py +70 -21
- pulumi_oci/generativeai/agent_tool.py +619 -0
- pulumi_oci/generativeai/get_agent_agent.py +17 -2
- pulumi_oci/generativeai/get_agent_agent_endpoint.py +72 -6
- pulumi_oci/generativeai/get_agent_agent_endpoints.py +0 -4
- pulumi_oci/generativeai/get_agent_data_source.py +15 -1
- pulumi_oci/generativeai/get_agent_tool.py +283 -0
- pulumi_oci/generativeai/get_agent_tools.py +214 -0
- pulumi_oci/generativeai/outputs.py +4001 -1259
- 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/kms/vault_verification.py +62 -2
- 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/ospgateway/_inputs.py +20 -0
- pulumi_oci/ospgateway/get_subscription.py +15 -1
- pulumi_oci/ospgateway/outputs.py +47 -0
- pulumi_oci/ospgateway/subscription.py +28 -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.2.0a1752121229.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/RECORD +313 -159
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/top_level.txt +0 -0
@@ -36,6 +36,8 @@ __all__ = [
|
|
36
36
|
'FsuCycleNextActionToExecuteArgsDict',
|
37
37
|
'FsuCycleStageActionScheduleArgs',
|
38
38
|
'FsuCycleStageActionScheduleArgsDict',
|
39
|
+
'FsuCycleUpgradeDetailsArgs',
|
40
|
+
'FsuCycleUpgradeDetailsArgsDict',
|
39
41
|
'GetFsuCollectionsFilterArgs',
|
40
42
|
'GetFsuCollectionsFilterArgsDict',
|
41
43
|
'GetFsuCyclesFilterArgs',
|
@@ -741,11 +743,7 @@ if not MYPY:
|
|
741
743
|
"""
|
742
744
|
type: NotRequired[pulumi.Input[builtins.str]]
|
743
745
|
"""
|
744
|
-
(Updatable) Type of Exadata Fleet Update Cycle.
|
745
|
-
|
746
|
-
|
747
|
-
** IMPORTANT **
|
748
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
746
|
+
(Updatable) Type of Exadata Fleet Update Cycle.
|
749
747
|
"""
|
750
748
|
elif False:
|
751
749
|
FsuCycleNextActionToExecuteArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -757,11 +755,7 @@ class FsuCycleNextActionToExecuteArgs:
|
|
757
755
|
type: Optional[pulumi.Input[builtins.str]] = None):
|
758
756
|
"""
|
759
757
|
:param pulumi.Input[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.
|
760
|
-
:param pulumi.Input[builtins.str] type: (Updatable) Type of Exadata Fleet Update Cycle.
|
761
|
-
|
762
|
-
|
763
|
-
** IMPORTANT **
|
764
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
758
|
+
:param pulumi.Input[builtins.str] type: (Updatable) Type of Exadata Fleet Update Cycle.
|
765
759
|
"""
|
766
760
|
if time_to_start is not None:
|
767
761
|
pulumi.set(__self__, "time_to_start", time_to_start)
|
@@ -784,11 +778,7 @@ class FsuCycleNextActionToExecuteArgs:
|
|
784
778
|
@pulumi.getter
|
785
779
|
def type(self) -> Optional[pulumi.Input[builtins.str]]:
|
786
780
|
"""
|
787
|
-
(Updatable) Type of Exadata Fleet Update Cycle.
|
788
|
-
|
789
|
-
|
790
|
-
** IMPORTANT **
|
791
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
781
|
+
(Updatable) Type of Exadata Fleet Update Cycle.
|
792
782
|
"""
|
793
783
|
return pulumi.get(self, "type")
|
794
784
|
|
@@ -847,6 +837,89 @@ class FsuCycleStageActionScheduleArgs:
|
|
847
837
|
pulumi.set(self, "type", value)
|
848
838
|
|
849
839
|
|
840
|
+
if not MYPY:
|
841
|
+
class FsuCycleUpgradeDetailsArgsDict(TypedDict):
|
842
|
+
collection_type: pulumi.Input[builtins.str]
|
843
|
+
"""
|
844
|
+
(Updatable) Type of Exadata Fleet Update collection being upgraded.
|
845
|
+
"""
|
846
|
+
is_recompile_invalid_objects: NotRequired[pulumi.Input[builtins.bool]]
|
847
|
+
"""
|
848
|
+
(Updatable) Enables or disables the recompilation of invalid objects.
|
849
|
+
"""
|
850
|
+
is_time_zone_upgrade: NotRequired[pulumi.Input[builtins.bool]]
|
851
|
+
"""
|
852
|
+
(Updatable) Enables or disables time zone upgrade.
|
853
|
+
|
854
|
+
|
855
|
+
** IMPORTANT **
|
856
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
857
|
+
"""
|
858
|
+
elif False:
|
859
|
+
FsuCycleUpgradeDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
860
|
+
|
861
|
+
@pulumi.input_type
|
862
|
+
class FsuCycleUpgradeDetailsArgs:
|
863
|
+
def __init__(__self__, *,
|
864
|
+
collection_type: pulumi.Input[builtins.str],
|
865
|
+
is_recompile_invalid_objects: Optional[pulumi.Input[builtins.bool]] = None,
|
866
|
+
is_time_zone_upgrade: Optional[pulumi.Input[builtins.bool]] = None):
|
867
|
+
"""
|
868
|
+
:param pulumi.Input[builtins.str] collection_type: (Updatable) Type of Exadata Fleet Update collection being upgraded.
|
869
|
+
:param pulumi.Input[builtins.bool] is_recompile_invalid_objects: (Updatable) Enables or disables the recompilation of invalid objects.
|
870
|
+
:param pulumi.Input[builtins.bool] is_time_zone_upgrade: (Updatable) Enables or disables time zone upgrade.
|
871
|
+
|
872
|
+
|
873
|
+
** IMPORTANT **
|
874
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
875
|
+
"""
|
876
|
+
pulumi.set(__self__, "collection_type", collection_type)
|
877
|
+
if is_recompile_invalid_objects is not None:
|
878
|
+
pulumi.set(__self__, "is_recompile_invalid_objects", is_recompile_invalid_objects)
|
879
|
+
if is_time_zone_upgrade is not None:
|
880
|
+
pulumi.set(__self__, "is_time_zone_upgrade", is_time_zone_upgrade)
|
881
|
+
|
882
|
+
@property
|
883
|
+
@pulumi.getter(name="collectionType")
|
884
|
+
def collection_type(self) -> pulumi.Input[builtins.str]:
|
885
|
+
"""
|
886
|
+
(Updatable) Type of Exadata Fleet Update collection being upgraded.
|
887
|
+
"""
|
888
|
+
return pulumi.get(self, "collection_type")
|
889
|
+
|
890
|
+
@collection_type.setter
|
891
|
+
def collection_type(self, value: pulumi.Input[builtins.str]):
|
892
|
+
pulumi.set(self, "collection_type", value)
|
893
|
+
|
894
|
+
@property
|
895
|
+
@pulumi.getter(name="isRecompileInvalidObjects")
|
896
|
+
def is_recompile_invalid_objects(self) -> Optional[pulumi.Input[builtins.bool]]:
|
897
|
+
"""
|
898
|
+
(Updatable) Enables or disables the recompilation of invalid objects.
|
899
|
+
"""
|
900
|
+
return pulumi.get(self, "is_recompile_invalid_objects")
|
901
|
+
|
902
|
+
@is_recompile_invalid_objects.setter
|
903
|
+
def is_recompile_invalid_objects(self, value: Optional[pulumi.Input[builtins.bool]]):
|
904
|
+
pulumi.set(self, "is_recompile_invalid_objects", value)
|
905
|
+
|
906
|
+
@property
|
907
|
+
@pulumi.getter(name="isTimeZoneUpgrade")
|
908
|
+
def is_time_zone_upgrade(self) -> Optional[pulumi.Input[builtins.bool]]:
|
909
|
+
"""
|
910
|
+
(Updatable) Enables or disables time zone upgrade.
|
911
|
+
|
912
|
+
|
913
|
+
** IMPORTANT **
|
914
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
915
|
+
"""
|
916
|
+
return pulumi.get(self, "is_time_zone_upgrade")
|
917
|
+
|
918
|
+
@is_time_zone_upgrade.setter
|
919
|
+
def is_time_zone_upgrade(self, value: Optional[pulumi.Input[builtins.bool]]):
|
920
|
+
pulumi.set(self, "is_time_zone_upgrade", value)
|
921
|
+
|
922
|
+
|
850
923
|
if not MYPY:
|
851
924
|
class GetFsuCollectionsFilterArgsDict(TypedDict):
|
852
925
|
name: builtins.str
|
@@ -36,17 +36,14 @@ class FsuCycleArgs:
|
|
36
36
|
is_ignore_patches: Optional[pulumi.Input[builtins.bool]] = None,
|
37
37
|
is_keep_placement: Optional[pulumi.Input[builtins.bool]] = None,
|
38
38
|
max_drain_timeout_in_seconds: Optional[pulumi.Input[builtins.int]] = None,
|
39
|
-
stage_action_schedule: Optional[pulumi.Input['FsuCycleStageActionScheduleArgs']] = None
|
39
|
+
stage_action_schedule: Optional[pulumi.Input['FsuCycleStageActionScheduleArgs']] = None,
|
40
|
+
upgrade_details: Optional[pulumi.Input['FsuCycleUpgradeDetailsArgs']] = None):
|
40
41
|
"""
|
41
42
|
The set of arguments for constructing a FsuCycle resource.
|
42
43
|
:param pulumi.Input[builtins.str] compartment_id: (Updatable) Compartment Identifier.
|
43
44
|
:param pulumi.Input[builtins.str] fsu_collection_id: OCID identifier for the Collection ID the Exadata Fleet Update Cycle will be assigned to.
|
44
45
|
:param pulumi.Input['FsuCycleGoalVersionDetailsArgs'] goal_version_details: (Updatable) Goal version or image details for the Exadata Fleet Update Cycle.
|
45
|
-
:param pulumi.Input[builtins.str] type: (Updatable) Type of Exadata Fleet Update Cycle.
|
46
|
-
|
47
|
-
|
48
|
-
** IMPORTANT **
|
49
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
46
|
+
:param pulumi.Input[builtins.str] type: (Updatable) Type of Exadata Fleet Update Cycle.
|
50
47
|
:param pulumi.Input['FsuCycleApplyActionScheduleArgs'] apply_action_schedule: Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
51
48
|
:param pulumi.Input['FsuCycleBatchingStrategyArgs'] batching_strategy: (Updatable) Batching strategy details to use during PRECHECK and APPLY Cycle Actions.
|
52
49
|
: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. Example: `{"foo-namespace.bar-key": "value"}`
|
@@ -58,6 +55,7 @@ class FsuCycleArgs:
|
|
58
55
|
:param pulumi.Input[builtins.bool] is_keep_placement: (Updatable) 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.
|
59
56
|
:param pulumi.Input[builtins.int] max_drain_timeout_in_seconds: (Updatable) Service drain timeout specified in seconds.
|
60
57
|
:param pulumi.Input['FsuCycleStageActionScheduleArgs'] stage_action_schedule: Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
58
|
+
:param pulumi.Input['FsuCycleUpgradeDetailsArgs'] upgrade_details: (Updatable) Details of supported upgrade options for DB or GI collection.
|
61
59
|
"""
|
62
60
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
63
61
|
pulumi.set(__self__, "fsu_collection_id", fsu_collection_id)
|
@@ -85,6 +83,8 @@ class FsuCycleArgs:
|
|
85
83
|
pulumi.set(__self__, "max_drain_timeout_in_seconds", max_drain_timeout_in_seconds)
|
86
84
|
if stage_action_schedule is not None:
|
87
85
|
pulumi.set(__self__, "stage_action_schedule", stage_action_schedule)
|
86
|
+
if upgrade_details is not None:
|
87
|
+
pulumi.set(__self__, "upgrade_details", upgrade_details)
|
88
88
|
|
89
89
|
@property
|
90
90
|
@pulumi.getter(name="compartmentId")
|
@@ -126,11 +126,7 @@ class FsuCycleArgs:
|
|
126
126
|
@pulumi.getter
|
127
127
|
def type(self) -> pulumi.Input[builtins.str]:
|
128
128
|
"""
|
129
|
-
(Updatable) Type of Exadata Fleet Update Cycle.
|
130
|
-
|
131
|
-
|
132
|
-
** IMPORTANT **
|
133
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
129
|
+
(Updatable) Type of Exadata Fleet Update Cycle.
|
134
130
|
"""
|
135
131
|
return pulumi.get(self, "type")
|
136
132
|
|
@@ -270,6 +266,18 @@ class FsuCycleArgs:
|
|
270
266
|
def stage_action_schedule(self, value: Optional[pulumi.Input['FsuCycleStageActionScheduleArgs']]):
|
271
267
|
pulumi.set(self, "stage_action_schedule", value)
|
272
268
|
|
269
|
+
@property
|
270
|
+
@pulumi.getter(name="upgradeDetails")
|
271
|
+
def upgrade_details(self) -> Optional[pulumi.Input['FsuCycleUpgradeDetailsArgs']]:
|
272
|
+
"""
|
273
|
+
(Updatable) Details of supported upgrade options for DB or GI collection.
|
274
|
+
"""
|
275
|
+
return pulumi.get(self, "upgrade_details")
|
276
|
+
|
277
|
+
@upgrade_details.setter
|
278
|
+
def upgrade_details(self, value: Optional[pulumi.Input['FsuCycleUpgradeDetailsArgs']]):
|
279
|
+
pulumi.set(self, "upgrade_details", value)
|
280
|
+
|
273
281
|
|
274
282
|
@pulumi.input_type
|
275
283
|
class _FsuCycleState:
|
@@ -300,12 +308,13 @@ class _FsuCycleState:
|
|
300
308
|
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
301
309
|
time_finished: Optional[pulumi.Input[builtins.str]] = None,
|
302
310
|
time_updated: Optional[pulumi.Input[builtins.str]] = None,
|
303
|
-
type: Optional[pulumi.Input[builtins.str]] = None
|
311
|
+
type: Optional[pulumi.Input[builtins.str]] = None,
|
312
|
+
upgrade_details: Optional[pulumi.Input['FsuCycleUpgradeDetailsArgs']] = None):
|
304
313
|
"""
|
305
314
|
Input properties used for looking up and filtering FsuCycle resources.
|
306
315
|
:param pulumi.Input['FsuCycleApplyActionScheduleArgs'] apply_action_schedule: Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
307
316
|
:param pulumi.Input['FsuCycleBatchingStrategyArgs'] batching_strategy: (Updatable) Batching strategy details to use during PRECHECK and APPLY Cycle Actions.
|
308
|
-
:param pulumi.Input[builtins.str] collection_type: Type of
|
317
|
+
:param pulumi.Input[builtins.str] collection_type: Type of Exadata Fleet Update collection being upgraded.
|
309
318
|
:param pulumi.Input[builtins.str] compartment_id: (Updatable) Compartment Identifier.
|
310
319
|
: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. Example: `{"foo-namespace.bar-key": "value"}`
|
311
320
|
:param pulumi.Input['FsuCycleDiagnosticsCollectionArgs'] diagnostics_collection: (Updatable) Details to configure diagnostics collection for targets affected by this Exadata Fleet Update Maintenance Cycle.
|
@@ -329,11 +338,8 @@ class _FsuCycleState:
|
|
329
338
|
:param pulumi.Input[builtins.str] time_created: The date and time the Exadata Fleet Update Cycle was created, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
|
330
339
|
:param pulumi.Input[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).
|
331
340
|
:param pulumi.Input[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.
|
332
|
-
:param pulumi.Input[builtins.str] type: (Updatable) Type of Exadata Fleet Update Cycle.
|
333
|
-
|
334
|
-
|
335
|
-
** IMPORTANT **
|
336
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
341
|
+
:param pulumi.Input[builtins.str] type: (Updatable) Type of Exadata Fleet Update Cycle.
|
342
|
+
:param pulumi.Input['FsuCycleUpgradeDetailsArgs'] upgrade_details: (Updatable) Details of supported upgrade options for DB or GI collection.
|
337
343
|
"""
|
338
344
|
if apply_action_schedule is not None:
|
339
345
|
pulumi.set(__self__, "apply_action_schedule", apply_action_schedule)
|
@@ -389,6 +395,8 @@ class _FsuCycleState:
|
|
389
395
|
pulumi.set(__self__, "time_updated", time_updated)
|
390
396
|
if type is not None:
|
391
397
|
pulumi.set(__self__, "type", type)
|
398
|
+
if upgrade_details is not None:
|
399
|
+
pulumi.set(__self__, "upgrade_details", upgrade_details)
|
392
400
|
|
393
401
|
@property
|
394
402
|
@pulumi.getter(name="applyActionSchedule")
|
@@ -418,7 +426,7 @@ class _FsuCycleState:
|
|
418
426
|
@pulumi.getter(name="collectionType")
|
419
427
|
def collection_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
420
428
|
"""
|
421
|
-
Type of
|
429
|
+
Type of Exadata Fleet Update collection being upgraded.
|
422
430
|
"""
|
423
431
|
return pulumi.get(self, "collection_type")
|
424
432
|
|
@@ -706,11 +714,7 @@ class _FsuCycleState:
|
|
706
714
|
@pulumi.getter
|
707
715
|
def type(self) -> Optional[pulumi.Input[builtins.str]]:
|
708
716
|
"""
|
709
|
-
(Updatable) Type of Exadata Fleet Update Cycle.
|
710
|
-
|
711
|
-
|
712
|
-
** IMPORTANT **
|
713
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
717
|
+
(Updatable) Type of Exadata Fleet Update Cycle.
|
714
718
|
"""
|
715
719
|
return pulumi.get(self, "type")
|
716
720
|
|
@@ -718,6 +722,18 @@ class _FsuCycleState:
|
|
718
722
|
def type(self, value: Optional[pulumi.Input[builtins.str]]):
|
719
723
|
pulumi.set(self, "type", value)
|
720
724
|
|
725
|
+
@property
|
726
|
+
@pulumi.getter(name="upgradeDetails")
|
727
|
+
def upgrade_details(self) -> Optional[pulumi.Input['FsuCycleUpgradeDetailsArgs']]:
|
728
|
+
"""
|
729
|
+
(Updatable) Details of supported upgrade options for DB or GI collection.
|
730
|
+
"""
|
731
|
+
return pulumi.get(self, "upgrade_details")
|
732
|
+
|
733
|
+
@upgrade_details.setter
|
734
|
+
def upgrade_details(self, value: Optional[pulumi.Input['FsuCycleUpgradeDetailsArgs']]):
|
735
|
+
pulumi.set(self, "upgrade_details", value)
|
736
|
+
|
721
737
|
|
722
738
|
@pulumi.type_token("oci:FleetSoftwareUpdate/fsuCycle:FsuCycle")
|
723
739
|
class FsuCycle(pulumi.CustomResource):
|
@@ -740,6 +756,7 @@ class FsuCycle(pulumi.CustomResource):
|
|
740
756
|
max_drain_timeout_in_seconds: Optional[pulumi.Input[builtins.int]] = None,
|
741
757
|
stage_action_schedule: Optional[pulumi.Input[Union['FsuCycleStageActionScheduleArgs', 'FsuCycleStageActionScheduleArgsDict']]] = None,
|
742
758
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
759
|
+
upgrade_details: Optional[pulumi.Input[Union['FsuCycleUpgradeDetailsArgs', 'FsuCycleUpgradeDetailsArgsDict']]] = None,
|
743
760
|
__props__=None):
|
744
761
|
"""
|
745
762
|
This resource provides the Fsu Cycle resource in Oracle Cloud Infrastructure Fleet Software Update service.
|
@@ -790,6 +807,11 @@ class FsuCycle(pulumi.CustomResource):
|
|
790
807
|
stage_action_schedule={
|
791
808
|
"time_to_start": fsu_cycle_stage_action_schedule_time_to_start,
|
792
809
|
"type": fsu_cycle_stage_action_schedule_type,
|
810
|
+
},
|
811
|
+
upgrade_details={
|
812
|
+
"collection_type": fsu_cycle_upgrade_details_collection_type,
|
813
|
+
"is_recompile_invalid_objects": fsu_cycle_upgrade_details_is_recompile_invalid_objects,
|
814
|
+
"is_time_zone_upgrade": fsu_cycle_upgrade_details_is_time_zone_upgrade,
|
793
815
|
})
|
794
816
|
```
|
795
817
|
|
@@ -817,11 +839,8 @@ class FsuCycle(pulumi.CustomResource):
|
|
817
839
|
:param pulumi.Input[builtins.bool] is_keep_placement: (Updatable) 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.
|
818
840
|
:param pulumi.Input[builtins.int] max_drain_timeout_in_seconds: (Updatable) Service drain timeout specified in seconds.
|
819
841
|
:param pulumi.Input[Union['FsuCycleStageActionScheduleArgs', 'FsuCycleStageActionScheduleArgsDict']] stage_action_schedule: Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
820
|
-
:param pulumi.Input[builtins.str] type: (Updatable) Type of Exadata Fleet Update Cycle.
|
821
|
-
|
822
|
-
|
823
|
-
** IMPORTANT **
|
824
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
842
|
+
:param pulumi.Input[builtins.str] type: (Updatable) Type of Exadata Fleet Update Cycle.
|
843
|
+
:param pulumi.Input[Union['FsuCycleUpgradeDetailsArgs', 'FsuCycleUpgradeDetailsArgsDict']] upgrade_details: (Updatable) Details of supported upgrade options for DB or GI collection.
|
825
844
|
"""
|
826
845
|
...
|
827
846
|
@overload
|
@@ -878,6 +897,11 @@ class FsuCycle(pulumi.CustomResource):
|
|
878
897
|
stage_action_schedule={
|
879
898
|
"time_to_start": fsu_cycle_stage_action_schedule_time_to_start,
|
880
899
|
"type": fsu_cycle_stage_action_schedule_type,
|
900
|
+
},
|
901
|
+
upgrade_details={
|
902
|
+
"collection_type": fsu_cycle_upgrade_details_collection_type,
|
903
|
+
"is_recompile_invalid_objects": fsu_cycle_upgrade_details_is_recompile_invalid_objects,
|
904
|
+
"is_time_zone_upgrade": fsu_cycle_upgrade_details_is_time_zone_upgrade,
|
881
905
|
})
|
882
906
|
```
|
883
907
|
|
@@ -919,6 +943,7 @@ class FsuCycle(pulumi.CustomResource):
|
|
919
943
|
max_drain_timeout_in_seconds: Optional[pulumi.Input[builtins.int]] = None,
|
920
944
|
stage_action_schedule: Optional[pulumi.Input[Union['FsuCycleStageActionScheduleArgs', 'FsuCycleStageActionScheduleArgsDict']]] = None,
|
921
945
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
946
|
+
upgrade_details: Optional[pulumi.Input[Union['FsuCycleUpgradeDetailsArgs', 'FsuCycleUpgradeDetailsArgsDict']]] = None,
|
922
947
|
__props__=None):
|
923
948
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
924
949
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -951,6 +976,7 @@ class FsuCycle(pulumi.CustomResource):
|
|
951
976
|
if type is None and not opts.urn:
|
952
977
|
raise TypeError("Missing required property 'type'")
|
953
978
|
__props__.__dict__["type"] = type
|
979
|
+
__props__.__dict__["upgrade_details"] = upgrade_details
|
954
980
|
__props__.__dict__["collection_type"] = None
|
955
981
|
__props__.__dict__["executing_fsu_action_id"] = None
|
956
982
|
__props__.__dict__["last_completed_action"] = None
|
@@ -999,7 +1025,8 @@ class FsuCycle(pulumi.CustomResource):
|
|
999
1025
|
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
1000
1026
|
time_finished: Optional[pulumi.Input[builtins.str]] = None,
|
1001
1027
|
time_updated: Optional[pulumi.Input[builtins.str]] = None,
|
1002
|
-
type: Optional[pulumi.Input[builtins.str]] = None
|
1028
|
+
type: Optional[pulumi.Input[builtins.str]] = None,
|
1029
|
+
upgrade_details: Optional[pulumi.Input[Union['FsuCycleUpgradeDetailsArgs', 'FsuCycleUpgradeDetailsArgsDict']]] = None) -> 'FsuCycle':
|
1003
1030
|
"""
|
1004
1031
|
Get an existing FsuCycle resource's state with the given name, id, and optional extra
|
1005
1032
|
properties used to qualify the lookup.
|
@@ -1009,7 +1036,7 @@ class FsuCycle(pulumi.CustomResource):
|
|
1009
1036
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1010
1037
|
:param pulumi.Input[Union['FsuCycleApplyActionScheduleArgs', 'FsuCycleApplyActionScheduleArgsDict']] apply_action_schedule: Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.
|
1011
1038
|
:param pulumi.Input[Union['FsuCycleBatchingStrategyArgs', 'FsuCycleBatchingStrategyArgsDict']] batching_strategy: (Updatable) Batching strategy details to use during PRECHECK and APPLY Cycle Actions.
|
1012
|
-
:param pulumi.Input[builtins.str] collection_type: Type of
|
1039
|
+
:param pulumi.Input[builtins.str] collection_type: Type of Exadata Fleet Update collection being upgraded.
|
1013
1040
|
:param pulumi.Input[builtins.str] compartment_id: (Updatable) Compartment Identifier.
|
1014
1041
|
: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. Example: `{"foo-namespace.bar-key": "value"}`
|
1015
1042
|
:param pulumi.Input[Union['FsuCycleDiagnosticsCollectionArgs', 'FsuCycleDiagnosticsCollectionArgsDict']] diagnostics_collection: (Updatable) Details to configure diagnostics collection for targets affected by this Exadata Fleet Update Maintenance Cycle.
|
@@ -1033,11 +1060,8 @@ class FsuCycle(pulumi.CustomResource):
|
|
1033
1060
|
:param pulumi.Input[builtins.str] time_created: The date and time the Exadata Fleet Update Cycle was created, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29.
|
1034
1061
|
:param pulumi.Input[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).
|
1035
1062
|
:param pulumi.Input[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.
|
1036
|
-
:param pulumi.Input[builtins.str] type: (Updatable) Type of Exadata Fleet Update Cycle.
|
1037
|
-
|
1038
|
-
|
1039
|
-
** IMPORTANT **
|
1040
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1063
|
+
:param pulumi.Input[builtins.str] type: (Updatable) Type of Exadata Fleet Update Cycle.
|
1064
|
+
:param pulumi.Input[Union['FsuCycleUpgradeDetailsArgs', 'FsuCycleUpgradeDetailsArgsDict']] upgrade_details: (Updatable) Details of supported upgrade options for DB or GI collection.
|
1041
1065
|
"""
|
1042
1066
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
1043
1067
|
|
@@ -1070,6 +1094,7 @@ class FsuCycle(pulumi.CustomResource):
|
|
1070
1094
|
__props__.__dict__["time_finished"] = time_finished
|
1071
1095
|
__props__.__dict__["time_updated"] = time_updated
|
1072
1096
|
__props__.__dict__["type"] = type
|
1097
|
+
__props__.__dict__["upgrade_details"] = upgrade_details
|
1073
1098
|
return FsuCycle(resource_name, opts=opts, __props__=__props__)
|
1074
1099
|
|
1075
1100
|
@property
|
@@ -1092,7 +1117,7 @@ class FsuCycle(pulumi.CustomResource):
|
|
1092
1117
|
@pulumi.getter(name="collectionType")
|
1093
1118
|
def collection_type(self) -> pulumi.Output[builtins.str]:
|
1094
1119
|
"""
|
1095
|
-
Type of
|
1120
|
+
Type of Exadata Fleet Update collection being upgraded.
|
1096
1121
|
"""
|
1097
1122
|
return pulumi.get(self, "collection_type")
|
1098
1123
|
|
@@ -1284,11 +1309,15 @@ class FsuCycle(pulumi.CustomResource):
|
|
1284
1309
|
@pulumi.getter
|
1285
1310
|
def type(self) -> pulumi.Output[builtins.str]:
|
1286
1311
|
"""
|
1287
|
-
(Updatable) Type of Exadata Fleet Update Cycle.
|
1288
|
-
|
1289
|
-
|
1290
|
-
** IMPORTANT **
|
1291
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1312
|
+
(Updatable) Type of Exadata Fleet Update Cycle.
|
1292
1313
|
"""
|
1293
1314
|
return pulumi.get(self, "type")
|
1294
1315
|
|
1316
|
+
@property
|
1317
|
+
@pulumi.getter(name="upgradeDetails")
|
1318
|
+
def upgrade_details(self) -> pulumi.Output['outputs.FsuCycleUpgradeDetails']:
|
1319
|
+
"""
|
1320
|
+
(Updatable) Details of supported upgrade options for DB or GI collection.
|
1321
|
+
"""
|
1322
|
+
return pulumi.get(self, "upgrade_details")
|
1323
|
+
|
@@ -28,7 +28,7 @@ class GetFsuCycleResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getFsuCycle.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, apply_action_schedules=None, batching_strategies=None, collection_type=None, compartment_id=None, defined_tags=None, diagnostics_collections=None, display_name=None, executing_fsu_action_id=None, freeform_tags=None, fsu_collection_id=None, fsu_cycle_id=None, goal_version_details=None, id=None, is_ignore_missing_patches=None, is_ignore_patches=None, is_keep_placement=None, last_completed_action=None, last_completed_action_id=None, lifecycle_details=None, max_drain_timeout_in_seconds=None, next_action_to_executes=None, rollback_cycle_state=None, stage_action_schedules=None, state=None, system_tags=None, time_created=None, time_finished=None, time_updated=None, type=None):
|
31
|
+
def __init__(__self__, apply_action_schedules=None, batching_strategies=None, collection_type=None, compartment_id=None, defined_tags=None, diagnostics_collections=None, display_name=None, executing_fsu_action_id=None, freeform_tags=None, fsu_collection_id=None, fsu_cycle_id=None, goal_version_details=None, id=None, is_ignore_missing_patches=None, is_ignore_patches=None, is_keep_placement=None, last_completed_action=None, last_completed_action_id=None, lifecycle_details=None, max_drain_timeout_in_seconds=None, next_action_to_executes=None, rollback_cycle_state=None, stage_action_schedules=None, state=None, system_tags=None, time_created=None, time_finished=None, time_updated=None, type=None, upgrade_details=None):
|
32
32
|
if apply_action_schedules and not isinstance(apply_action_schedules, list):
|
33
33
|
raise TypeError("Expected argument 'apply_action_schedules' to be a list")
|
34
34
|
pulumi.set(__self__, "apply_action_schedules", apply_action_schedules)
|
@@ -116,6 +116,9 @@ class GetFsuCycleResult:
|
|
116
116
|
if type and not isinstance(type, str):
|
117
117
|
raise TypeError("Expected argument 'type' to be a str")
|
118
118
|
pulumi.set(__self__, "type", type)
|
119
|
+
if upgrade_details and not isinstance(upgrade_details, list):
|
120
|
+
raise TypeError("Expected argument 'upgrade_details' to be a list")
|
121
|
+
pulumi.set(__self__, "upgrade_details", upgrade_details)
|
119
122
|
|
120
123
|
@property
|
121
124
|
@pulumi.getter(name="applyActionSchedules")
|
@@ -137,7 +140,7 @@ class GetFsuCycleResult:
|
|
137
140
|
@pulumi.getter(name="collectionType")
|
138
141
|
def collection_type(self) -> builtins.str:
|
139
142
|
"""
|
140
|
-
Type of
|
143
|
+
Type of Exadata Fleet Update collection being upgraded.
|
141
144
|
"""
|
142
145
|
return pulumi.get(self, "collection_type")
|
143
146
|
|
@@ -222,7 +225,7 @@ class GetFsuCycleResult:
|
|
222
225
|
@pulumi.getter(name="isIgnoreMissingPatches")
|
223
226
|
def is_ignore_missing_patches(self) -> Sequence[builtins.str]:
|
224
227
|
"""
|
225
|
-
List of
|
228
|
+
List of identifiers of patches to ignore.
|
226
229
|
"""
|
227
230
|
return pulumi.get(self, "is_ignore_missing_patches")
|
228
231
|
|
@@ -230,7 +233,7 @@ class GetFsuCycleResult:
|
|
230
233
|
@pulumi.getter(name="isIgnorePatches")
|
231
234
|
def is_ignore_patches(self) -> builtins.bool:
|
232
235
|
"""
|
233
|
-
Ignore
|
236
|
+
Ignore patch conflicts or missing patches between the source and goal homes.
|
234
237
|
"""
|
235
238
|
return pulumi.get(self, "is_ignore_patches")
|
236
239
|
|
@@ -346,6 +349,14 @@ class GetFsuCycleResult:
|
|
346
349
|
"""
|
347
350
|
return pulumi.get(self, "type")
|
348
351
|
|
352
|
+
@property
|
353
|
+
@pulumi.getter(name="upgradeDetails")
|
354
|
+
def upgrade_details(self) -> Sequence['outputs.GetFsuCycleUpgradeDetailResult']:
|
355
|
+
"""
|
356
|
+
Details of supported upgrade options for DB or GI collection.
|
357
|
+
"""
|
358
|
+
return pulumi.get(self, "upgrade_details")
|
359
|
+
|
349
360
|
|
350
361
|
class AwaitableGetFsuCycleResult(GetFsuCycleResult):
|
351
362
|
# pylint: disable=using-constant-test
|
@@ -381,7 +392,8 @@ class AwaitableGetFsuCycleResult(GetFsuCycleResult):
|
|
381
392
|
time_created=self.time_created,
|
382
393
|
time_finished=self.time_finished,
|
383
394
|
time_updated=self.time_updated,
|
384
|
-
type=self.type
|
395
|
+
type=self.type,
|
396
|
+
upgrade_details=self.upgrade_details)
|
385
397
|
|
386
398
|
|
387
399
|
def get_fsu_cycle(fsu_cycle_id: Optional[builtins.str] = None,
|
@@ -437,7 +449,8 @@ def get_fsu_cycle(fsu_cycle_id: Optional[builtins.str] = None,
|
|
437
449
|
time_created=pulumi.get(__ret__, 'time_created'),
|
438
450
|
time_finished=pulumi.get(__ret__, 'time_finished'),
|
439
451
|
time_updated=pulumi.get(__ret__, 'time_updated'),
|
440
|
-
type=pulumi.get(__ret__, 'type')
|
452
|
+
type=pulumi.get(__ret__, 'type'),
|
453
|
+
upgrade_details=pulumi.get(__ret__, 'upgrade_details'))
|
441
454
|
def get_fsu_cycle_output(fsu_cycle_id: Optional[pulumi.Input[builtins.str]] = None,
|
442
455
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFsuCycleResult]:
|
443
456
|
"""
|
@@ -490,4 +503,5 @@ def get_fsu_cycle_output(fsu_cycle_id: Optional[pulumi.Input[builtins.str]] = No
|
|
490
503
|
time_created=pulumi.get(__response__, 'time_created'),
|
491
504
|
time_finished=pulumi.get(__response__, 'time_finished'),
|
492
505
|
time_updated=pulumi.get(__response__, 'time_updated'),
|
493
|
-
type=pulumi.get(__response__, 'type')
|
506
|
+
type=pulumi.get(__response__, 'type'),
|
507
|
+
upgrade_details=pulumi.get(__response__, 'upgrade_details')))
|
@@ -62,7 +62,7 @@ class GetFsuCyclesResult:
|
|
62
62
|
@pulumi.getter(name="collectionType")
|
63
63
|
def collection_type(self) -> Optional[builtins.str]:
|
64
64
|
"""
|
65
|
-
Type of
|
65
|
+
Type of Exadata Fleet Update collection being upgraded.
|
66
66
|
"""
|
67
67
|
return pulumi.get(self, "collection_type")
|
68
68
|
|