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
@@ -0,0 +1,162 @@
|
|
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
|
+
|
19
|
+
__all__ = [
|
20
|
+
'GetConfigurationResult',
|
21
|
+
'AwaitableGetConfigurationResult',
|
22
|
+
'get_configuration',
|
23
|
+
'get_configuration_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetConfigurationResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getConfiguration.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, compartment_id=None, environment=None, id=None, is_opc_dry_run=None, kms_keys=None):
|
32
|
+
if compartment_id and not isinstance(compartment_id, str):
|
33
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
35
|
+
if environment and not isinstance(environment, str):
|
36
|
+
raise TypeError("Expected argument 'environment' to be a str")
|
37
|
+
pulumi.set(__self__, "environment", environment)
|
38
|
+
if id and not isinstance(id, str):
|
39
|
+
raise TypeError("Expected argument 'id' to be a str")
|
40
|
+
pulumi.set(__self__, "id", id)
|
41
|
+
if is_opc_dry_run and not isinstance(is_opc_dry_run, bool):
|
42
|
+
raise TypeError("Expected argument 'is_opc_dry_run' to be a bool")
|
43
|
+
pulumi.set(__self__, "is_opc_dry_run", is_opc_dry_run)
|
44
|
+
if kms_keys and not isinstance(kms_keys, list):
|
45
|
+
raise TypeError("Expected argument 'kms_keys' to be a list")
|
46
|
+
pulumi.set(__self__, "kms_keys", kms_keys)
|
47
|
+
|
48
|
+
@property
|
49
|
+
@pulumi.getter(name="compartmentId")
|
50
|
+
def compartment_id(self) -> builtins.str:
|
51
|
+
return pulumi.get(self, "compartment_id")
|
52
|
+
|
53
|
+
@property
|
54
|
+
@pulumi.getter
|
55
|
+
def environment(self) -> builtins.str:
|
56
|
+
"""
|
57
|
+
The service environment type.
|
58
|
+
"""
|
59
|
+
return pulumi.get(self, "environment")
|
60
|
+
|
61
|
+
@property
|
62
|
+
@pulumi.getter
|
63
|
+
def id(self) -> builtins.str:
|
64
|
+
"""
|
65
|
+
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.
|
66
|
+
"""
|
67
|
+
return pulumi.get(self, "id")
|
68
|
+
|
69
|
+
@property
|
70
|
+
@pulumi.getter(name="isOpcDryRun")
|
71
|
+
def is_opc_dry_run(self) -> builtins.bool:
|
72
|
+
return pulumi.get(self, "is_opc_dry_run")
|
73
|
+
|
74
|
+
@property
|
75
|
+
@pulumi.getter(name="kmsKeys")
|
76
|
+
def kms_keys(self) -> Sequence['outputs.GetConfigurationKmsKeyResult']:
|
77
|
+
"""
|
78
|
+
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.
|
79
|
+
"""
|
80
|
+
return pulumi.get(self, "kms_keys")
|
81
|
+
|
82
|
+
|
83
|
+
class AwaitableGetConfigurationResult(GetConfigurationResult):
|
84
|
+
# pylint: disable=using-constant-test
|
85
|
+
def __await__(self):
|
86
|
+
if False:
|
87
|
+
yield self
|
88
|
+
return GetConfigurationResult(
|
89
|
+
compartment_id=self.compartment_id,
|
90
|
+
environment=self.environment,
|
91
|
+
id=self.id,
|
92
|
+
is_opc_dry_run=self.is_opc_dry_run,
|
93
|
+
kms_keys=self.kms_keys)
|
94
|
+
|
95
|
+
|
96
|
+
def get_configuration(compartment_id: Optional[builtins.str] = None,
|
97
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetConfigurationResult:
|
98
|
+
"""
|
99
|
+
This data source provides details about a specific Configuration resource in Oracle Cloud Infrastructure NoSQL Database service.
|
100
|
+
|
101
|
+
Retrieves the current service-level configuration. The
|
102
|
+
service may of the standard MULTI_TENANCY type, or of the
|
103
|
+
HOSTED environment type. In the latter case, information about the
|
104
|
+
current state of the environment's global encryption key is
|
105
|
+
included in the response.
|
106
|
+
|
107
|
+
## Example Usage
|
108
|
+
|
109
|
+
```python
|
110
|
+
import pulumi
|
111
|
+
import pulumi_oci as oci
|
112
|
+
|
113
|
+
test_configuration = oci.Nosql.get_configuration(compartment_id=compartment_id)
|
114
|
+
```
|
115
|
+
|
116
|
+
|
117
|
+
:param builtins.str compartment_id: The ID of a table's compartment.
|
118
|
+
"""
|
119
|
+
__args__ = dict()
|
120
|
+
__args__['compartmentId'] = compartment_id
|
121
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
122
|
+
__ret__ = pulumi.runtime.invoke('oci:Nosql/getConfiguration:getConfiguration', __args__, opts=opts, typ=GetConfigurationResult).value
|
123
|
+
|
124
|
+
return AwaitableGetConfigurationResult(
|
125
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
126
|
+
environment=pulumi.get(__ret__, 'environment'),
|
127
|
+
id=pulumi.get(__ret__, 'id'),
|
128
|
+
is_opc_dry_run=pulumi.get(__ret__, 'is_opc_dry_run'),
|
129
|
+
kms_keys=pulumi.get(__ret__, 'kms_keys'))
|
130
|
+
def get_configuration_output(compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
131
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetConfigurationResult]:
|
132
|
+
"""
|
133
|
+
This data source provides details about a specific Configuration resource in Oracle Cloud Infrastructure NoSQL Database service.
|
134
|
+
|
135
|
+
Retrieves the current service-level configuration. The
|
136
|
+
service may of the standard MULTI_TENANCY type, or of the
|
137
|
+
HOSTED environment type. In the latter case, information about the
|
138
|
+
current state of the environment's global encryption key is
|
139
|
+
included in the response.
|
140
|
+
|
141
|
+
## Example Usage
|
142
|
+
|
143
|
+
```python
|
144
|
+
import pulumi
|
145
|
+
import pulumi_oci as oci
|
146
|
+
|
147
|
+
test_configuration = oci.Nosql.get_configuration(compartment_id=compartment_id)
|
148
|
+
```
|
149
|
+
|
150
|
+
|
151
|
+
:param builtins.str compartment_id: The ID of a table's compartment.
|
152
|
+
"""
|
153
|
+
__args__ = dict()
|
154
|
+
__args__['compartmentId'] = compartment_id
|
155
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
156
|
+
__ret__ = pulumi.runtime.invoke_output('oci:Nosql/getConfiguration:getConfiguration', __args__, opts=opts, typ=GetConfigurationResult)
|
157
|
+
return __ret__.apply(lambda __response__: GetConfigurationResult(
|
158
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
159
|
+
environment=pulumi.get(__response__, 'environment'),
|
160
|
+
id=pulumi.get(__response__, 'id'),
|
161
|
+
is_opc_dry_run=pulumi.get(__response__, 'is_opc_dry_run'),
|
162
|
+
kms_keys=pulumi.get(__response__, 'kms_keys')))
|
pulumi_oci/nosql/index.py
CHANGED
@@ -34,7 +34,7 @@ class IndexArgs:
|
|
34
34
|
|
35
35
|
|
36
36
|
** IMPORTANT **
|
37
|
-
Any change to a property that
|
37
|
+
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.
|
38
38
|
:param pulumi.Input[builtins.str] compartment_id: The OCID of the table's compartment. Required if the tableNameOrId path parameter is a table name. Optional if tableNameOrId is an OCID. If tableNameOrId is an OCID, and compartmentId is supplied, the latter must match the identified table's compartmentId.
|
39
39
|
:param pulumi.Input[builtins.bool] is_if_not_exists: If true, the operation completes successfully even when the index exists. Otherwise, an attempt to create an index that already exists will return an error.
|
40
40
|
:param pulumi.Input[builtins.str] name: Index name.
|
@@ -68,7 +68,7 @@ class IndexArgs:
|
|
68
68
|
|
69
69
|
|
70
70
|
** IMPORTANT **
|
71
|
-
Any change to a property that
|
71
|
+
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.
|
72
72
|
"""
|
73
73
|
return pulumi.get(self, "table_name_or_id")
|
74
74
|
|
@@ -139,7 +139,7 @@ class _IndexState:
|
|
139
139
|
|
140
140
|
|
141
141
|
** IMPORTANT **
|
142
|
-
Any change to a property that
|
142
|
+
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.
|
143
143
|
"""
|
144
144
|
if compartment_id is not None:
|
145
145
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -264,7 +264,7 @@ class _IndexState:
|
|
264
264
|
|
265
265
|
|
266
266
|
** IMPORTANT **
|
267
|
-
Any change to a property that
|
267
|
+
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.
|
268
268
|
"""
|
269
269
|
return pulumi.get(self, "table_name_or_id")
|
270
270
|
|
@@ -326,7 +326,7 @@ class Index(pulumi.CustomResource):
|
|
326
326
|
|
327
327
|
|
328
328
|
** IMPORTANT **
|
329
|
-
Any change to a property that
|
329
|
+
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.
|
330
330
|
"""
|
331
331
|
...
|
332
332
|
@overload
|
@@ -445,7 +445,7 @@ class Index(pulumi.CustomResource):
|
|
445
445
|
|
446
446
|
|
447
447
|
** IMPORTANT **
|
448
|
-
Any change to a property that
|
448
|
+
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.
|
449
449
|
"""
|
450
450
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
451
451
|
|
@@ -534,7 +534,7 @@ class Index(pulumi.CustomResource):
|
|
534
534
|
|
535
535
|
|
536
536
|
** IMPORTANT **
|
537
|
-
Any change to a property that
|
537
|
+
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.
|
538
538
|
"""
|
539
539
|
return pulumi.get(self, "table_name_or_id")
|
540
540
|
|
pulumi_oci/nosql/outputs.py
CHANGED
@@ -17,12 +17,14 @@ from .. import _utilities
|
|
17
17
|
from . import outputs
|
18
18
|
|
19
19
|
__all__ = [
|
20
|
+
'ConfigurationKmsKey',
|
20
21
|
'IndexKey',
|
21
22
|
'TableReplica',
|
22
23
|
'TableSchema',
|
23
24
|
'TableSchemaColumn',
|
24
25
|
'TableSchemaIdentity',
|
25
26
|
'TableTableLimits',
|
27
|
+
'GetConfigurationKmsKeyResult',
|
26
28
|
'GetIndexKeyResult',
|
27
29
|
'GetIndexesFilterResult',
|
28
30
|
'GetIndexesIndexCollectionResult',
|
@@ -41,6 +43,104 @@ __all__ = [
|
|
41
43
|
'GetTablesTableCollectionTableLimitResult',
|
42
44
|
]
|
43
45
|
|
46
|
+
@pulumi.output_type
|
47
|
+
class ConfigurationKmsKey(dict):
|
48
|
+
@staticmethod
|
49
|
+
def __key_warning(key: str):
|
50
|
+
suggest = None
|
51
|
+
if key == "kmsKeyState":
|
52
|
+
suggest = "kms_key_state"
|
53
|
+
elif key == "kmsVaultId":
|
54
|
+
suggest = "kms_vault_id"
|
55
|
+
elif key == "timeCreated":
|
56
|
+
suggest = "time_created"
|
57
|
+
elif key == "timeUpdated":
|
58
|
+
suggest = "time_updated"
|
59
|
+
|
60
|
+
if suggest:
|
61
|
+
pulumi.log.warn(f"Key '{key}' not found in ConfigurationKmsKey. Access the value via the '{suggest}' property getter instead.")
|
62
|
+
|
63
|
+
def __getitem__(self, key: str) -> Any:
|
64
|
+
ConfigurationKmsKey.__key_warning(key)
|
65
|
+
return super().__getitem__(key)
|
66
|
+
|
67
|
+
def get(self, key: str, default = None) -> Any:
|
68
|
+
ConfigurationKmsKey.__key_warning(key)
|
69
|
+
return super().get(key, default)
|
70
|
+
|
71
|
+
def __init__(__self__, *,
|
72
|
+
id: Optional[builtins.str] = None,
|
73
|
+
kms_key_state: Optional[builtins.str] = None,
|
74
|
+
kms_vault_id: Optional[builtins.str] = None,
|
75
|
+
time_created: Optional[builtins.str] = None,
|
76
|
+
time_updated: Optional[builtins.str] = None):
|
77
|
+
"""
|
78
|
+
:param 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.
|
79
|
+
:param 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.
|
80
|
+
:param 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.
|
81
|
+
:param builtins.str time_created: (Updatable) The timestamp when encryption key was first enabled for this Hosted Environment. RFC3339 formatted.
|
82
|
+
:param builtins.str time_updated: (Updatable) The timestamp of the last update to the encryption key status. RFC3339 formatted.
|
83
|
+
|
84
|
+
|
85
|
+
** IMPORTANT **
|
86
|
+
The configuration cannot be deleted.
|
87
|
+
"""
|
88
|
+
if id is not None:
|
89
|
+
pulumi.set(__self__, "id", id)
|
90
|
+
if kms_key_state is not None:
|
91
|
+
pulumi.set(__self__, "kms_key_state", kms_key_state)
|
92
|
+
if kms_vault_id is not None:
|
93
|
+
pulumi.set(__self__, "kms_vault_id", kms_vault_id)
|
94
|
+
if time_created is not None:
|
95
|
+
pulumi.set(__self__, "time_created", time_created)
|
96
|
+
if time_updated is not None:
|
97
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
98
|
+
|
99
|
+
@property
|
100
|
+
@pulumi.getter
|
101
|
+
def id(self) -> Optional[builtins.str]:
|
102
|
+
"""
|
103
|
+
(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.
|
104
|
+
"""
|
105
|
+
return pulumi.get(self, "id")
|
106
|
+
|
107
|
+
@property
|
108
|
+
@pulumi.getter(name="kmsKeyState")
|
109
|
+
def kms_key_state(self) -> Optional[builtins.str]:
|
110
|
+
"""
|
111
|
+
(Updatable) The current state of the encryption key assigned to this Hosted Environment. Oracle-managed keys will always report an ACTIVE state.
|
112
|
+
"""
|
113
|
+
return pulumi.get(self, "kms_key_state")
|
114
|
+
|
115
|
+
@property
|
116
|
+
@pulumi.getter(name="kmsVaultId")
|
117
|
+
def kms_vault_id(self) -> Optional[builtins.str]:
|
118
|
+
"""
|
119
|
+
(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.
|
120
|
+
"""
|
121
|
+
return pulumi.get(self, "kms_vault_id")
|
122
|
+
|
123
|
+
@property
|
124
|
+
@pulumi.getter(name="timeCreated")
|
125
|
+
def time_created(self) -> Optional[builtins.str]:
|
126
|
+
"""
|
127
|
+
(Updatable) The timestamp when encryption key was first enabled for this Hosted Environment. RFC3339 formatted.
|
128
|
+
"""
|
129
|
+
return pulumi.get(self, "time_created")
|
130
|
+
|
131
|
+
@property
|
132
|
+
@pulumi.getter(name="timeUpdated")
|
133
|
+
def time_updated(self) -> Optional[builtins.str]:
|
134
|
+
"""
|
135
|
+
(Updatable) The timestamp of the last update to the encryption key status. RFC3339 formatted.
|
136
|
+
|
137
|
+
|
138
|
+
** IMPORTANT **
|
139
|
+
The configuration cannot be deleted.
|
140
|
+
"""
|
141
|
+
return pulumi.get(self, "time_updated")
|
142
|
+
|
143
|
+
|
44
144
|
@pulumi.output_type
|
45
145
|
class IndexKey(dict):
|
46
146
|
@staticmethod
|
@@ -495,7 +595,7 @@ class TableTableLimits(dict):
|
|
495
595
|
|
496
596
|
|
497
597
|
** IMPORTANT **
|
498
|
-
Any change to a property that
|
598
|
+
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.
|
499
599
|
:param 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.
|
500
600
|
"""
|
501
601
|
pulumi.set(__self__, "max_read_units", max_read_units)
|
@@ -528,7 +628,7 @@ class TableTableLimits(dict):
|
|
528
628
|
|
529
629
|
|
530
630
|
** IMPORTANT **
|
531
|
-
Any change to a property that
|
631
|
+
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.
|
532
632
|
"""
|
533
633
|
return pulumi.get(self, "max_write_units")
|
534
634
|
|
@@ -541,6 +641,68 @@ class TableTableLimits(dict):
|
|
541
641
|
return pulumi.get(self, "capacity_mode")
|
542
642
|
|
543
643
|
|
644
|
+
@pulumi.output_type
|
645
|
+
class GetConfigurationKmsKeyResult(dict):
|
646
|
+
def __init__(__self__, *,
|
647
|
+
id: builtins.str,
|
648
|
+
kms_key_state: builtins.str,
|
649
|
+
kms_vault_id: builtins.str,
|
650
|
+
time_created: builtins.str,
|
651
|
+
time_updated: builtins.str):
|
652
|
+
"""
|
653
|
+
:param builtins.str id: 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.
|
654
|
+
:param builtins.str kms_key_state: The current state of the encryption key assigned to this Hosted Environment. Oracle-managed keys will always report an ACTIVE state.
|
655
|
+
:param builtins.str kms_vault_id: 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.
|
656
|
+
:param builtins.str time_created: The timestamp when encryption key was first enabled for this Hosted Environment. RFC3339 formatted.
|
657
|
+
:param builtins.str time_updated: The timestamp of the last update to the encryption key status. RFC3339 formatted.
|
658
|
+
"""
|
659
|
+
pulumi.set(__self__, "id", id)
|
660
|
+
pulumi.set(__self__, "kms_key_state", kms_key_state)
|
661
|
+
pulumi.set(__self__, "kms_vault_id", kms_vault_id)
|
662
|
+
pulumi.set(__self__, "time_created", time_created)
|
663
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
664
|
+
|
665
|
+
@property
|
666
|
+
@pulumi.getter
|
667
|
+
def id(self) -> builtins.str:
|
668
|
+
"""
|
669
|
+
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.
|
670
|
+
"""
|
671
|
+
return pulumi.get(self, "id")
|
672
|
+
|
673
|
+
@property
|
674
|
+
@pulumi.getter(name="kmsKeyState")
|
675
|
+
def kms_key_state(self) -> builtins.str:
|
676
|
+
"""
|
677
|
+
The current state of the encryption key assigned to this Hosted Environment. Oracle-managed keys will always report an ACTIVE state.
|
678
|
+
"""
|
679
|
+
return pulumi.get(self, "kms_key_state")
|
680
|
+
|
681
|
+
@property
|
682
|
+
@pulumi.getter(name="kmsVaultId")
|
683
|
+
def kms_vault_id(self) -> builtins.str:
|
684
|
+
"""
|
685
|
+
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.
|
686
|
+
"""
|
687
|
+
return pulumi.get(self, "kms_vault_id")
|
688
|
+
|
689
|
+
@property
|
690
|
+
@pulumi.getter(name="timeCreated")
|
691
|
+
def time_created(self) -> builtins.str:
|
692
|
+
"""
|
693
|
+
The timestamp when encryption key was first enabled for this Hosted Environment. RFC3339 formatted.
|
694
|
+
"""
|
695
|
+
return pulumi.get(self, "time_created")
|
696
|
+
|
697
|
+
@property
|
698
|
+
@pulumi.getter(name="timeUpdated")
|
699
|
+
def time_updated(self) -> builtins.str:
|
700
|
+
"""
|
701
|
+
The timestamp of the last update to the encryption key status. RFC3339 formatted.
|
702
|
+
"""
|
703
|
+
return pulumi.get(self, "time_updated")
|
704
|
+
|
705
|
+
|
544
706
|
@pulumi.output_type
|
545
707
|
class GetIndexKeyResult(dict):
|
546
708
|
def __init__(__self__, *,
|
@@ -32,7 +32,7 @@ class TableReplicaInitArgs:
|
|
32
32
|
|
33
33
|
|
34
34
|
** IMPORTANT **
|
35
|
-
Any change to a property that
|
35
|
+
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.
|
36
36
|
:param pulumi.Input[builtins.str] compartment_id: The OCID of the table's compartment. Required if the tableNameOrId path parameter is a table name. Optional if tableNameOrId is an OCID. If tableNameOrId is an OCID, and compartmentId is supplied, the latter must match the identified table's compartmentId.
|
37
37
|
:param pulumi.Input[builtins.int] max_read_units: Maximum sustained read throughput limit for the new replica table. If not specified, the local table's read limit is used.
|
38
38
|
:param pulumi.Input[builtins.int] max_write_units: Maximum sustained write throughput limit for the new replica table. If not specified, the local table's write limit is used.
|
@@ -66,7 +66,7 @@ class TableReplicaInitArgs:
|
|
66
66
|
|
67
67
|
|
68
68
|
** IMPORTANT **
|
69
|
-
Any change to a property that
|
69
|
+
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.
|
70
70
|
"""
|
71
71
|
return pulumi.get(self, "table_name_or_id")
|
72
72
|
|
@@ -129,7 +129,7 @@ class _TableReplicaState:
|
|
129
129
|
|
130
130
|
|
131
131
|
** IMPORTANT **
|
132
|
-
Any change to a property that
|
132
|
+
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.
|
133
133
|
"""
|
134
134
|
if compartment_id is not None:
|
135
135
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -198,7 +198,7 @@ class _TableReplicaState:
|
|
198
198
|
|
199
199
|
|
200
200
|
** IMPORTANT **
|
201
|
-
Any change to a property that
|
201
|
+
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.
|
202
202
|
"""
|
203
203
|
return pulumi.get(self, "table_name_or_id")
|
204
204
|
|
@@ -222,7 +222,7 @@ class TableReplica(pulumi.CustomResource):
|
|
222
222
|
"""
|
223
223
|
This resource provides the Table Replica resource in Oracle Cloud Infrastructure NoSQL Database service.
|
224
224
|
|
225
|
-
Add a replica for this table
|
225
|
+
Add a replica for this table. The table's schema must be frozen prior to this operation.
|
226
226
|
|
227
227
|
## Example Usage
|
228
228
|
|
@@ -256,7 +256,7 @@ class TableReplica(pulumi.CustomResource):
|
|
256
256
|
|
257
257
|
|
258
258
|
** IMPORTANT **
|
259
|
-
Any change to a property that
|
259
|
+
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.
|
260
260
|
"""
|
261
261
|
...
|
262
262
|
@overload
|
@@ -267,7 +267,7 @@ class TableReplica(pulumi.CustomResource):
|
|
267
267
|
"""
|
268
268
|
This resource provides the Table Replica resource in Oracle Cloud Infrastructure NoSQL Database service.
|
269
269
|
|
270
|
-
Add a replica for this table
|
270
|
+
Add a replica for this table. The table's schema must be frozen prior to this operation.
|
271
271
|
|
272
272
|
## Example Usage
|
273
273
|
|
@@ -359,7 +359,7 @@ class TableReplica(pulumi.CustomResource):
|
|
359
359
|
|
360
360
|
|
361
361
|
** IMPORTANT **
|
362
|
-
Any change to a property that
|
362
|
+
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.
|
363
363
|
"""
|
364
364
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
365
365
|
|
@@ -412,7 +412,7 @@ class TableReplica(pulumi.CustomResource):
|
|
412
412
|
|
413
413
|
|
414
414
|
** IMPORTANT **
|
415
|
-
Any change to a property that
|
415
|
+
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.
|
416
416
|
"""
|
417
417
|
return pulumi.get(self, "table_name_or_id")
|
418
418
|
|
@@ -0,0 +1,56 @@
|
|
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
|
+
from .. import _utilities
|
7
|
+
import typing
|
8
|
+
# Export this package's modules as members:
|
9
|
+
from .apiaccesscontrol_privileged_api_control import *
|
10
|
+
from .apiaccesscontrol_privileged_api_request import *
|
11
|
+
from .dbmulticloud_multi_cloud_resource_discovery import *
|
12
|
+
from .dbmulticloud_oracle_db_azure_blob_container import *
|
13
|
+
from .dbmulticloud_oracle_db_azure_blob_mount import *
|
14
|
+
from .dbmulticloud_oracle_db_azure_connector import *
|
15
|
+
from .dbmulticloud_oracle_db_azure_vault import *
|
16
|
+
from .dbmulticloud_oracle_db_azure_vault_association import *
|
17
|
+
from .get_apiaccesscontrol_api_metadata import *
|
18
|
+
from .get_apiaccesscontrol_api_metadata_by_entity_types import *
|
19
|
+
from .get_apiaccesscontrol_api_metadatas import *
|
20
|
+
from .get_apiaccesscontrol_privileged_api_control import *
|
21
|
+
from .get_apiaccesscontrol_privileged_api_controls import *
|
22
|
+
from .get_apiaccesscontrol_privileged_api_request import *
|
23
|
+
from .get_apiaccesscontrol_privileged_api_requests import *
|
24
|
+
from .get_dbmulticloud_multi_cloud_resource_discoveries import *
|
25
|
+
from .get_dbmulticloud_multi_cloud_resource_discovery import *
|
26
|
+
from .get_dbmulticloud_oracle_db_azure_blob_container import *
|
27
|
+
from .get_dbmulticloud_oracle_db_azure_blob_containers import *
|
28
|
+
from .get_dbmulticloud_oracle_db_azure_blob_mount import *
|
29
|
+
from .get_dbmulticloud_oracle_db_azure_blob_mounts import *
|
30
|
+
from .get_dbmulticloud_oracle_db_azure_connector import *
|
31
|
+
from .get_dbmulticloud_oracle_db_azure_connectors import *
|
32
|
+
from .get_dbmulticloud_oracle_db_azure_key import *
|
33
|
+
from .get_dbmulticloud_oracle_db_azure_keys import *
|
34
|
+
from .get_dbmulticloud_oracle_db_azure_vault import *
|
35
|
+
from .get_dbmulticloud_oracle_db_azure_vault_association import *
|
36
|
+
from .get_dbmulticloud_oracle_db_azure_vault_associations import *
|
37
|
+
from .get_dbmulticloud_oracle_db_azure_vaults import *
|
38
|
+
from .get_wlms_managed_instance import *
|
39
|
+
from .get_wlms_managed_instance_scan_results import *
|
40
|
+
from .get_wlms_managed_instance_server import *
|
41
|
+
from .get_wlms_managed_instance_server_installed_patches import *
|
42
|
+
from .get_wlms_managed_instance_servers import *
|
43
|
+
from .get_wlms_managed_instances import *
|
44
|
+
from .get_wlms_wls_domain import *
|
45
|
+
from .get_wlms_wls_domain_agreement_records import *
|
46
|
+
from .get_wlms_wls_domain_applicable_patches import *
|
47
|
+
from .get_wlms_wls_domain_scan_results import *
|
48
|
+
from .get_wlms_wls_domain_server import *
|
49
|
+
from .get_wlms_wls_domain_server_backup import *
|
50
|
+
from .get_wlms_wls_domain_server_backup_content import *
|
51
|
+
from .get_wlms_wls_domain_server_backups import *
|
52
|
+
from .get_wlms_wls_domain_server_installed_patches import *
|
53
|
+
from .get_wlms_wls_domain_servers import *
|
54
|
+
from .get_wlms_wls_domains import *
|
55
|
+
from ._inputs import *
|
56
|
+
from . import outputs
|