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
pulumi_oci/mysql/replica.py
CHANGED
@@ -148,6 +148,7 @@ class _ReplicaState:
|
|
148
148
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
149
149
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
150
150
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
151
|
+
encrypt_datas: Optional[pulumi.Input[Sequence[pulumi.Input['ReplicaEncryptDataArgs']]]] = None,
|
151
152
|
fault_domain: Optional[pulumi.Input[builtins.str]] = None,
|
152
153
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
153
154
|
ip_address: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -172,6 +173,7 @@ class _ReplicaState:
|
|
172
173
|
: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"}`
|
173
174
|
:param pulumi.Input[builtins.str] description: (Updatable) User provided description of the read replica.
|
174
175
|
:param pulumi.Input[builtins.str] display_name: (Updatable) The user-friendly name for the read replica. It does not have to be unique.
|
176
|
+
:param pulumi.Input[Sequence[pulumi.Input['ReplicaEncryptDataArgs']]] encrypt_datas: Encrypt data details.
|
175
177
|
:param pulumi.Input[builtins.str] fault_domain: The name of the Fault Domain the read replica is located in.
|
176
178
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
177
179
|
:param pulumi.Input[builtins.str] ip_address: The IP address the read replica is configured to listen on.
|
@@ -202,6 +204,8 @@ class _ReplicaState:
|
|
202
204
|
pulumi.set(__self__, "description", description)
|
203
205
|
if display_name is not None:
|
204
206
|
pulumi.set(__self__, "display_name", display_name)
|
207
|
+
if encrypt_datas is not None:
|
208
|
+
pulumi.set(__self__, "encrypt_datas", encrypt_datas)
|
205
209
|
if fault_domain is not None:
|
206
210
|
pulumi.set(__self__, "fault_domain", fault_domain)
|
207
211
|
if freeform_tags is not None:
|
@@ -317,6 +321,18 @@ class _ReplicaState:
|
|
317
321
|
def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
318
322
|
pulumi.set(self, "display_name", value)
|
319
323
|
|
324
|
+
@property
|
325
|
+
@pulumi.getter(name="encryptDatas")
|
326
|
+
def encrypt_datas(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ReplicaEncryptDataArgs']]]]:
|
327
|
+
"""
|
328
|
+
Encrypt data details.
|
329
|
+
"""
|
330
|
+
return pulumi.get(self, "encrypt_datas")
|
331
|
+
|
332
|
+
@encrypt_datas.setter
|
333
|
+
def encrypt_datas(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ReplicaEncryptDataArgs']]]]):
|
334
|
+
pulumi.set(self, "encrypt_datas", value)
|
335
|
+
|
320
336
|
@property
|
321
337
|
@pulumi.getter(name="faultDomain")
|
322
338
|
def fault_domain(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -647,6 +663,7 @@ class Replica(pulumi.CustomResource):
|
|
647
663
|
__props__.__dict__["availability_domain"] = None
|
648
664
|
__props__.__dict__["compartment_id"] = None
|
649
665
|
__props__.__dict__["configuration_id"] = None
|
666
|
+
__props__.__dict__["encrypt_datas"] = None
|
650
667
|
__props__.__dict__["fault_domain"] = None
|
651
668
|
__props__.__dict__["ip_address"] = None
|
652
669
|
__props__.__dict__["lifecycle_details"] = None
|
@@ -676,6 +693,7 @@ class Replica(pulumi.CustomResource):
|
|
676
693
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
677
694
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
678
695
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
696
|
+
encrypt_datas: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ReplicaEncryptDataArgs', 'ReplicaEncryptDataArgsDict']]]]] = None,
|
679
697
|
fault_domain: Optional[pulumi.Input[builtins.str]] = None,
|
680
698
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
681
699
|
ip_address: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -705,6 +723,7 @@ class Replica(pulumi.CustomResource):
|
|
705
723
|
: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"}`
|
706
724
|
:param pulumi.Input[builtins.str] description: (Updatable) User provided description of the read replica.
|
707
725
|
:param pulumi.Input[builtins.str] display_name: (Updatable) The user-friendly name for the read replica. It does not have to be unique.
|
726
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ReplicaEncryptDataArgs', 'ReplicaEncryptDataArgsDict']]]] encrypt_datas: Encrypt data details.
|
708
727
|
:param pulumi.Input[builtins.str] fault_domain: The name of the Fault Domain the read replica is located in.
|
709
728
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
710
729
|
:param pulumi.Input[builtins.str] ip_address: The IP address the read replica is configured to listen on.
|
@@ -732,6 +751,7 @@ class Replica(pulumi.CustomResource):
|
|
732
751
|
__props__.__dict__["defined_tags"] = defined_tags
|
733
752
|
__props__.__dict__["description"] = description
|
734
753
|
__props__.__dict__["display_name"] = display_name
|
754
|
+
__props__.__dict__["encrypt_datas"] = encrypt_datas
|
735
755
|
__props__.__dict__["fault_domain"] = fault_domain
|
736
756
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
737
757
|
__props__.__dict__["ip_address"] = ip_address
|
@@ -805,6 +825,14 @@ class Replica(pulumi.CustomResource):
|
|
805
825
|
"""
|
806
826
|
return pulumi.get(self, "display_name")
|
807
827
|
|
828
|
+
@property
|
829
|
+
@pulumi.getter(name="encryptDatas")
|
830
|
+
def encrypt_datas(self) -> pulumi.Output[Sequence['outputs.ReplicaEncryptData']]:
|
831
|
+
"""
|
832
|
+
Encrypt data details.
|
833
|
+
"""
|
834
|
+
return pulumi.get(self, "encrypt_datas")
|
835
|
+
|
808
836
|
@property
|
809
837
|
@pulumi.getter(name="faultDomain")
|
810
838
|
def fault_domain(self) -> pulumi.Output[builtins.str]:
|
pulumi_oci/nosql/__init__.py
CHANGED
pulumi_oci/nosql/_inputs.py
CHANGED
@@ -16,6 +16,8 @@ else:
|
|
16
16
|
from .. import _utilities
|
17
17
|
|
18
18
|
__all__ = [
|
19
|
+
'ConfigurationKmsKeyArgs',
|
20
|
+
'ConfigurationKmsKeyArgsDict',
|
19
21
|
'IndexKeyArgs',
|
20
22
|
'IndexKeyArgsDict',
|
21
23
|
'TableReplicaArgs',
|
@@ -36,6 +38,130 @@ __all__ = [
|
|
36
38
|
|
37
39
|
MYPY = False
|
38
40
|
|
41
|
+
if not MYPY:
|
42
|
+
class ConfigurationKmsKeyArgsDict(TypedDict):
|
43
|
+
id: NotRequired[pulumi.Input[builtins.str]]
|
44
|
+
"""
|
45
|
+
(Updatable) The OCID of the KMS encryption key assigned to this Hosted Environment. If the Hosted Environment is using an Oracle-managed Key (i.e., not a CMEK), then the id will be a null string.
|
46
|
+
"""
|
47
|
+
kms_key_state: NotRequired[pulumi.Input[builtins.str]]
|
48
|
+
"""
|
49
|
+
(Updatable) The current state of the encryption key assigned to this Hosted Environment. Oracle-managed keys will always report an ACTIVE state.
|
50
|
+
"""
|
51
|
+
kms_vault_id: NotRequired[pulumi.Input[builtins.str]]
|
52
|
+
"""
|
53
|
+
(Updatable) The OCID of the vault containing the encryption key assigned to this Hosted Environment. If the Hosted Environment is using an Oracle-managed Key (i.e., not a CMEK), then the kmsVaultId will be a null string.
|
54
|
+
"""
|
55
|
+
time_created: NotRequired[pulumi.Input[builtins.str]]
|
56
|
+
"""
|
57
|
+
(Updatable) The timestamp when encryption key was first enabled for this Hosted Environment. RFC3339 formatted.
|
58
|
+
"""
|
59
|
+
time_updated: NotRequired[pulumi.Input[builtins.str]]
|
60
|
+
"""
|
61
|
+
(Updatable) The timestamp of the last update to the encryption key status. RFC3339 formatted.
|
62
|
+
|
63
|
+
|
64
|
+
** IMPORTANT **
|
65
|
+
The configuration cannot be deleted.
|
66
|
+
"""
|
67
|
+
elif False:
|
68
|
+
ConfigurationKmsKeyArgsDict: TypeAlias = Mapping[str, Any]
|
69
|
+
|
70
|
+
@pulumi.input_type
|
71
|
+
class ConfigurationKmsKeyArgs:
|
72
|
+
def __init__(__self__, *,
|
73
|
+
id: Optional[pulumi.Input[builtins.str]] = None,
|
74
|
+
kms_key_state: Optional[pulumi.Input[builtins.str]] = None,
|
75
|
+
kms_vault_id: Optional[pulumi.Input[builtins.str]] = None,
|
76
|
+
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
77
|
+
time_updated: Optional[pulumi.Input[builtins.str]] = None):
|
78
|
+
"""
|
79
|
+
:param pulumi.Input[builtins.str] id: (Updatable) The OCID of the KMS encryption key assigned to this Hosted Environment. If the Hosted Environment is using an Oracle-managed Key (i.e., not a CMEK), then the id will be a null string.
|
80
|
+
:param pulumi.Input[builtins.str] kms_key_state: (Updatable) The current state of the encryption key assigned to this Hosted Environment. Oracle-managed keys will always report an ACTIVE state.
|
81
|
+
:param pulumi.Input[builtins.str] kms_vault_id: (Updatable) The OCID of the vault containing the encryption key assigned to this Hosted Environment. If the Hosted Environment is using an Oracle-managed Key (i.e., not a CMEK), then the kmsVaultId will be a null string.
|
82
|
+
:param pulumi.Input[builtins.str] time_created: (Updatable) The timestamp when encryption key was first enabled for this Hosted Environment. RFC3339 formatted.
|
83
|
+
:param pulumi.Input[builtins.str] time_updated: (Updatable) The timestamp of the last update to the encryption key status. RFC3339 formatted.
|
84
|
+
|
85
|
+
|
86
|
+
** IMPORTANT **
|
87
|
+
The configuration cannot be deleted.
|
88
|
+
"""
|
89
|
+
if id is not None:
|
90
|
+
pulumi.set(__self__, "id", id)
|
91
|
+
if kms_key_state is not None:
|
92
|
+
pulumi.set(__self__, "kms_key_state", kms_key_state)
|
93
|
+
if kms_vault_id is not None:
|
94
|
+
pulumi.set(__self__, "kms_vault_id", kms_vault_id)
|
95
|
+
if time_created is not None:
|
96
|
+
pulumi.set(__self__, "time_created", time_created)
|
97
|
+
if time_updated is not None:
|
98
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
99
|
+
|
100
|
+
@property
|
101
|
+
@pulumi.getter
|
102
|
+
def id(self) -> Optional[pulumi.Input[builtins.str]]:
|
103
|
+
"""
|
104
|
+
(Updatable) The OCID of the KMS encryption key assigned to this Hosted Environment. If the Hosted Environment is using an Oracle-managed Key (i.e., not a CMEK), then the id will be a null string.
|
105
|
+
"""
|
106
|
+
return pulumi.get(self, "id")
|
107
|
+
|
108
|
+
@id.setter
|
109
|
+
def id(self, value: Optional[pulumi.Input[builtins.str]]):
|
110
|
+
pulumi.set(self, "id", value)
|
111
|
+
|
112
|
+
@property
|
113
|
+
@pulumi.getter(name="kmsKeyState")
|
114
|
+
def kms_key_state(self) -> Optional[pulumi.Input[builtins.str]]:
|
115
|
+
"""
|
116
|
+
(Updatable) The current state of the encryption key assigned to this Hosted Environment. Oracle-managed keys will always report an ACTIVE state.
|
117
|
+
"""
|
118
|
+
return pulumi.get(self, "kms_key_state")
|
119
|
+
|
120
|
+
@kms_key_state.setter
|
121
|
+
def kms_key_state(self, value: Optional[pulumi.Input[builtins.str]]):
|
122
|
+
pulumi.set(self, "kms_key_state", value)
|
123
|
+
|
124
|
+
@property
|
125
|
+
@pulumi.getter(name="kmsVaultId")
|
126
|
+
def kms_vault_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
127
|
+
"""
|
128
|
+
(Updatable) The OCID of the vault containing the encryption key assigned to this Hosted Environment. If the Hosted Environment is using an Oracle-managed Key (i.e., not a CMEK), then the kmsVaultId will be a null string.
|
129
|
+
"""
|
130
|
+
return pulumi.get(self, "kms_vault_id")
|
131
|
+
|
132
|
+
@kms_vault_id.setter
|
133
|
+
def kms_vault_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
134
|
+
pulumi.set(self, "kms_vault_id", value)
|
135
|
+
|
136
|
+
@property
|
137
|
+
@pulumi.getter(name="timeCreated")
|
138
|
+
def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
|
139
|
+
"""
|
140
|
+
(Updatable) The timestamp when encryption key was first enabled for this Hosted Environment. RFC3339 formatted.
|
141
|
+
"""
|
142
|
+
return pulumi.get(self, "time_created")
|
143
|
+
|
144
|
+
@time_created.setter
|
145
|
+
def time_created(self, value: Optional[pulumi.Input[builtins.str]]):
|
146
|
+
pulumi.set(self, "time_created", value)
|
147
|
+
|
148
|
+
@property
|
149
|
+
@pulumi.getter(name="timeUpdated")
|
150
|
+
def time_updated(self) -> Optional[pulumi.Input[builtins.str]]:
|
151
|
+
"""
|
152
|
+
(Updatable) The timestamp of the last update to the encryption key status. RFC3339 formatted.
|
153
|
+
|
154
|
+
|
155
|
+
** IMPORTANT **
|
156
|
+
The configuration cannot be deleted.
|
157
|
+
"""
|
158
|
+
return pulumi.get(self, "time_updated")
|
159
|
+
|
160
|
+
@time_updated.setter
|
161
|
+
def time_updated(self, value: Optional[pulumi.Input[builtins.str]]):
|
162
|
+
pulumi.set(self, "time_updated", value)
|
163
|
+
|
164
|
+
|
39
165
|
if not MYPY:
|
40
166
|
class IndexKeyArgsDict(TypedDict):
|
41
167
|
column_name: pulumi.Input[builtins.str]
|
@@ -571,7 +697,7 @@ if not MYPY:
|
|
571
697
|
|
572
698
|
|
573
699
|
** IMPORTANT **
|
574
|
-
Any change to a property that
|
700
|
+
Any change to a property that is not identified as "Updateable" will force the destruction and recreation of the resource with the new property values.
|
575
701
|
"""
|
576
702
|
capacity_mode: NotRequired[pulumi.Input[builtins.str]]
|
577
703
|
"""
|
@@ -594,7 +720,7 @@ class TableTableLimitsArgs:
|
|
594
720
|
|
595
721
|
|
596
722
|
** IMPORTANT **
|
597
|
-
Any change to a property that
|
723
|
+
Any change to a property that is not identified as "Updateable" will force the destruction and recreation of the resource with the new property values.
|
598
724
|
:param pulumi.Input[builtins.str] capacity_mode: (Updatable) The capacity mode of the table. If capacityMode = ON_DEMAND, maxReadUnits and maxWriteUnits are not used, and both will have the value of zero.
|
599
725
|
"""
|
600
726
|
pulumi.set(__self__, "max_read_units", max_read_units)
|
@@ -635,7 +761,7 @@ class TableTableLimitsArgs:
|
|
635
761
|
|
636
762
|
|
637
763
|
** IMPORTANT **
|
638
|
-
Any change to a property that
|
764
|
+
Any change to a property that is not identified as "Updateable" will force the destruction and recreation of the resource with the new property values.
|
639
765
|
"""
|
640
766
|
return pulumi.get(self, "max_write_units")
|
641
767
|
|
@@ -0,0 +1,383 @@
|
|
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__ = ['ConfigurationArgs', 'Configuration']
|
21
|
+
|
22
|
+
@pulumi.input_type
|
23
|
+
class ConfigurationArgs:
|
24
|
+
def __init__(__self__, *,
|
25
|
+
compartment_id: pulumi.Input[builtins.str],
|
26
|
+
environment: pulumi.Input[builtins.str],
|
27
|
+
is_opc_dry_run: Optional[pulumi.Input[builtins.bool]] = None,
|
28
|
+
kms_key: Optional[pulumi.Input['ConfigurationKmsKeyArgs']] = None):
|
29
|
+
"""
|
30
|
+
The set of arguments for constructing a Configuration resource.
|
31
|
+
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The tenancy's OCID
|
32
|
+
:param pulumi.Input[builtins.str] environment: (Updatable) The service environment type.
|
33
|
+
:param pulumi.Input[builtins.bool] is_opc_dry_run: (Updatable) If true, indicates that the request is a dry run. A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
|
34
|
+
:param pulumi.Input['ConfigurationKmsKeyArgs'] kms_key: (Updatable) Information about the state of the service's encryption key management. The following properties are read-only and ignored when this object is used in UpdateConfiguration: kmsKeyState, timeCreated, timeUpdated.
|
35
|
+
"""
|
36
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
37
|
+
pulumi.set(__self__, "environment", environment)
|
38
|
+
if is_opc_dry_run is not None:
|
39
|
+
pulumi.set(__self__, "is_opc_dry_run", is_opc_dry_run)
|
40
|
+
if kms_key is not None:
|
41
|
+
pulumi.set(__self__, "kms_key", kms_key)
|
42
|
+
|
43
|
+
@property
|
44
|
+
@pulumi.getter(name="compartmentId")
|
45
|
+
def compartment_id(self) -> pulumi.Input[builtins.str]:
|
46
|
+
"""
|
47
|
+
(Updatable) The tenancy's OCID
|
48
|
+
"""
|
49
|
+
return pulumi.get(self, "compartment_id")
|
50
|
+
|
51
|
+
@compartment_id.setter
|
52
|
+
def compartment_id(self, value: pulumi.Input[builtins.str]):
|
53
|
+
pulumi.set(self, "compartment_id", value)
|
54
|
+
|
55
|
+
@property
|
56
|
+
@pulumi.getter
|
57
|
+
def environment(self) -> pulumi.Input[builtins.str]:
|
58
|
+
"""
|
59
|
+
(Updatable) The service environment type.
|
60
|
+
"""
|
61
|
+
return pulumi.get(self, "environment")
|
62
|
+
|
63
|
+
@environment.setter
|
64
|
+
def environment(self, value: pulumi.Input[builtins.str]):
|
65
|
+
pulumi.set(self, "environment", value)
|
66
|
+
|
67
|
+
@property
|
68
|
+
@pulumi.getter(name="isOpcDryRun")
|
69
|
+
def is_opc_dry_run(self) -> Optional[pulumi.Input[builtins.bool]]:
|
70
|
+
"""
|
71
|
+
(Updatable) If true, indicates that the request is a dry run. A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
|
72
|
+
"""
|
73
|
+
return pulumi.get(self, "is_opc_dry_run")
|
74
|
+
|
75
|
+
@is_opc_dry_run.setter
|
76
|
+
def is_opc_dry_run(self, value: Optional[pulumi.Input[builtins.bool]]):
|
77
|
+
pulumi.set(self, "is_opc_dry_run", value)
|
78
|
+
|
79
|
+
@property
|
80
|
+
@pulumi.getter(name="kmsKey")
|
81
|
+
def kms_key(self) -> Optional[pulumi.Input['ConfigurationKmsKeyArgs']]:
|
82
|
+
"""
|
83
|
+
(Updatable) Information about the state of the service's encryption key management. The following properties are read-only and ignored when this object is used in UpdateConfiguration: kmsKeyState, timeCreated, timeUpdated.
|
84
|
+
"""
|
85
|
+
return pulumi.get(self, "kms_key")
|
86
|
+
|
87
|
+
@kms_key.setter
|
88
|
+
def kms_key(self, value: Optional[pulumi.Input['ConfigurationKmsKeyArgs']]):
|
89
|
+
pulumi.set(self, "kms_key", value)
|
90
|
+
|
91
|
+
|
92
|
+
@pulumi.input_type
|
93
|
+
class _ConfigurationState:
|
94
|
+
def __init__(__self__, *,
|
95
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
96
|
+
environment: Optional[pulumi.Input[builtins.str]] = None,
|
97
|
+
is_opc_dry_run: Optional[pulumi.Input[builtins.bool]] = None,
|
98
|
+
kms_key: Optional[pulumi.Input['ConfigurationKmsKeyArgs']] = None):
|
99
|
+
"""
|
100
|
+
Input properties used for looking up and filtering Configuration resources.
|
101
|
+
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The tenancy's OCID
|
102
|
+
:param pulumi.Input[builtins.str] environment: (Updatable) The service environment type.
|
103
|
+
:param pulumi.Input[builtins.bool] is_opc_dry_run: (Updatable) If true, indicates that the request is a dry run. A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
|
104
|
+
:param pulumi.Input['ConfigurationKmsKeyArgs'] kms_key: (Updatable) Information about the state of the service's encryption key management. The following properties are read-only and ignored when this object is used in UpdateConfiguration: kmsKeyState, timeCreated, timeUpdated.
|
105
|
+
"""
|
106
|
+
if compartment_id is not None:
|
107
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
108
|
+
if environment is not None:
|
109
|
+
pulumi.set(__self__, "environment", environment)
|
110
|
+
if is_opc_dry_run is not None:
|
111
|
+
pulumi.set(__self__, "is_opc_dry_run", is_opc_dry_run)
|
112
|
+
if kms_key is not None:
|
113
|
+
pulumi.set(__self__, "kms_key", kms_key)
|
114
|
+
|
115
|
+
@property
|
116
|
+
@pulumi.getter(name="compartmentId")
|
117
|
+
def compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
118
|
+
"""
|
119
|
+
(Updatable) The tenancy's OCID
|
120
|
+
"""
|
121
|
+
return pulumi.get(self, "compartment_id")
|
122
|
+
|
123
|
+
@compartment_id.setter
|
124
|
+
def compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
125
|
+
pulumi.set(self, "compartment_id", value)
|
126
|
+
|
127
|
+
@property
|
128
|
+
@pulumi.getter
|
129
|
+
def environment(self) -> Optional[pulumi.Input[builtins.str]]:
|
130
|
+
"""
|
131
|
+
(Updatable) The service environment type.
|
132
|
+
"""
|
133
|
+
return pulumi.get(self, "environment")
|
134
|
+
|
135
|
+
@environment.setter
|
136
|
+
def environment(self, value: Optional[pulumi.Input[builtins.str]]):
|
137
|
+
pulumi.set(self, "environment", value)
|
138
|
+
|
139
|
+
@property
|
140
|
+
@pulumi.getter(name="isOpcDryRun")
|
141
|
+
def is_opc_dry_run(self) -> Optional[pulumi.Input[builtins.bool]]:
|
142
|
+
"""
|
143
|
+
(Updatable) If true, indicates that the request is a dry run. A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
|
144
|
+
"""
|
145
|
+
return pulumi.get(self, "is_opc_dry_run")
|
146
|
+
|
147
|
+
@is_opc_dry_run.setter
|
148
|
+
def is_opc_dry_run(self, value: Optional[pulumi.Input[builtins.bool]]):
|
149
|
+
pulumi.set(self, "is_opc_dry_run", value)
|
150
|
+
|
151
|
+
@property
|
152
|
+
@pulumi.getter(name="kmsKey")
|
153
|
+
def kms_key(self) -> Optional[pulumi.Input['ConfigurationKmsKeyArgs']]:
|
154
|
+
"""
|
155
|
+
(Updatable) Information about the state of the service's encryption key management. The following properties are read-only and ignored when this object is used in UpdateConfiguration: kmsKeyState, timeCreated, timeUpdated.
|
156
|
+
"""
|
157
|
+
return pulumi.get(self, "kms_key")
|
158
|
+
|
159
|
+
@kms_key.setter
|
160
|
+
def kms_key(self, value: Optional[pulumi.Input['ConfigurationKmsKeyArgs']]):
|
161
|
+
pulumi.set(self, "kms_key", value)
|
162
|
+
|
163
|
+
|
164
|
+
@pulumi.type_token("oci:Nosql/configuration:Configuration")
|
165
|
+
class Configuration(pulumi.CustomResource):
|
166
|
+
@overload
|
167
|
+
def __init__(__self__,
|
168
|
+
resource_name: str,
|
169
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
170
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
171
|
+
environment: Optional[pulumi.Input[builtins.str]] = None,
|
172
|
+
is_opc_dry_run: Optional[pulumi.Input[builtins.bool]] = None,
|
173
|
+
kms_key: Optional[pulumi.Input[Union['ConfigurationKmsKeyArgs', 'ConfigurationKmsKeyArgsDict']]] = None,
|
174
|
+
__props__=None):
|
175
|
+
"""
|
176
|
+
This resource provides the Configuration in Oracle Cloud Infrastructure NoSQL Database service.
|
177
|
+
|
178
|
+
Updates the service-level configuration. The discriminator value
|
179
|
+
`UpdateConfigurationDetails.environment` must match the service's
|
180
|
+
environment type.
|
181
|
+
|
182
|
+
A configuration serves as a centralized repository for global parameters that
|
183
|
+
affect the NoSQL service. Currently, there is only one such parameter: a
|
184
|
+
customer-provided key for encrypting NoSQL data at rest.
|
185
|
+
|
186
|
+
The Customer-Managed Encryption Keys (CMEK) feature is exclusively available
|
187
|
+
in private NoSQL environments dedicated to a single tenancy, where the CMEK
|
188
|
+
option has been enabled. Updating the configuration of the default, regional,
|
189
|
+
multi-tenancy NoSQL service is not supported.
|
190
|
+
|
191
|
+
To specify the dedicated environment, set the environment variable
|
192
|
+
CLIENT_HOST_OVERRIDES=oci_nosql.NosqlClient=$ENDPOINT
|
193
|
+
Where $ENDPOINT is the endpoint of the dedicated NoSQL environment.
|
194
|
+
For example:
|
195
|
+
$ export CLIENT_HOST_OVERRIDES=oci_nosql.NosqlClient=https://acme-widgets.nosql.oci.oraclecloud.com
|
196
|
+
|
197
|
+
## Example Usage
|
198
|
+
|
199
|
+
```python
|
200
|
+
import pulumi
|
201
|
+
import pulumi_oci as oci
|
202
|
+
|
203
|
+
test_configuration = oci.nosql.Configuration("test_configuration",
|
204
|
+
compartment_id=compartment_id,
|
205
|
+
environment="HOSTED",
|
206
|
+
is_opc_dry_run=configuration_is_opc_dry_run,
|
207
|
+
kms_key={
|
208
|
+
"id": configuration_kms_key_id,
|
209
|
+
"kms_vault_id": test_vault["id"],
|
210
|
+
})
|
211
|
+
```
|
212
|
+
|
213
|
+
## Import
|
214
|
+
|
215
|
+
Configurations can be imported using the `id`, e.g.
|
216
|
+
|
217
|
+
```sh
|
218
|
+
$ pulumi import oci:Nosql/configuration:Configuration test_configuration "configuration/compartmentId/{compartmentId}"
|
219
|
+
```
|
220
|
+
|
221
|
+
:param str resource_name: The name of the resource.
|
222
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
223
|
+
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The tenancy's OCID
|
224
|
+
:param pulumi.Input[builtins.str] environment: (Updatable) The service environment type.
|
225
|
+
:param pulumi.Input[builtins.bool] is_opc_dry_run: (Updatable) If true, indicates that the request is a dry run. A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
|
226
|
+
:param pulumi.Input[Union['ConfigurationKmsKeyArgs', 'ConfigurationKmsKeyArgsDict']] kms_key: (Updatable) Information about the state of the service's encryption key management. The following properties are read-only and ignored when this object is used in UpdateConfiguration: kmsKeyState, timeCreated, timeUpdated.
|
227
|
+
"""
|
228
|
+
...
|
229
|
+
@overload
|
230
|
+
def __init__(__self__,
|
231
|
+
resource_name: str,
|
232
|
+
args: ConfigurationArgs,
|
233
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
234
|
+
"""
|
235
|
+
This resource provides the Configuration in Oracle Cloud Infrastructure NoSQL Database service.
|
236
|
+
|
237
|
+
Updates the service-level configuration. The discriminator value
|
238
|
+
`UpdateConfigurationDetails.environment` must match the service's
|
239
|
+
environment type.
|
240
|
+
|
241
|
+
A configuration serves as a centralized repository for global parameters that
|
242
|
+
affect the NoSQL service. Currently, there is only one such parameter: a
|
243
|
+
customer-provided key for encrypting NoSQL data at rest.
|
244
|
+
|
245
|
+
The Customer-Managed Encryption Keys (CMEK) feature is exclusively available
|
246
|
+
in private NoSQL environments dedicated to a single tenancy, where the CMEK
|
247
|
+
option has been enabled. Updating the configuration of the default, regional,
|
248
|
+
multi-tenancy NoSQL service is not supported.
|
249
|
+
|
250
|
+
To specify the dedicated environment, set the environment variable
|
251
|
+
CLIENT_HOST_OVERRIDES=oci_nosql.NosqlClient=$ENDPOINT
|
252
|
+
Where $ENDPOINT is the endpoint of the dedicated NoSQL environment.
|
253
|
+
For example:
|
254
|
+
$ export CLIENT_HOST_OVERRIDES=oci_nosql.NosqlClient=https://acme-widgets.nosql.oci.oraclecloud.com
|
255
|
+
|
256
|
+
## Example Usage
|
257
|
+
|
258
|
+
```python
|
259
|
+
import pulumi
|
260
|
+
import pulumi_oci as oci
|
261
|
+
|
262
|
+
test_configuration = oci.nosql.Configuration("test_configuration",
|
263
|
+
compartment_id=compartment_id,
|
264
|
+
environment="HOSTED",
|
265
|
+
is_opc_dry_run=configuration_is_opc_dry_run,
|
266
|
+
kms_key={
|
267
|
+
"id": configuration_kms_key_id,
|
268
|
+
"kms_vault_id": test_vault["id"],
|
269
|
+
})
|
270
|
+
```
|
271
|
+
|
272
|
+
## Import
|
273
|
+
|
274
|
+
Configurations can be imported using the `id`, e.g.
|
275
|
+
|
276
|
+
```sh
|
277
|
+
$ pulumi import oci:Nosql/configuration:Configuration test_configuration "configuration/compartmentId/{compartmentId}"
|
278
|
+
```
|
279
|
+
|
280
|
+
:param str resource_name: The name of the resource.
|
281
|
+
:param ConfigurationArgs args: The arguments to use to populate this resource's properties.
|
282
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
283
|
+
"""
|
284
|
+
...
|
285
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
286
|
+
resource_args, opts = _utilities.get_resource_args_opts(ConfigurationArgs, pulumi.ResourceOptions, *args, **kwargs)
|
287
|
+
if resource_args is not None:
|
288
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
289
|
+
else:
|
290
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
291
|
+
|
292
|
+
def _internal_init(__self__,
|
293
|
+
resource_name: str,
|
294
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
295
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
296
|
+
environment: Optional[pulumi.Input[builtins.str]] = None,
|
297
|
+
is_opc_dry_run: Optional[pulumi.Input[builtins.bool]] = None,
|
298
|
+
kms_key: Optional[pulumi.Input[Union['ConfigurationKmsKeyArgs', 'ConfigurationKmsKeyArgsDict']]] = None,
|
299
|
+
__props__=None):
|
300
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
301
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
302
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
303
|
+
if opts.id is None:
|
304
|
+
if __props__ is not None:
|
305
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
306
|
+
__props__ = ConfigurationArgs.__new__(ConfigurationArgs)
|
307
|
+
|
308
|
+
if compartment_id is None and not opts.urn:
|
309
|
+
raise TypeError("Missing required property 'compartment_id'")
|
310
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
311
|
+
if environment is None and not opts.urn:
|
312
|
+
raise TypeError("Missing required property 'environment'")
|
313
|
+
__props__.__dict__["environment"] = environment
|
314
|
+
__props__.__dict__["is_opc_dry_run"] = is_opc_dry_run
|
315
|
+
__props__.__dict__["kms_key"] = kms_key
|
316
|
+
super(Configuration, __self__).__init__(
|
317
|
+
'oci:Nosql/configuration:Configuration',
|
318
|
+
resource_name,
|
319
|
+
__props__,
|
320
|
+
opts)
|
321
|
+
|
322
|
+
@staticmethod
|
323
|
+
def get(resource_name: str,
|
324
|
+
id: pulumi.Input[str],
|
325
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
326
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
327
|
+
environment: Optional[pulumi.Input[builtins.str]] = None,
|
328
|
+
is_opc_dry_run: Optional[pulumi.Input[builtins.bool]] = None,
|
329
|
+
kms_key: Optional[pulumi.Input[Union['ConfigurationKmsKeyArgs', 'ConfigurationKmsKeyArgsDict']]] = None) -> 'Configuration':
|
330
|
+
"""
|
331
|
+
Get an existing Configuration resource's state with the given name, id, and optional extra
|
332
|
+
properties used to qualify the lookup.
|
333
|
+
|
334
|
+
:param str resource_name: The unique name of the resulting resource.
|
335
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
336
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
337
|
+
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The tenancy's OCID
|
338
|
+
:param pulumi.Input[builtins.str] environment: (Updatable) The service environment type.
|
339
|
+
:param pulumi.Input[builtins.bool] is_opc_dry_run: (Updatable) If true, indicates that the request is a dry run. A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
|
340
|
+
:param pulumi.Input[Union['ConfigurationKmsKeyArgs', 'ConfigurationKmsKeyArgsDict']] kms_key: (Updatable) Information about the state of the service's encryption key management. The following properties are read-only and ignored when this object is used in UpdateConfiguration: kmsKeyState, timeCreated, timeUpdated.
|
341
|
+
"""
|
342
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
343
|
+
|
344
|
+
__props__ = _ConfigurationState.__new__(_ConfigurationState)
|
345
|
+
|
346
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
347
|
+
__props__.__dict__["environment"] = environment
|
348
|
+
__props__.__dict__["is_opc_dry_run"] = is_opc_dry_run
|
349
|
+
__props__.__dict__["kms_key"] = kms_key
|
350
|
+
return Configuration(resource_name, opts=opts, __props__=__props__)
|
351
|
+
|
352
|
+
@property
|
353
|
+
@pulumi.getter(name="compartmentId")
|
354
|
+
def compartment_id(self) -> pulumi.Output[builtins.str]:
|
355
|
+
"""
|
356
|
+
(Updatable) The tenancy's OCID
|
357
|
+
"""
|
358
|
+
return pulumi.get(self, "compartment_id")
|
359
|
+
|
360
|
+
@property
|
361
|
+
@pulumi.getter
|
362
|
+
def environment(self) -> pulumi.Output[builtins.str]:
|
363
|
+
"""
|
364
|
+
(Updatable) The service environment type.
|
365
|
+
"""
|
366
|
+
return pulumi.get(self, "environment")
|
367
|
+
|
368
|
+
@property
|
369
|
+
@pulumi.getter(name="isOpcDryRun")
|
370
|
+
def is_opc_dry_run(self) -> pulumi.Output[builtins.bool]:
|
371
|
+
"""
|
372
|
+
(Updatable) If true, indicates that the request is a dry run. A dry run request does not modify the configuration item details and is used only to perform validation on the submitted data.
|
373
|
+
"""
|
374
|
+
return pulumi.get(self, "is_opc_dry_run")
|
375
|
+
|
376
|
+
@property
|
377
|
+
@pulumi.getter(name="kmsKey")
|
378
|
+
def kms_key(self) -> pulumi.Output['outputs.ConfigurationKmsKey']:
|
379
|
+
"""
|
380
|
+
(Updatable) Information about the state of the service's encryption key management. The following properties are read-only and ignored when this object is used in UpdateConfiguration: kmsKeyState, timeCreated, timeUpdated.
|
381
|
+
"""
|
382
|
+
return pulumi.get(self, "kms_key")
|
383
|
+
|