pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.2.0__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.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/RECORD +313 -159
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,611 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins
|
6
|
+
import copy
|
7
|
+
import warnings
|
8
|
+
import sys
|
9
|
+
import pulumi
|
10
|
+
import pulumi.runtime
|
11
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
12
|
+
if sys.version_info >= (3, 11):
|
13
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
14
|
+
else:
|
15
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
|
+
from .. import _utilities
|
17
|
+
from . import outputs
|
18
|
+
from ._inputs import *
|
19
|
+
|
20
|
+
__all__ = ['BdsInstanceNodeBackupConfigurationArgs', 'BdsInstanceNodeBackupConfiguration']
|
21
|
+
|
22
|
+
@pulumi.input_type
|
23
|
+
class BdsInstanceNodeBackupConfigurationArgs:
|
24
|
+
def __init__(__self__, *,
|
25
|
+
bds_instance_id: pulumi.Input[builtins.str],
|
26
|
+
level_type_details: pulumi.Input['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs'],
|
27
|
+
schedule: pulumi.Input[builtins.str],
|
28
|
+
backup_type: Optional[pulumi.Input[builtins.str]] = None,
|
29
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
30
|
+
number_of_backups_to_retain: Optional[pulumi.Input[builtins.int]] = None,
|
31
|
+
timezone: Optional[pulumi.Input[builtins.str]] = None):
|
32
|
+
"""
|
33
|
+
The set of arguments for constructing a BdsInstanceNodeBackupConfiguration resource.
|
34
|
+
:param pulumi.Input[builtins.str] bds_instance_id: The OCID of the cluster.
|
35
|
+
:param pulumi.Input['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs'] level_type_details: (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
|
36
|
+
:param pulumi.Input[builtins.str] schedule: (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
|
37
|
+
:param pulumi.Input[builtins.str] backup_type: (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
|
38
|
+
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
|
39
|
+
:param pulumi.Input[builtins.int] number_of_backups_to_retain: (Updatable) Number of backup copies to retain.
|
40
|
+
:param pulumi.Input[builtins.str] timezone: (Updatable) The time zone of the execution schedule, in IANA time zone database name format
|
41
|
+
|
42
|
+
|
43
|
+
** IMPORTANT **
|
44
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
45
|
+
"""
|
46
|
+
pulumi.set(__self__, "bds_instance_id", bds_instance_id)
|
47
|
+
pulumi.set(__self__, "level_type_details", level_type_details)
|
48
|
+
pulumi.set(__self__, "schedule", schedule)
|
49
|
+
if backup_type is not None:
|
50
|
+
pulumi.set(__self__, "backup_type", backup_type)
|
51
|
+
if display_name is not None:
|
52
|
+
pulumi.set(__self__, "display_name", display_name)
|
53
|
+
if number_of_backups_to_retain is not None:
|
54
|
+
pulumi.set(__self__, "number_of_backups_to_retain", number_of_backups_to_retain)
|
55
|
+
if timezone is not None:
|
56
|
+
pulumi.set(__self__, "timezone", timezone)
|
57
|
+
|
58
|
+
@property
|
59
|
+
@pulumi.getter(name="bdsInstanceId")
|
60
|
+
def bds_instance_id(self) -> pulumi.Input[builtins.str]:
|
61
|
+
"""
|
62
|
+
The OCID of the cluster.
|
63
|
+
"""
|
64
|
+
return pulumi.get(self, "bds_instance_id")
|
65
|
+
|
66
|
+
@bds_instance_id.setter
|
67
|
+
def bds_instance_id(self, value: pulumi.Input[builtins.str]):
|
68
|
+
pulumi.set(self, "bds_instance_id", value)
|
69
|
+
|
70
|
+
@property
|
71
|
+
@pulumi.getter(name="levelTypeDetails")
|
72
|
+
def level_type_details(self) -> pulumi.Input['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs']:
|
73
|
+
"""
|
74
|
+
(Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
|
75
|
+
"""
|
76
|
+
return pulumi.get(self, "level_type_details")
|
77
|
+
|
78
|
+
@level_type_details.setter
|
79
|
+
def level_type_details(self, value: pulumi.Input['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs']):
|
80
|
+
pulumi.set(self, "level_type_details", value)
|
81
|
+
|
82
|
+
@property
|
83
|
+
@pulumi.getter
|
84
|
+
def schedule(self) -> pulumi.Input[builtins.str]:
|
85
|
+
"""
|
86
|
+
(Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
|
87
|
+
"""
|
88
|
+
return pulumi.get(self, "schedule")
|
89
|
+
|
90
|
+
@schedule.setter
|
91
|
+
def schedule(self, value: pulumi.Input[builtins.str]):
|
92
|
+
pulumi.set(self, "schedule", value)
|
93
|
+
|
94
|
+
@property
|
95
|
+
@pulumi.getter(name="backupType")
|
96
|
+
def backup_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
97
|
+
"""
|
98
|
+
(Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
|
99
|
+
"""
|
100
|
+
return pulumi.get(self, "backup_type")
|
101
|
+
|
102
|
+
@backup_type.setter
|
103
|
+
def backup_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
104
|
+
pulumi.set(self, "backup_type", value)
|
105
|
+
|
106
|
+
@property
|
107
|
+
@pulumi.getter(name="displayName")
|
108
|
+
def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
109
|
+
"""
|
110
|
+
(Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
|
111
|
+
"""
|
112
|
+
return pulumi.get(self, "display_name")
|
113
|
+
|
114
|
+
@display_name.setter
|
115
|
+
def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
116
|
+
pulumi.set(self, "display_name", value)
|
117
|
+
|
118
|
+
@property
|
119
|
+
@pulumi.getter(name="numberOfBackupsToRetain")
|
120
|
+
def number_of_backups_to_retain(self) -> Optional[pulumi.Input[builtins.int]]:
|
121
|
+
"""
|
122
|
+
(Updatable) Number of backup copies to retain.
|
123
|
+
"""
|
124
|
+
return pulumi.get(self, "number_of_backups_to_retain")
|
125
|
+
|
126
|
+
@number_of_backups_to_retain.setter
|
127
|
+
def number_of_backups_to_retain(self, value: Optional[pulumi.Input[builtins.int]]):
|
128
|
+
pulumi.set(self, "number_of_backups_to_retain", value)
|
129
|
+
|
130
|
+
@property
|
131
|
+
@pulumi.getter
|
132
|
+
def timezone(self) -> Optional[pulumi.Input[builtins.str]]:
|
133
|
+
"""
|
134
|
+
(Updatable) The time zone of the execution schedule, in IANA time zone database name format
|
135
|
+
|
136
|
+
|
137
|
+
** IMPORTANT **
|
138
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
139
|
+
"""
|
140
|
+
return pulumi.get(self, "timezone")
|
141
|
+
|
142
|
+
@timezone.setter
|
143
|
+
def timezone(self, value: Optional[pulumi.Input[builtins.str]]):
|
144
|
+
pulumi.set(self, "timezone", value)
|
145
|
+
|
146
|
+
|
147
|
+
@pulumi.input_type
|
148
|
+
class _BdsInstanceNodeBackupConfigurationState:
|
149
|
+
def __init__(__self__, *,
|
150
|
+
backup_type: Optional[pulumi.Input[builtins.str]] = None,
|
151
|
+
bds_instance_id: Optional[pulumi.Input[builtins.str]] = None,
|
152
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
153
|
+
level_type_details: Optional[pulumi.Input['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs']] = None,
|
154
|
+
number_of_backups_to_retain: Optional[pulumi.Input[builtins.int]] = None,
|
155
|
+
schedule: Optional[pulumi.Input[builtins.str]] = None,
|
156
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
157
|
+
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
158
|
+
time_updated: Optional[pulumi.Input[builtins.str]] = None,
|
159
|
+
timezone: Optional[pulumi.Input[builtins.str]] = None):
|
160
|
+
"""
|
161
|
+
Input properties used for looking up and filtering BdsInstanceNodeBackupConfiguration resources.
|
162
|
+
:param pulumi.Input[builtins.str] backup_type: (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
|
163
|
+
:param pulumi.Input[builtins.str] bds_instance_id: The OCID of the cluster.
|
164
|
+
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
|
165
|
+
:param pulumi.Input['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs'] level_type_details: (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
|
166
|
+
:param pulumi.Input[builtins.int] number_of_backups_to_retain: (Updatable) Number of backup copies to retain.
|
167
|
+
:param pulumi.Input[builtins.str] schedule: (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
|
168
|
+
:param pulumi.Input[builtins.str] state: The state of the NodeBackupConfiguration.
|
169
|
+
:param pulumi.Input[builtins.str] time_created: The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
|
170
|
+
:param pulumi.Input[builtins.str] time_updated: The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
|
171
|
+
:param pulumi.Input[builtins.str] timezone: (Updatable) The time zone of the execution schedule, in IANA time zone database name format
|
172
|
+
|
173
|
+
|
174
|
+
** IMPORTANT **
|
175
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
176
|
+
"""
|
177
|
+
if backup_type is not None:
|
178
|
+
pulumi.set(__self__, "backup_type", backup_type)
|
179
|
+
if bds_instance_id is not None:
|
180
|
+
pulumi.set(__self__, "bds_instance_id", bds_instance_id)
|
181
|
+
if display_name is not None:
|
182
|
+
pulumi.set(__self__, "display_name", display_name)
|
183
|
+
if level_type_details is not None:
|
184
|
+
pulumi.set(__self__, "level_type_details", level_type_details)
|
185
|
+
if number_of_backups_to_retain is not None:
|
186
|
+
pulumi.set(__self__, "number_of_backups_to_retain", number_of_backups_to_retain)
|
187
|
+
if schedule is not None:
|
188
|
+
pulumi.set(__self__, "schedule", schedule)
|
189
|
+
if state is not None:
|
190
|
+
pulumi.set(__self__, "state", state)
|
191
|
+
if time_created is not None:
|
192
|
+
pulumi.set(__self__, "time_created", time_created)
|
193
|
+
if time_updated is not None:
|
194
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
195
|
+
if timezone is not None:
|
196
|
+
pulumi.set(__self__, "timezone", timezone)
|
197
|
+
|
198
|
+
@property
|
199
|
+
@pulumi.getter(name="backupType")
|
200
|
+
def backup_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
201
|
+
"""
|
202
|
+
(Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
|
203
|
+
"""
|
204
|
+
return pulumi.get(self, "backup_type")
|
205
|
+
|
206
|
+
@backup_type.setter
|
207
|
+
def backup_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
208
|
+
pulumi.set(self, "backup_type", value)
|
209
|
+
|
210
|
+
@property
|
211
|
+
@pulumi.getter(name="bdsInstanceId")
|
212
|
+
def bds_instance_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
213
|
+
"""
|
214
|
+
The OCID of the cluster.
|
215
|
+
"""
|
216
|
+
return pulumi.get(self, "bds_instance_id")
|
217
|
+
|
218
|
+
@bds_instance_id.setter
|
219
|
+
def bds_instance_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
220
|
+
pulumi.set(self, "bds_instance_id", value)
|
221
|
+
|
222
|
+
@property
|
223
|
+
@pulumi.getter(name="displayName")
|
224
|
+
def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
225
|
+
"""
|
226
|
+
(Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
|
227
|
+
"""
|
228
|
+
return pulumi.get(self, "display_name")
|
229
|
+
|
230
|
+
@display_name.setter
|
231
|
+
def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
232
|
+
pulumi.set(self, "display_name", value)
|
233
|
+
|
234
|
+
@property
|
235
|
+
@pulumi.getter(name="levelTypeDetails")
|
236
|
+
def level_type_details(self) -> Optional[pulumi.Input['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs']]:
|
237
|
+
"""
|
238
|
+
(Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
|
239
|
+
"""
|
240
|
+
return pulumi.get(self, "level_type_details")
|
241
|
+
|
242
|
+
@level_type_details.setter
|
243
|
+
def level_type_details(self, value: Optional[pulumi.Input['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs']]):
|
244
|
+
pulumi.set(self, "level_type_details", value)
|
245
|
+
|
246
|
+
@property
|
247
|
+
@pulumi.getter(name="numberOfBackupsToRetain")
|
248
|
+
def number_of_backups_to_retain(self) -> Optional[pulumi.Input[builtins.int]]:
|
249
|
+
"""
|
250
|
+
(Updatable) Number of backup copies to retain.
|
251
|
+
"""
|
252
|
+
return pulumi.get(self, "number_of_backups_to_retain")
|
253
|
+
|
254
|
+
@number_of_backups_to_retain.setter
|
255
|
+
def number_of_backups_to_retain(self, value: Optional[pulumi.Input[builtins.int]]):
|
256
|
+
pulumi.set(self, "number_of_backups_to_retain", value)
|
257
|
+
|
258
|
+
@property
|
259
|
+
@pulumi.getter
|
260
|
+
def schedule(self) -> Optional[pulumi.Input[builtins.str]]:
|
261
|
+
"""
|
262
|
+
(Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
|
263
|
+
"""
|
264
|
+
return pulumi.get(self, "schedule")
|
265
|
+
|
266
|
+
@schedule.setter
|
267
|
+
def schedule(self, value: Optional[pulumi.Input[builtins.str]]):
|
268
|
+
pulumi.set(self, "schedule", value)
|
269
|
+
|
270
|
+
@property
|
271
|
+
@pulumi.getter
|
272
|
+
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
273
|
+
"""
|
274
|
+
The state of the NodeBackupConfiguration.
|
275
|
+
"""
|
276
|
+
return pulumi.get(self, "state")
|
277
|
+
|
278
|
+
@state.setter
|
279
|
+
def state(self, value: Optional[pulumi.Input[builtins.str]]):
|
280
|
+
pulumi.set(self, "state", value)
|
281
|
+
|
282
|
+
@property
|
283
|
+
@pulumi.getter(name="timeCreated")
|
284
|
+
def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
|
285
|
+
"""
|
286
|
+
The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
|
287
|
+
"""
|
288
|
+
return pulumi.get(self, "time_created")
|
289
|
+
|
290
|
+
@time_created.setter
|
291
|
+
def time_created(self, value: Optional[pulumi.Input[builtins.str]]):
|
292
|
+
pulumi.set(self, "time_created", value)
|
293
|
+
|
294
|
+
@property
|
295
|
+
@pulumi.getter(name="timeUpdated")
|
296
|
+
def time_updated(self) -> Optional[pulumi.Input[builtins.str]]:
|
297
|
+
"""
|
298
|
+
The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
|
299
|
+
"""
|
300
|
+
return pulumi.get(self, "time_updated")
|
301
|
+
|
302
|
+
@time_updated.setter
|
303
|
+
def time_updated(self, value: Optional[pulumi.Input[builtins.str]]):
|
304
|
+
pulumi.set(self, "time_updated", value)
|
305
|
+
|
306
|
+
@property
|
307
|
+
@pulumi.getter
|
308
|
+
def timezone(self) -> Optional[pulumi.Input[builtins.str]]:
|
309
|
+
"""
|
310
|
+
(Updatable) The time zone of the execution schedule, in IANA time zone database name format
|
311
|
+
|
312
|
+
|
313
|
+
** IMPORTANT **
|
314
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
315
|
+
"""
|
316
|
+
return pulumi.get(self, "timezone")
|
317
|
+
|
318
|
+
@timezone.setter
|
319
|
+
def timezone(self, value: Optional[pulumi.Input[builtins.str]]):
|
320
|
+
pulumi.set(self, "timezone", value)
|
321
|
+
|
322
|
+
|
323
|
+
@pulumi.type_token("oci:BigDataService/bdsInstanceNodeBackupConfiguration:BdsInstanceNodeBackupConfiguration")
|
324
|
+
class BdsInstanceNodeBackupConfiguration(pulumi.CustomResource):
|
325
|
+
@overload
|
326
|
+
def __init__(__self__,
|
327
|
+
resource_name: str,
|
328
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
329
|
+
backup_type: Optional[pulumi.Input[builtins.str]] = None,
|
330
|
+
bds_instance_id: Optional[pulumi.Input[builtins.str]] = None,
|
331
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
332
|
+
level_type_details: Optional[pulumi.Input[Union['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs', 'BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgsDict']]] = None,
|
333
|
+
number_of_backups_to_retain: Optional[pulumi.Input[builtins.int]] = None,
|
334
|
+
schedule: Optional[pulumi.Input[builtins.str]] = None,
|
335
|
+
timezone: Optional[pulumi.Input[builtins.str]] = None,
|
336
|
+
__props__=None):
|
337
|
+
"""
|
338
|
+
This resource provides the Bds Instance Node Backup Configuration resource in Oracle Cloud Infrastructure Big Data Service service.
|
339
|
+
|
340
|
+
Add a node volume backup configuration to the cluster for an indicated node type or node.
|
341
|
+
|
342
|
+
## Example Usage
|
343
|
+
|
344
|
+
```python
|
345
|
+
import pulumi
|
346
|
+
import pulumi_oci as oci
|
347
|
+
|
348
|
+
test_bds_instance_node_backup_configuration = oci.big_data_service.BdsInstanceNodeBackupConfiguration("test_bds_instance_node_backup_configuration",
|
349
|
+
bds_instance_id=test_bds_instance["id"],
|
350
|
+
level_type_details={
|
351
|
+
"level_type": bds_instance_node_backup_configuration_level_type_details_level_type,
|
352
|
+
"node_host_name": bds_instance_node_backup_configuration_level_type_details_node_host_name,
|
353
|
+
"node_type": bds_instance_node_backup_configuration_level_type_details_node_type,
|
354
|
+
},
|
355
|
+
schedule=bds_instance_node_backup_configuration_schedule,
|
356
|
+
backup_type=bds_instance_node_backup_configuration_backup_type,
|
357
|
+
display_name=bds_instance_node_backup_configuration_display_name,
|
358
|
+
number_of_backups_to_retain=bds_instance_node_backup_configuration_number_of_backups_to_retain,
|
359
|
+
timezone=bds_instance_node_backup_configuration_timezone)
|
360
|
+
```
|
361
|
+
|
362
|
+
## Import
|
363
|
+
|
364
|
+
BdsInstanceNodeBackupConfigurations can be imported using the `id`, e.g.
|
365
|
+
|
366
|
+
```sh
|
367
|
+
$ pulumi import oci:BigDataService/bdsInstanceNodeBackupConfiguration:BdsInstanceNodeBackupConfiguration test_bds_instance_node_backup_configuration "bdsInstances/{bdsInstanceId}/nodeBackupConfigurations/{nodeBackupConfigurationId}"
|
368
|
+
```
|
369
|
+
|
370
|
+
:param str resource_name: The name of the resource.
|
371
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
372
|
+
:param pulumi.Input[builtins.str] backup_type: (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
|
373
|
+
:param pulumi.Input[builtins.str] bds_instance_id: The OCID of the cluster.
|
374
|
+
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
|
375
|
+
:param pulumi.Input[Union['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs', 'BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgsDict']] level_type_details: (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
|
376
|
+
:param pulumi.Input[builtins.int] number_of_backups_to_retain: (Updatable) Number of backup copies to retain.
|
377
|
+
:param pulumi.Input[builtins.str] schedule: (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
|
378
|
+
:param pulumi.Input[builtins.str] timezone: (Updatable) The time zone of the execution schedule, in IANA time zone database name format
|
379
|
+
|
380
|
+
|
381
|
+
** IMPORTANT **
|
382
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
383
|
+
"""
|
384
|
+
...
|
385
|
+
@overload
|
386
|
+
def __init__(__self__,
|
387
|
+
resource_name: str,
|
388
|
+
args: BdsInstanceNodeBackupConfigurationArgs,
|
389
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
390
|
+
"""
|
391
|
+
This resource provides the Bds Instance Node Backup Configuration resource in Oracle Cloud Infrastructure Big Data Service service.
|
392
|
+
|
393
|
+
Add a node volume backup configuration to the cluster for an indicated node type or node.
|
394
|
+
|
395
|
+
## Example Usage
|
396
|
+
|
397
|
+
```python
|
398
|
+
import pulumi
|
399
|
+
import pulumi_oci as oci
|
400
|
+
|
401
|
+
test_bds_instance_node_backup_configuration = oci.big_data_service.BdsInstanceNodeBackupConfiguration("test_bds_instance_node_backup_configuration",
|
402
|
+
bds_instance_id=test_bds_instance["id"],
|
403
|
+
level_type_details={
|
404
|
+
"level_type": bds_instance_node_backup_configuration_level_type_details_level_type,
|
405
|
+
"node_host_name": bds_instance_node_backup_configuration_level_type_details_node_host_name,
|
406
|
+
"node_type": bds_instance_node_backup_configuration_level_type_details_node_type,
|
407
|
+
},
|
408
|
+
schedule=bds_instance_node_backup_configuration_schedule,
|
409
|
+
backup_type=bds_instance_node_backup_configuration_backup_type,
|
410
|
+
display_name=bds_instance_node_backup_configuration_display_name,
|
411
|
+
number_of_backups_to_retain=bds_instance_node_backup_configuration_number_of_backups_to_retain,
|
412
|
+
timezone=bds_instance_node_backup_configuration_timezone)
|
413
|
+
```
|
414
|
+
|
415
|
+
## Import
|
416
|
+
|
417
|
+
BdsInstanceNodeBackupConfigurations can be imported using the `id`, e.g.
|
418
|
+
|
419
|
+
```sh
|
420
|
+
$ pulumi import oci:BigDataService/bdsInstanceNodeBackupConfiguration:BdsInstanceNodeBackupConfiguration test_bds_instance_node_backup_configuration "bdsInstances/{bdsInstanceId}/nodeBackupConfigurations/{nodeBackupConfigurationId}"
|
421
|
+
```
|
422
|
+
|
423
|
+
:param str resource_name: The name of the resource.
|
424
|
+
:param BdsInstanceNodeBackupConfigurationArgs args: The arguments to use to populate this resource's properties.
|
425
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
426
|
+
"""
|
427
|
+
...
|
428
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
429
|
+
resource_args, opts = _utilities.get_resource_args_opts(BdsInstanceNodeBackupConfigurationArgs, pulumi.ResourceOptions, *args, **kwargs)
|
430
|
+
if resource_args is not None:
|
431
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
432
|
+
else:
|
433
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
434
|
+
|
435
|
+
def _internal_init(__self__,
|
436
|
+
resource_name: str,
|
437
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
438
|
+
backup_type: Optional[pulumi.Input[builtins.str]] = None,
|
439
|
+
bds_instance_id: Optional[pulumi.Input[builtins.str]] = None,
|
440
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
441
|
+
level_type_details: Optional[pulumi.Input[Union['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs', 'BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgsDict']]] = None,
|
442
|
+
number_of_backups_to_retain: Optional[pulumi.Input[builtins.int]] = None,
|
443
|
+
schedule: Optional[pulumi.Input[builtins.str]] = None,
|
444
|
+
timezone: Optional[pulumi.Input[builtins.str]] = None,
|
445
|
+
__props__=None):
|
446
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
447
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
448
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
449
|
+
if opts.id is None:
|
450
|
+
if __props__ is not None:
|
451
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
452
|
+
__props__ = BdsInstanceNodeBackupConfigurationArgs.__new__(BdsInstanceNodeBackupConfigurationArgs)
|
453
|
+
|
454
|
+
__props__.__dict__["backup_type"] = backup_type
|
455
|
+
if bds_instance_id is None and not opts.urn:
|
456
|
+
raise TypeError("Missing required property 'bds_instance_id'")
|
457
|
+
__props__.__dict__["bds_instance_id"] = bds_instance_id
|
458
|
+
__props__.__dict__["display_name"] = display_name
|
459
|
+
if level_type_details is None and not opts.urn:
|
460
|
+
raise TypeError("Missing required property 'level_type_details'")
|
461
|
+
__props__.__dict__["level_type_details"] = level_type_details
|
462
|
+
__props__.__dict__["number_of_backups_to_retain"] = number_of_backups_to_retain
|
463
|
+
if schedule is None and not opts.urn:
|
464
|
+
raise TypeError("Missing required property 'schedule'")
|
465
|
+
__props__.__dict__["schedule"] = schedule
|
466
|
+
__props__.__dict__["timezone"] = timezone
|
467
|
+
__props__.__dict__["state"] = None
|
468
|
+
__props__.__dict__["time_created"] = None
|
469
|
+
__props__.__dict__["time_updated"] = None
|
470
|
+
super(BdsInstanceNodeBackupConfiguration, __self__).__init__(
|
471
|
+
'oci:BigDataService/bdsInstanceNodeBackupConfiguration:BdsInstanceNodeBackupConfiguration',
|
472
|
+
resource_name,
|
473
|
+
__props__,
|
474
|
+
opts)
|
475
|
+
|
476
|
+
@staticmethod
|
477
|
+
def get(resource_name: str,
|
478
|
+
id: pulumi.Input[str],
|
479
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
480
|
+
backup_type: Optional[pulumi.Input[builtins.str]] = None,
|
481
|
+
bds_instance_id: Optional[pulumi.Input[builtins.str]] = None,
|
482
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
483
|
+
level_type_details: Optional[pulumi.Input[Union['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs', 'BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgsDict']]] = None,
|
484
|
+
number_of_backups_to_retain: Optional[pulumi.Input[builtins.int]] = None,
|
485
|
+
schedule: Optional[pulumi.Input[builtins.str]] = None,
|
486
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
487
|
+
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
488
|
+
time_updated: Optional[pulumi.Input[builtins.str]] = None,
|
489
|
+
timezone: Optional[pulumi.Input[builtins.str]] = None) -> 'BdsInstanceNodeBackupConfiguration':
|
490
|
+
"""
|
491
|
+
Get an existing BdsInstanceNodeBackupConfiguration resource's state with the given name, id, and optional extra
|
492
|
+
properties used to qualify the lookup.
|
493
|
+
|
494
|
+
:param str resource_name: The unique name of the resulting resource.
|
495
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
496
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
497
|
+
:param pulumi.Input[builtins.str] backup_type: (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
|
498
|
+
:param pulumi.Input[builtins.str] bds_instance_id: The OCID of the cluster.
|
499
|
+
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
|
500
|
+
:param pulumi.Input[Union['BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs', 'BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgsDict']] level_type_details: (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
|
501
|
+
:param pulumi.Input[builtins.int] number_of_backups_to_retain: (Updatable) Number of backup copies to retain.
|
502
|
+
:param pulumi.Input[builtins.str] schedule: (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
|
503
|
+
:param pulumi.Input[builtins.str] state: The state of the NodeBackupConfiguration.
|
504
|
+
:param pulumi.Input[builtins.str] time_created: The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
|
505
|
+
:param pulumi.Input[builtins.str] time_updated: The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
|
506
|
+
:param pulumi.Input[builtins.str] timezone: (Updatable) The time zone of the execution schedule, in IANA time zone database name format
|
507
|
+
|
508
|
+
|
509
|
+
** IMPORTANT **
|
510
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
511
|
+
"""
|
512
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
513
|
+
|
514
|
+
__props__ = _BdsInstanceNodeBackupConfigurationState.__new__(_BdsInstanceNodeBackupConfigurationState)
|
515
|
+
|
516
|
+
__props__.__dict__["backup_type"] = backup_type
|
517
|
+
__props__.__dict__["bds_instance_id"] = bds_instance_id
|
518
|
+
__props__.__dict__["display_name"] = display_name
|
519
|
+
__props__.__dict__["level_type_details"] = level_type_details
|
520
|
+
__props__.__dict__["number_of_backups_to_retain"] = number_of_backups_to_retain
|
521
|
+
__props__.__dict__["schedule"] = schedule
|
522
|
+
__props__.__dict__["state"] = state
|
523
|
+
__props__.__dict__["time_created"] = time_created
|
524
|
+
__props__.__dict__["time_updated"] = time_updated
|
525
|
+
__props__.__dict__["timezone"] = timezone
|
526
|
+
return BdsInstanceNodeBackupConfiguration(resource_name, opts=opts, __props__=__props__)
|
527
|
+
|
528
|
+
@property
|
529
|
+
@pulumi.getter(name="backupType")
|
530
|
+
def backup_type(self) -> pulumi.Output[builtins.str]:
|
531
|
+
"""
|
532
|
+
(Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
|
533
|
+
"""
|
534
|
+
return pulumi.get(self, "backup_type")
|
535
|
+
|
536
|
+
@property
|
537
|
+
@pulumi.getter(name="bdsInstanceId")
|
538
|
+
def bds_instance_id(self) -> pulumi.Output[builtins.str]:
|
539
|
+
"""
|
540
|
+
The OCID of the cluster.
|
541
|
+
"""
|
542
|
+
return pulumi.get(self, "bds_instance_id")
|
543
|
+
|
544
|
+
@property
|
545
|
+
@pulumi.getter(name="displayName")
|
546
|
+
def display_name(self) -> pulumi.Output[builtins.str]:
|
547
|
+
"""
|
548
|
+
(Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
|
549
|
+
"""
|
550
|
+
return pulumi.get(self, "display_name")
|
551
|
+
|
552
|
+
@property
|
553
|
+
@pulumi.getter(name="levelTypeDetails")
|
554
|
+
def level_type_details(self) -> pulumi.Output['outputs.BdsInstanceNodeBackupConfigurationLevelTypeDetails']:
|
555
|
+
"""
|
556
|
+
(Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
|
557
|
+
"""
|
558
|
+
return pulumi.get(self, "level_type_details")
|
559
|
+
|
560
|
+
@property
|
561
|
+
@pulumi.getter(name="numberOfBackupsToRetain")
|
562
|
+
def number_of_backups_to_retain(self) -> pulumi.Output[builtins.int]:
|
563
|
+
"""
|
564
|
+
(Updatable) Number of backup copies to retain.
|
565
|
+
"""
|
566
|
+
return pulumi.get(self, "number_of_backups_to_retain")
|
567
|
+
|
568
|
+
@property
|
569
|
+
@pulumi.getter
|
570
|
+
def schedule(self) -> pulumi.Output[builtins.str]:
|
571
|
+
"""
|
572
|
+
(Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
|
573
|
+
"""
|
574
|
+
return pulumi.get(self, "schedule")
|
575
|
+
|
576
|
+
@property
|
577
|
+
@pulumi.getter
|
578
|
+
def state(self) -> pulumi.Output[builtins.str]:
|
579
|
+
"""
|
580
|
+
The state of the NodeBackupConfiguration.
|
581
|
+
"""
|
582
|
+
return pulumi.get(self, "state")
|
583
|
+
|
584
|
+
@property
|
585
|
+
@pulumi.getter(name="timeCreated")
|
586
|
+
def time_created(self) -> pulumi.Output[builtins.str]:
|
587
|
+
"""
|
588
|
+
The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
|
589
|
+
"""
|
590
|
+
return pulumi.get(self, "time_created")
|
591
|
+
|
592
|
+
@property
|
593
|
+
@pulumi.getter(name="timeUpdated")
|
594
|
+
def time_updated(self) -> pulumi.Output[builtins.str]:
|
595
|
+
"""
|
596
|
+
The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
|
597
|
+
"""
|
598
|
+
return pulumi.get(self, "time_updated")
|
599
|
+
|
600
|
+
@property
|
601
|
+
@pulumi.getter
|
602
|
+
def timezone(self) -> pulumi.Output[builtins.str]:
|
603
|
+
"""
|
604
|
+
(Updatable) The time zone of the execution schedule, in IANA time zone database name format
|
605
|
+
|
606
|
+
|
607
|
+
** IMPORTANT **
|
608
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
609
|
+
"""
|
610
|
+
return pulumi.get(self, "timezone")
|
611
|
+
|