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,695 @@
|
|
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__ = ['OciCacheUserArgs', 'OciCacheUser']
|
21
|
+
|
22
|
+
@pulumi.input_type
|
23
|
+
class OciCacheUserArgs:
|
24
|
+
def __init__(__self__, *,
|
25
|
+
acl_string: pulumi.Input[builtins.str],
|
26
|
+
authentication_mode: pulumi.Input['OciCacheUserAuthenticationModeArgs'],
|
27
|
+
compartment_id: pulumi.Input[builtins.str],
|
28
|
+
description: pulumi.Input[builtins.str],
|
29
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
30
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
31
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
32
|
+
status: Optional[pulumi.Input[builtins.str]] = None):
|
33
|
+
"""
|
34
|
+
The set of arguments for constructing a OciCacheUser resource.
|
35
|
+
:param pulumi.Input[builtins.str] acl_string: (Updatable) ACL string of Oracle Cloud Infrastructure cache user.
|
36
|
+
:param pulumi.Input['OciCacheUserAuthenticationModeArgs'] authentication_mode: (Updatable) These are the Authentication details of an Oracle Cloud Infrastructure cache user.
|
37
|
+
:param pulumi.Input[builtins.str] compartment_id: (Updatable) Oracle Cloud Infrastructure cache user compartment ID.
|
38
|
+
:param pulumi.Input[builtins.str] description: (Updatable) Description of Oracle Cloud Infrastructure cache user.
|
39
|
+
: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"}`
|
40
|
+
: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"}`
|
41
|
+
:param pulumi.Input[builtins.str] name: Oracle Cloud Infrastructure cache user name is required to connect to an Oracle Cloud Infrastructure cache cluster.
|
42
|
+
:param pulumi.Input[builtins.str] status: (Updatable) Oracle Cloud Infrastructure cache user status. ON enables and OFF disables the Oracle Cloud Infrastructure cache user to login to the associated clusters. Default value is ON.
|
43
|
+
|
44
|
+
|
45
|
+
** IMPORTANT **
|
46
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
47
|
+
"""
|
48
|
+
pulumi.set(__self__, "acl_string", acl_string)
|
49
|
+
pulumi.set(__self__, "authentication_mode", authentication_mode)
|
50
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
51
|
+
pulumi.set(__self__, "description", description)
|
52
|
+
if defined_tags is not None:
|
53
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
54
|
+
if freeform_tags is not None:
|
55
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
56
|
+
if name is not None:
|
57
|
+
pulumi.set(__self__, "name", name)
|
58
|
+
if status is not None:
|
59
|
+
pulumi.set(__self__, "status", status)
|
60
|
+
|
61
|
+
@property
|
62
|
+
@pulumi.getter(name="aclString")
|
63
|
+
def acl_string(self) -> pulumi.Input[builtins.str]:
|
64
|
+
"""
|
65
|
+
(Updatable) ACL string of Oracle Cloud Infrastructure cache user.
|
66
|
+
"""
|
67
|
+
return pulumi.get(self, "acl_string")
|
68
|
+
|
69
|
+
@acl_string.setter
|
70
|
+
def acl_string(self, value: pulumi.Input[builtins.str]):
|
71
|
+
pulumi.set(self, "acl_string", value)
|
72
|
+
|
73
|
+
@property
|
74
|
+
@pulumi.getter(name="authenticationMode")
|
75
|
+
def authentication_mode(self) -> pulumi.Input['OciCacheUserAuthenticationModeArgs']:
|
76
|
+
"""
|
77
|
+
(Updatable) These are the Authentication details of an Oracle Cloud Infrastructure cache user.
|
78
|
+
"""
|
79
|
+
return pulumi.get(self, "authentication_mode")
|
80
|
+
|
81
|
+
@authentication_mode.setter
|
82
|
+
def authentication_mode(self, value: pulumi.Input['OciCacheUserAuthenticationModeArgs']):
|
83
|
+
pulumi.set(self, "authentication_mode", value)
|
84
|
+
|
85
|
+
@property
|
86
|
+
@pulumi.getter(name="compartmentId")
|
87
|
+
def compartment_id(self) -> pulumi.Input[builtins.str]:
|
88
|
+
"""
|
89
|
+
(Updatable) Oracle Cloud Infrastructure cache user compartment ID.
|
90
|
+
"""
|
91
|
+
return pulumi.get(self, "compartment_id")
|
92
|
+
|
93
|
+
@compartment_id.setter
|
94
|
+
def compartment_id(self, value: pulumi.Input[builtins.str]):
|
95
|
+
pulumi.set(self, "compartment_id", value)
|
96
|
+
|
97
|
+
@property
|
98
|
+
@pulumi.getter
|
99
|
+
def description(self) -> pulumi.Input[builtins.str]:
|
100
|
+
"""
|
101
|
+
(Updatable) Description of Oracle Cloud Infrastructure cache user.
|
102
|
+
"""
|
103
|
+
return pulumi.get(self, "description")
|
104
|
+
|
105
|
+
@description.setter
|
106
|
+
def description(self, value: pulumi.Input[builtins.str]):
|
107
|
+
pulumi.set(self, "description", value)
|
108
|
+
|
109
|
+
@property
|
110
|
+
@pulumi.getter(name="definedTags")
|
111
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
112
|
+
"""
|
113
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
114
|
+
"""
|
115
|
+
return pulumi.get(self, "defined_tags")
|
116
|
+
|
117
|
+
@defined_tags.setter
|
118
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
119
|
+
pulumi.set(self, "defined_tags", value)
|
120
|
+
|
121
|
+
@property
|
122
|
+
@pulumi.getter(name="freeformTags")
|
123
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
124
|
+
"""
|
125
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
126
|
+
"""
|
127
|
+
return pulumi.get(self, "freeform_tags")
|
128
|
+
|
129
|
+
@freeform_tags.setter
|
130
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
131
|
+
pulumi.set(self, "freeform_tags", value)
|
132
|
+
|
133
|
+
@property
|
134
|
+
@pulumi.getter
|
135
|
+
def name(self) -> Optional[pulumi.Input[builtins.str]]:
|
136
|
+
"""
|
137
|
+
Oracle Cloud Infrastructure cache user name is required to connect to an Oracle Cloud Infrastructure cache cluster.
|
138
|
+
"""
|
139
|
+
return pulumi.get(self, "name")
|
140
|
+
|
141
|
+
@name.setter
|
142
|
+
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
143
|
+
pulumi.set(self, "name", value)
|
144
|
+
|
145
|
+
@property
|
146
|
+
@pulumi.getter
|
147
|
+
def status(self) -> Optional[pulumi.Input[builtins.str]]:
|
148
|
+
"""
|
149
|
+
(Updatable) Oracle Cloud Infrastructure cache user status. ON enables and OFF disables the Oracle Cloud Infrastructure cache user to login to the associated clusters. Default value is ON.
|
150
|
+
|
151
|
+
|
152
|
+
** IMPORTANT **
|
153
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
154
|
+
"""
|
155
|
+
return pulumi.get(self, "status")
|
156
|
+
|
157
|
+
@status.setter
|
158
|
+
def status(self, value: Optional[pulumi.Input[builtins.str]]):
|
159
|
+
pulumi.set(self, "status", value)
|
160
|
+
|
161
|
+
|
162
|
+
@pulumi.input_type
|
163
|
+
class _OciCacheUserState:
|
164
|
+
def __init__(__self__, *,
|
165
|
+
acl_string: Optional[pulumi.Input[builtins.str]] = None,
|
166
|
+
authentication_mode: Optional[pulumi.Input['OciCacheUserAuthenticationModeArgs']] = None,
|
167
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
168
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
169
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
170
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
171
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
172
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
173
|
+
status: Optional[pulumi.Input[builtins.str]] = None,
|
174
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
175
|
+
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
176
|
+
time_updated: Optional[pulumi.Input[builtins.str]] = None):
|
177
|
+
"""
|
178
|
+
Input properties used for looking up and filtering OciCacheUser resources.
|
179
|
+
:param pulumi.Input[builtins.str] acl_string: (Updatable) ACL string of Oracle Cloud Infrastructure cache user.
|
180
|
+
:param pulumi.Input['OciCacheUserAuthenticationModeArgs'] authentication_mode: (Updatable) These are the Authentication details of an Oracle Cloud Infrastructure cache user.
|
181
|
+
:param pulumi.Input[builtins.str] compartment_id: (Updatable) Oracle Cloud Infrastructure cache user compartment ID.
|
182
|
+
: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"}`
|
183
|
+
:param pulumi.Input[builtins.str] description: (Updatable) Description of Oracle Cloud Infrastructure cache user.
|
184
|
+
: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"}`
|
185
|
+
:param pulumi.Input[builtins.str] name: Oracle Cloud Infrastructure cache user name is required to connect to an Oracle Cloud Infrastructure cache cluster.
|
186
|
+
:param pulumi.Input[builtins.str] state: Oracle Cloud Infrastructure Cache user lifecycle state.
|
187
|
+
:param pulumi.Input[builtins.str] status: (Updatable) Oracle Cloud Infrastructure cache user status. ON enables and OFF disables the Oracle Cloud Infrastructure cache user to login to the associated clusters. Default value is ON.
|
188
|
+
|
189
|
+
|
190
|
+
** IMPORTANT **
|
191
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
192
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
193
|
+
:param pulumi.Input[builtins.str] time_created: The date and time, when the Oracle Cloud Infrastructure cache user was created.
|
194
|
+
:param pulumi.Input[builtins.str] time_updated: The date and time, when the Oracle Cloud Infrastructure cache user was updated.
|
195
|
+
"""
|
196
|
+
if acl_string is not None:
|
197
|
+
pulumi.set(__self__, "acl_string", acl_string)
|
198
|
+
if authentication_mode is not None:
|
199
|
+
pulumi.set(__self__, "authentication_mode", authentication_mode)
|
200
|
+
if compartment_id is not None:
|
201
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
202
|
+
if defined_tags is not None:
|
203
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
204
|
+
if description is not None:
|
205
|
+
pulumi.set(__self__, "description", description)
|
206
|
+
if freeform_tags is not None:
|
207
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
208
|
+
if name is not None:
|
209
|
+
pulumi.set(__self__, "name", name)
|
210
|
+
if state is not None:
|
211
|
+
pulumi.set(__self__, "state", state)
|
212
|
+
if status is not None:
|
213
|
+
pulumi.set(__self__, "status", status)
|
214
|
+
if system_tags is not None:
|
215
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
216
|
+
if time_created is not None:
|
217
|
+
pulumi.set(__self__, "time_created", time_created)
|
218
|
+
if time_updated is not None:
|
219
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
220
|
+
|
221
|
+
@property
|
222
|
+
@pulumi.getter(name="aclString")
|
223
|
+
def acl_string(self) -> Optional[pulumi.Input[builtins.str]]:
|
224
|
+
"""
|
225
|
+
(Updatable) ACL string of Oracle Cloud Infrastructure cache user.
|
226
|
+
"""
|
227
|
+
return pulumi.get(self, "acl_string")
|
228
|
+
|
229
|
+
@acl_string.setter
|
230
|
+
def acl_string(self, value: Optional[pulumi.Input[builtins.str]]):
|
231
|
+
pulumi.set(self, "acl_string", value)
|
232
|
+
|
233
|
+
@property
|
234
|
+
@pulumi.getter(name="authenticationMode")
|
235
|
+
def authentication_mode(self) -> Optional[pulumi.Input['OciCacheUserAuthenticationModeArgs']]:
|
236
|
+
"""
|
237
|
+
(Updatable) These are the Authentication details of an Oracle Cloud Infrastructure cache user.
|
238
|
+
"""
|
239
|
+
return pulumi.get(self, "authentication_mode")
|
240
|
+
|
241
|
+
@authentication_mode.setter
|
242
|
+
def authentication_mode(self, value: Optional[pulumi.Input['OciCacheUserAuthenticationModeArgs']]):
|
243
|
+
pulumi.set(self, "authentication_mode", value)
|
244
|
+
|
245
|
+
@property
|
246
|
+
@pulumi.getter(name="compartmentId")
|
247
|
+
def compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
248
|
+
"""
|
249
|
+
(Updatable) Oracle Cloud Infrastructure cache user compartment ID.
|
250
|
+
"""
|
251
|
+
return pulumi.get(self, "compartment_id")
|
252
|
+
|
253
|
+
@compartment_id.setter
|
254
|
+
def compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
255
|
+
pulumi.set(self, "compartment_id", value)
|
256
|
+
|
257
|
+
@property
|
258
|
+
@pulumi.getter(name="definedTags")
|
259
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
260
|
+
"""
|
261
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
262
|
+
"""
|
263
|
+
return pulumi.get(self, "defined_tags")
|
264
|
+
|
265
|
+
@defined_tags.setter
|
266
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
267
|
+
pulumi.set(self, "defined_tags", value)
|
268
|
+
|
269
|
+
@property
|
270
|
+
@pulumi.getter
|
271
|
+
def description(self) -> Optional[pulumi.Input[builtins.str]]:
|
272
|
+
"""
|
273
|
+
(Updatable) Description of Oracle Cloud Infrastructure cache user.
|
274
|
+
"""
|
275
|
+
return pulumi.get(self, "description")
|
276
|
+
|
277
|
+
@description.setter
|
278
|
+
def description(self, value: Optional[pulumi.Input[builtins.str]]):
|
279
|
+
pulumi.set(self, "description", value)
|
280
|
+
|
281
|
+
@property
|
282
|
+
@pulumi.getter(name="freeformTags")
|
283
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
284
|
+
"""
|
285
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
286
|
+
"""
|
287
|
+
return pulumi.get(self, "freeform_tags")
|
288
|
+
|
289
|
+
@freeform_tags.setter
|
290
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
291
|
+
pulumi.set(self, "freeform_tags", value)
|
292
|
+
|
293
|
+
@property
|
294
|
+
@pulumi.getter
|
295
|
+
def name(self) -> Optional[pulumi.Input[builtins.str]]:
|
296
|
+
"""
|
297
|
+
Oracle Cloud Infrastructure cache user name is required to connect to an Oracle Cloud Infrastructure cache cluster.
|
298
|
+
"""
|
299
|
+
return pulumi.get(self, "name")
|
300
|
+
|
301
|
+
@name.setter
|
302
|
+
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
303
|
+
pulumi.set(self, "name", value)
|
304
|
+
|
305
|
+
@property
|
306
|
+
@pulumi.getter
|
307
|
+
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
308
|
+
"""
|
309
|
+
Oracle Cloud Infrastructure Cache user lifecycle state.
|
310
|
+
"""
|
311
|
+
return pulumi.get(self, "state")
|
312
|
+
|
313
|
+
@state.setter
|
314
|
+
def state(self, value: Optional[pulumi.Input[builtins.str]]):
|
315
|
+
pulumi.set(self, "state", value)
|
316
|
+
|
317
|
+
@property
|
318
|
+
@pulumi.getter
|
319
|
+
def status(self) -> Optional[pulumi.Input[builtins.str]]:
|
320
|
+
"""
|
321
|
+
(Updatable) Oracle Cloud Infrastructure cache user status. ON enables and OFF disables the Oracle Cloud Infrastructure cache user to login to the associated clusters. Default value is ON.
|
322
|
+
|
323
|
+
|
324
|
+
** IMPORTANT **
|
325
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
326
|
+
"""
|
327
|
+
return pulumi.get(self, "status")
|
328
|
+
|
329
|
+
@status.setter
|
330
|
+
def status(self, value: Optional[pulumi.Input[builtins.str]]):
|
331
|
+
pulumi.set(self, "status", value)
|
332
|
+
|
333
|
+
@property
|
334
|
+
@pulumi.getter(name="systemTags")
|
335
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
336
|
+
"""
|
337
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
338
|
+
"""
|
339
|
+
return pulumi.get(self, "system_tags")
|
340
|
+
|
341
|
+
@system_tags.setter
|
342
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
343
|
+
pulumi.set(self, "system_tags", value)
|
344
|
+
|
345
|
+
@property
|
346
|
+
@pulumi.getter(name="timeCreated")
|
347
|
+
def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
|
348
|
+
"""
|
349
|
+
The date and time, when the Oracle Cloud Infrastructure cache user was created.
|
350
|
+
"""
|
351
|
+
return pulumi.get(self, "time_created")
|
352
|
+
|
353
|
+
@time_created.setter
|
354
|
+
def time_created(self, value: Optional[pulumi.Input[builtins.str]]):
|
355
|
+
pulumi.set(self, "time_created", value)
|
356
|
+
|
357
|
+
@property
|
358
|
+
@pulumi.getter(name="timeUpdated")
|
359
|
+
def time_updated(self) -> Optional[pulumi.Input[builtins.str]]:
|
360
|
+
"""
|
361
|
+
The date and time, when the Oracle Cloud Infrastructure cache user was updated.
|
362
|
+
"""
|
363
|
+
return pulumi.get(self, "time_updated")
|
364
|
+
|
365
|
+
@time_updated.setter
|
366
|
+
def time_updated(self, value: Optional[pulumi.Input[builtins.str]]):
|
367
|
+
pulumi.set(self, "time_updated", value)
|
368
|
+
|
369
|
+
|
370
|
+
@pulumi.type_token("oci:Redis/ociCacheUser:OciCacheUser")
|
371
|
+
class OciCacheUser(pulumi.CustomResource):
|
372
|
+
@overload
|
373
|
+
def __init__(__self__,
|
374
|
+
resource_name: str,
|
375
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
376
|
+
acl_string: Optional[pulumi.Input[builtins.str]] = None,
|
377
|
+
authentication_mode: Optional[pulumi.Input[Union['OciCacheUserAuthenticationModeArgs', 'OciCacheUserAuthenticationModeArgsDict']]] = None,
|
378
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
379
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
380
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
381
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
382
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
383
|
+
status: Optional[pulumi.Input[builtins.str]] = None,
|
384
|
+
__props__=None):
|
385
|
+
"""
|
386
|
+
This resource provides the Oci Cache User resource in Oracle Cloud Infrastructure Redis service.
|
387
|
+
|
388
|
+
Creates a new Oracle Cloud Infrastructure Cache user. Oracle Cloud Infrastructure Cache user is required to authenticate to Oracle Cloud Infrastructure Cache cluster.
|
389
|
+
|
390
|
+
## Example Usage
|
391
|
+
|
392
|
+
```python
|
393
|
+
import pulumi
|
394
|
+
import pulumi_oci as oci
|
395
|
+
|
396
|
+
test_oci_cache_user = oci.redis.OciCacheUser("test_oci_cache_user",
|
397
|
+
acl_string=oci_cache_user_acl_string,
|
398
|
+
authentication_mode={
|
399
|
+
"authentication_type": oci_cache_user_authentication_mode_authentication_type,
|
400
|
+
"hashed_passwords": oci_cache_user_authentication_mode_hashed_passwords,
|
401
|
+
},
|
402
|
+
compartment_id=compartment_id,
|
403
|
+
description=oci_cache_user_description,
|
404
|
+
name=oci_cache_user_name,
|
405
|
+
defined_tags={
|
406
|
+
"foo-namespace.bar-key": "value",
|
407
|
+
},
|
408
|
+
freeform_tags={
|
409
|
+
"bar-key": "value",
|
410
|
+
},
|
411
|
+
status=oci_cache_user_status)
|
412
|
+
```
|
413
|
+
|
414
|
+
## Import
|
415
|
+
|
416
|
+
OciCacheUsers can be imported using the `id`, e.g.
|
417
|
+
|
418
|
+
```sh
|
419
|
+
$ pulumi import oci:Redis/ociCacheUser:OciCacheUser test_oci_cache_user "id"
|
420
|
+
```
|
421
|
+
|
422
|
+
:param str resource_name: The name of the resource.
|
423
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
424
|
+
:param pulumi.Input[builtins.str] acl_string: (Updatable) ACL string of Oracle Cloud Infrastructure cache user.
|
425
|
+
:param pulumi.Input[Union['OciCacheUserAuthenticationModeArgs', 'OciCacheUserAuthenticationModeArgsDict']] authentication_mode: (Updatable) These are the Authentication details of an Oracle Cloud Infrastructure cache user.
|
426
|
+
:param pulumi.Input[builtins.str] compartment_id: (Updatable) Oracle Cloud Infrastructure cache user compartment ID.
|
427
|
+
: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"}`
|
428
|
+
:param pulumi.Input[builtins.str] description: (Updatable) Description of Oracle Cloud Infrastructure cache user.
|
429
|
+
: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"}`
|
430
|
+
:param pulumi.Input[builtins.str] name: Oracle Cloud Infrastructure cache user name is required to connect to an Oracle Cloud Infrastructure cache cluster.
|
431
|
+
:param pulumi.Input[builtins.str] status: (Updatable) Oracle Cloud Infrastructure cache user status. ON enables and OFF disables the Oracle Cloud Infrastructure cache user to login to the associated clusters. Default value is ON.
|
432
|
+
|
433
|
+
|
434
|
+
** IMPORTANT **
|
435
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
436
|
+
"""
|
437
|
+
...
|
438
|
+
@overload
|
439
|
+
def __init__(__self__,
|
440
|
+
resource_name: str,
|
441
|
+
args: OciCacheUserArgs,
|
442
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
443
|
+
"""
|
444
|
+
This resource provides the Oci Cache User resource in Oracle Cloud Infrastructure Redis service.
|
445
|
+
|
446
|
+
Creates a new Oracle Cloud Infrastructure Cache user. Oracle Cloud Infrastructure Cache user is required to authenticate to Oracle Cloud Infrastructure Cache cluster.
|
447
|
+
|
448
|
+
## Example Usage
|
449
|
+
|
450
|
+
```python
|
451
|
+
import pulumi
|
452
|
+
import pulumi_oci as oci
|
453
|
+
|
454
|
+
test_oci_cache_user = oci.redis.OciCacheUser("test_oci_cache_user",
|
455
|
+
acl_string=oci_cache_user_acl_string,
|
456
|
+
authentication_mode={
|
457
|
+
"authentication_type": oci_cache_user_authentication_mode_authentication_type,
|
458
|
+
"hashed_passwords": oci_cache_user_authentication_mode_hashed_passwords,
|
459
|
+
},
|
460
|
+
compartment_id=compartment_id,
|
461
|
+
description=oci_cache_user_description,
|
462
|
+
name=oci_cache_user_name,
|
463
|
+
defined_tags={
|
464
|
+
"foo-namespace.bar-key": "value",
|
465
|
+
},
|
466
|
+
freeform_tags={
|
467
|
+
"bar-key": "value",
|
468
|
+
},
|
469
|
+
status=oci_cache_user_status)
|
470
|
+
```
|
471
|
+
|
472
|
+
## Import
|
473
|
+
|
474
|
+
OciCacheUsers can be imported using the `id`, e.g.
|
475
|
+
|
476
|
+
```sh
|
477
|
+
$ pulumi import oci:Redis/ociCacheUser:OciCacheUser test_oci_cache_user "id"
|
478
|
+
```
|
479
|
+
|
480
|
+
:param str resource_name: The name of the resource.
|
481
|
+
:param OciCacheUserArgs args: The arguments to use to populate this resource's properties.
|
482
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
483
|
+
"""
|
484
|
+
...
|
485
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
486
|
+
resource_args, opts = _utilities.get_resource_args_opts(OciCacheUserArgs, pulumi.ResourceOptions, *args, **kwargs)
|
487
|
+
if resource_args is not None:
|
488
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
489
|
+
else:
|
490
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
491
|
+
|
492
|
+
def _internal_init(__self__,
|
493
|
+
resource_name: str,
|
494
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
495
|
+
acl_string: Optional[pulumi.Input[builtins.str]] = None,
|
496
|
+
authentication_mode: Optional[pulumi.Input[Union['OciCacheUserAuthenticationModeArgs', 'OciCacheUserAuthenticationModeArgsDict']]] = None,
|
497
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
498
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
499
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
500
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
501
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
502
|
+
status: Optional[pulumi.Input[builtins.str]] = None,
|
503
|
+
__props__=None):
|
504
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
505
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
506
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
507
|
+
if opts.id is None:
|
508
|
+
if __props__ is not None:
|
509
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
510
|
+
__props__ = OciCacheUserArgs.__new__(OciCacheUserArgs)
|
511
|
+
|
512
|
+
if acl_string is None and not opts.urn:
|
513
|
+
raise TypeError("Missing required property 'acl_string'")
|
514
|
+
__props__.__dict__["acl_string"] = acl_string
|
515
|
+
if authentication_mode is None and not opts.urn:
|
516
|
+
raise TypeError("Missing required property 'authentication_mode'")
|
517
|
+
__props__.__dict__["authentication_mode"] = authentication_mode
|
518
|
+
if compartment_id is None and not opts.urn:
|
519
|
+
raise TypeError("Missing required property 'compartment_id'")
|
520
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
521
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
522
|
+
if description is None and not opts.urn:
|
523
|
+
raise TypeError("Missing required property 'description'")
|
524
|
+
__props__.__dict__["description"] = description
|
525
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
526
|
+
__props__.__dict__["name"] = name
|
527
|
+
__props__.__dict__["status"] = status
|
528
|
+
__props__.__dict__["state"] = None
|
529
|
+
__props__.__dict__["system_tags"] = None
|
530
|
+
__props__.__dict__["time_created"] = None
|
531
|
+
__props__.__dict__["time_updated"] = None
|
532
|
+
super(OciCacheUser, __self__).__init__(
|
533
|
+
'oci:Redis/ociCacheUser:OciCacheUser',
|
534
|
+
resource_name,
|
535
|
+
__props__,
|
536
|
+
opts)
|
537
|
+
|
538
|
+
@staticmethod
|
539
|
+
def get(resource_name: str,
|
540
|
+
id: pulumi.Input[str],
|
541
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
542
|
+
acl_string: Optional[pulumi.Input[builtins.str]] = None,
|
543
|
+
authentication_mode: Optional[pulumi.Input[Union['OciCacheUserAuthenticationModeArgs', 'OciCacheUserAuthenticationModeArgsDict']]] = None,
|
544
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
545
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
546
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
547
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
548
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
549
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
550
|
+
status: Optional[pulumi.Input[builtins.str]] = None,
|
551
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
552
|
+
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
553
|
+
time_updated: Optional[pulumi.Input[builtins.str]] = None) -> 'OciCacheUser':
|
554
|
+
"""
|
555
|
+
Get an existing OciCacheUser resource's state with the given name, id, and optional extra
|
556
|
+
properties used to qualify the lookup.
|
557
|
+
|
558
|
+
:param str resource_name: The unique name of the resulting resource.
|
559
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
560
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
561
|
+
:param pulumi.Input[builtins.str] acl_string: (Updatable) ACL string of Oracle Cloud Infrastructure cache user.
|
562
|
+
:param pulumi.Input[Union['OciCacheUserAuthenticationModeArgs', 'OciCacheUserAuthenticationModeArgsDict']] authentication_mode: (Updatable) These are the Authentication details of an Oracle Cloud Infrastructure cache user.
|
563
|
+
:param pulumi.Input[builtins.str] compartment_id: (Updatable) Oracle Cloud Infrastructure cache user compartment ID.
|
564
|
+
: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"}`
|
565
|
+
:param pulumi.Input[builtins.str] description: (Updatable) Description of Oracle Cloud Infrastructure cache user.
|
566
|
+
: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"}`
|
567
|
+
:param pulumi.Input[builtins.str] name: Oracle Cloud Infrastructure cache user name is required to connect to an Oracle Cloud Infrastructure cache cluster.
|
568
|
+
:param pulumi.Input[builtins.str] state: Oracle Cloud Infrastructure Cache user lifecycle state.
|
569
|
+
:param pulumi.Input[builtins.str] status: (Updatable) Oracle Cloud Infrastructure cache user status. ON enables and OFF disables the Oracle Cloud Infrastructure cache user to login to the associated clusters. Default value is ON.
|
570
|
+
|
571
|
+
|
572
|
+
** IMPORTANT **
|
573
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
574
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
575
|
+
:param pulumi.Input[builtins.str] time_created: The date and time, when the Oracle Cloud Infrastructure cache user was created.
|
576
|
+
:param pulumi.Input[builtins.str] time_updated: The date and time, when the Oracle Cloud Infrastructure cache user was updated.
|
577
|
+
"""
|
578
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
579
|
+
|
580
|
+
__props__ = _OciCacheUserState.__new__(_OciCacheUserState)
|
581
|
+
|
582
|
+
__props__.__dict__["acl_string"] = acl_string
|
583
|
+
__props__.__dict__["authentication_mode"] = authentication_mode
|
584
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
585
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
586
|
+
__props__.__dict__["description"] = description
|
587
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
588
|
+
__props__.__dict__["name"] = name
|
589
|
+
__props__.__dict__["state"] = state
|
590
|
+
__props__.__dict__["status"] = status
|
591
|
+
__props__.__dict__["system_tags"] = system_tags
|
592
|
+
__props__.__dict__["time_created"] = time_created
|
593
|
+
__props__.__dict__["time_updated"] = time_updated
|
594
|
+
return OciCacheUser(resource_name, opts=opts, __props__=__props__)
|
595
|
+
|
596
|
+
@property
|
597
|
+
@pulumi.getter(name="aclString")
|
598
|
+
def acl_string(self) -> pulumi.Output[builtins.str]:
|
599
|
+
"""
|
600
|
+
(Updatable) ACL string of Oracle Cloud Infrastructure cache user.
|
601
|
+
"""
|
602
|
+
return pulumi.get(self, "acl_string")
|
603
|
+
|
604
|
+
@property
|
605
|
+
@pulumi.getter(name="authenticationMode")
|
606
|
+
def authentication_mode(self) -> pulumi.Output['outputs.OciCacheUserAuthenticationMode']:
|
607
|
+
"""
|
608
|
+
(Updatable) These are the Authentication details of an Oracle Cloud Infrastructure cache user.
|
609
|
+
"""
|
610
|
+
return pulumi.get(self, "authentication_mode")
|
611
|
+
|
612
|
+
@property
|
613
|
+
@pulumi.getter(name="compartmentId")
|
614
|
+
def compartment_id(self) -> pulumi.Output[builtins.str]:
|
615
|
+
"""
|
616
|
+
(Updatable) Oracle Cloud Infrastructure cache user compartment ID.
|
617
|
+
"""
|
618
|
+
return pulumi.get(self, "compartment_id")
|
619
|
+
|
620
|
+
@property
|
621
|
+
@pulumi.getter(name="definedTags")
|
622
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
623
|
+
"""
|
624
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
625
|
+
"""
|
626
|
+
return pulumi.get(self, "defined_tags")
|
627
|
+
|
628
|
+
@property
|
629
|
+
@pulumi.getter
|
630
|
+
def description(self) -> pulumi.Output[builtins.str]:
|
631
|
+
"""
|
632
|
+
(Updatable) Description of Oracle Cloud Infrastructure cache user.
|
633
|
+
"""
|
634
|
+
return pulumi.get(self, "description")
|
635
|
+
|
636
|
+
@property
|
637
|
+
@pulumi.getter(name="freeformTags")
|
638
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
639
|
+
"""
|
640
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
641
|
+
"""
|
642
|
+
return pulumi.get(self, "freeform_tags")
|
643
|
+
|
644
|
+
@property
|
645
|
+
@pulumi.getter
|
646
|
+
def name(self) -> pulumi.Output[builtins.str]:
|
647
|
+
"""
|
648
|
+
Oracle Cloud Infrastructure cache user name is required to connect to an Oracle Cloud Infrastructure cache cluster.
|
649
|
+
"""
|
650
|
+
return pulumi.get(self, "name")
|
651
|
+
|
652
|
+
@property
|
653
|
+
@pulumi.getter
|
654
|
+
def state(self) -> pulumi.Output[builtins.str]:
|
655
|
+
"""
|
656
|
+
Oracle Cloud Infrastructure Cache user lifecycle state.
|
657
|
+
"""
|
658
|
+
return pulumi.get(self, "state")
|
659
|
+
|
660
|
+
@property
|
661
|
+
@pulumi.getter
|
662
|
+
def status(self) -> pulumi.Output[builtins.str]:
|
663
|
+
"""
|
664
|
+
(Updatable) Oracle Cloud Infrastructure cache user status. ON enables and OFF disables the Oracle Cloud Infrastructure cache user to login to the associated clusters. Default value is ON.
|
665
|
+
|
666
|
+
|
667
|
+
** IMPORTANT **
|
668
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
669
|
+
"""
|
670
|
+
return pulumi.get(self, "status")
|
671
|
+
|
672
|
+
@property
|
673
|
+
@pulumi.getter(name="systemTags")
|
674
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
675
|
+
"""
|
676
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
677
|
+
"""
|
678
|
+
return pulumi.get(self, "system_tags")
|
679
|
+
|
680
|
+
@property
|
681
|
+
@pulumi.getter(name="timeCreated")
|
682
|
+
def time_created(self) -> pulumi.Output[builtins.str]:
|
683
|
+
"""
|
684
|
+
The date and time, when the Oracle Cloud Infrastructure cache user was created.
|
685
|
+
"""
|
686
|
+
return pulumi.get(self, "time_created")
|
687
|
+
|
688
|
+
@property
|
689
|
+
@pulumi.getter(name="timeUpdated")
|
690
|
+
def time_updated(self) -> pulumi.Output[builtins.str]:
|
691
|
+
"""
|
692
|
+
The date and time, when the Oracle Cloud Infrastructure cache user was updated.
|
693
|
+
"""
|
694
|
+
return pulumi.get(self, "time_updated")
|
695
|
+
|