pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.1.0a1751948424__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 +299 -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/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/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/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.1.0a1751948424.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
pulumi_oci/pulumi-plugin.json
CHANGED
pulumi_oci/redis/__init__.py
CHANGED
@@ -6,9 +6,17 @@ import builtins
|
|
6
6
|
from .. import _utilities
|
7
7
|
import typing
|
8
8
|
# Export this package's modules as members:
|
9
|
+
from .get_oci_cache_user import *
|
10
|
+
from .get_oci_cache_users import *
|
9
11
|
from .get_redis_cluster import *
|
10
12
|
from .get_redis_cluster_nodes import *
|
11
13
|
from .get_redis_clusters import *
|
14
|
+
from .oci_cache_user import *
|
15
|
+
from .oci_cache_user_get_redis_cluster import *
|
12
16
|
from .redis_cluster import *
|
17
|
+
from .redis_cluster_attach_oci_cache_user import *
|
18
|
+
from .redis_cluster_create_identity_token import *
|
19
|
+
from .redis_cluster_detach_oci_cache_user import *
|
20
|
+
from .redis_cluster_get_oci_cache_user import *
|
13
21
|
from ._inputs import *
|
14
22
|
from . import outputs
|
pulumi_oci/redis/_inputs.py
CHANGED
@@ -16,10 +16,18 @@ else:
|
|
16
16
|
from .. import _utilities
|
17
17
|
|
18
18
|
__all__ = [
|
19
|
+
'OciCacheUserAuthenticationModeArgs',
|
20
|
+
'OciCacheUserAuthenticationModeArgsDict',
|
21
|
+
'OciCacheUserGetRedisClusterOciCacheClusterArgs',
|
22
|
+
'OciCacheUserGetRedisClusterOciCacheClusterArgsDict',
|
23
|
+
'RedisClusterGetOciCacheUserOciCacheUserArgs',
|
24
|
+
'RedisClusterGetOciCacheUserOciCacheUserArgsDict',
|
19
25
|
'RedisClusterNodeCollectionArgs',
|
20
26
|
'RedisClusterNodeCollectionArgsDict',
|
21
27
|
'RedisClusterNodeCollectionItemArgs',
|
22
28
|
'RedisClusterNodeCollectionItemArgsDict',
|
29
|
+
'GetOciCacheUsersFilterArgs',
|
30
|
+
'GetOciCacheUsersFilterArgsDict',
|
23
31
|
'GetRedisClusterNodesFilterArgs',
|
24
32
|
'GetRedisClusterNodesFilterArgsDict',
|
25
33
|
'GetRedisClustersFilterArgs',
|
@@ -28,6 +36,121 @@ __all__ = [
|
|
28
36
|
|
29
37
|
MYPY = False
|
30
38
|
|
39
|
+
if not MYPY:
|
40
|
+
class OciCacheUserAuthenticationModeArgsDict(TypedDict):
|
41
|
+
authentication_type: pulumi.Input[builtins.str]
|
42
|
+
"""
|
43
|
+
(Updatable) This is Authentication Type of Oracle Cloud Infrastructure cache user
|
44
|
+
"""
|
45
|
+
hashed_passwords: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
|
46
|
+
"""
|
47
|
+
(Updatable) SHA-256 hashed passwords for Oracle Cloud Infrastructure Cache user,required if authenticationType is set to PASSWORD.
|
48
|
+
"""
|
49
|
+
elif False:
|
50
|
+
OciCacheUserAuthenticationModeArgsDict: TypeAlias = Mapping[str, Any]
|
51
|
+
|
52
|
+
@pulumi.input_type
|
53
|
+
class OciCacheUserAuthenticationModeArgs:
|
54
|
+
def __init__(__self__, *,
|
55
|
+
authentication_type: pulumi.Input[builtins.str],
|
56
|
+
hashed_passwords: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None):
|
57
|
+
"""
|
58
|
+
:param pulumi.Input[builtins.str] authentication_type: (Updatable) This is Authentication Type of Oracle Cloud Infrastructure cache user
|
59
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] hashed_passwords: (Updatable) SHA-256 hashed passwords for Oracle Cloud Infrastructure Cache user,required if authenticationType is set to PASSWORD.
|
60
|
+
"""
|
61
|
+
pulumi.set(__self__, "authentication_type", authentication_type)
|
62
|
+
if hashed_passwords is not None:
|
63
|
+
pulumi.set(__self__, "hashed_passwords", hashed_passwords)
|
64
|
+
|
65
|
+
@property
|
66
|
+
@pulumi.getter(name="authenticationType")
|
67
|
+
def authentication_type(self) -> pulumi.Input[builtins.str]:
|
68
|
+
"""
|
69
|
+
(Updatable) This is Authentication Type of Oracle Cloud Infrastructure cache user
|
70
|
+
"""
|
71
|
+
return pulumi.get(self, "authentication_type")
|
72
|
+
|
73
|
+
@authentication_type.setter
|
74
|
+
def authentication_type(self, value: pulumi.Input[builtins.str]):
|
75
|
+
pulumi.set(self, "authentication_type", value)
|
76
|
+
|
77
|
+
@property
|
78
|
+
@pulumi.getter(name="hashedPasswords")
|
79
|
+
def hashed_passwords(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
80
|
+
"""
|
81
|
+
(Updatable) SHA-256 hashed passwords for Oracle Cloud Infrastructure Cache user,required if authenticationType is set to PASSWORD.
|
82
|
+
"""
|
83
|
+
return pulumi.get(self, "hashed_passwords")
|
84
|
+
|
85
|
+
@hashed_passwords.setter
|
86
|
+
def hashed_passwords(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
87
|
+
pulumi.set(self, "hashed_passwords", value)
|
88
|
+
|
89
|
+
|
90
|
+
if not MYPY:
|
91
|
+
class OciCacheUserGetRedisClusterOciCacheClusterArgsDict(TypedDict):
|
92
|
+
oci_cache_cluster_id: NotRequired[pulumi.Input[builtins.str]]
|
93
|
+
"""
|
94
|
+
OCID of the OciCacheCluster
|
95
|
+
"""
|
96
|
+
elif False:
|
97
|
+
OciCacheUserGetRedisClusterOciCacheClusterArgsDict: TypeAlias = Mapping[str, Any]
|
98
|
+
|
99
|
+
@pulumi.input_type
|
100
|
+
class OciCacheUserGetRedisClusterOciCacheClusterArgs:
|
101
|
+
def __init__(__self__, *,
|
102
|
+
oci_cache_cluster_id: Optional[pulumi.Input[builtins.str]] = None):
|
103
|
+
"""
|
104
|
+
:param pulumi.Input[builtins.str] oci_cache_cluster_id: OCID of the OciCacheCluster
|
105
|
+
"""
|
106
|
+
if oci_cache_cluster_id is not None:
|
107
|
+
pulumi.set(__self__, "oci_cache_cluster_id", oci_cache_cluster_id)
|
108
|
+
|
109
|
+
@property
|
110
|
+
@pulumi.getter(name="ociCacheClusterId")
|
111
|
+
def oci_cache_cluster_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
112
|
+
"""
|
113
|
+
OCID of the OciCacheCluster
|
114
|
+
"""
|
115
|
+
return pulumi.get(self, "oci_cache_cluster_id")
|
116
|
+
|
117
|
+
@oci_cache_cluster_id.setter
|
118
|
+
def oci_cache_cluster_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
119
|
+
pulumi.set(self, "oci_cache_cluster_id", value)
|
120
|
+
|
121
|
+
|
122
|
+
if not MYPY:
|
123
|
+
class RedisClusterGetOciCacheUserOciCacheUserArgsDict(TypedDict):
|
124
|
+
oci_cache_user_id: NotRequired[pulumi.Input[builtins.str]]
|
125
|
+
"""
|
126
|
+
OCID of the OciCacheUser
|
127
|
+
"""
|
128
|
+
elif False:
|
129
|
+
RedisClusterGetOciCacheUserOciCacheUserArgsDict: TypeAlias = Mapping[str, Any]
|
130
|
+
|
131
|
+
@pulumi.input_type
|
132
|
+
class RedisClusterGetOciCacheUserOciCacheUserArgs:
|
133
|
+
def __init__(__self__, *,
|
134
|
+
oci_cache_user_id: Optional[pulumi.Input[builtins.str]] = None):
|
135
|
+
"""
|
136
|
+
:param pulumi.Input[builtins.str] oci_cache_user_id: OCID of the OciCacheUser
|
137
|
+
"""
|
138
|
+
if oci_cache_user_id is not None:
|
139
|
+
pulumi.set(__self__, "oci_cache_user_id", oci_cache_user_id)
|
140
|
+
|
141
|
+
@property
|
142
|
+
@pulumi.getter(name="ociCacheUserId")
|
143
|
+
def oci_cache_user_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
144
|
+
"""
|
145
|
+
OCID of the OciCacheUser
|
146
|
+
"""
|
147
|
+
return pulumi.get(self, "oci_cache_user_id")
|
148
|
+
|
149
|
+
@oci_cache_user_id.setter
|
150
|
+
def oci_cache_user_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
151
|
+
pulumi.set(self, "oci_cache_user_id", value)
|
152
|
+
|
153
|
+
|
31
154
|
if not MYPY:
|
32
155
|
class RedisClusterNodeCollectionArgsDict(TypedDict):
|
33
156
|
items: NotRequired[pulumi.Input[Sequence[pulumi.Input['RedisClusterNodeCollectionItemArgsDict']]]]
|
@@ -132,6 +255,62 @@ class RedisClusterNodeCollectionItemArgs:
|
|
132
255
|
pulumi.set(self, "private_endpoint_ip_address", value)
|
133
256
|
|
134
257
|
|
258
|
+
if not MYPY:
|
259
|
+
class GetOciCacheUsersFilterArgsDict(TypedDict):
|
260
|
+
name: builtins.str
|
261
|
+
"""
|
262
|
+
A filter to return the resources that match with the given Oracle Cloud Infrastructure cache user name.
|
263
|
+
"""
|
264
|
+
values: Sequence[builtins.str]
|
265
|
+
regex: NotRequired[builtins.bool]
|
266
|
+
elif False:
|
267
|
+
GetOciCacheUsersFilterArgsDict: TypeAlias = Mapping[str, Any]
|
268
|
+
|
269
|
+
@pulumi.input_type
|
270
|
+
class GetOciCacheUsersFilterArgs:
|
271
|
+
def __init__(__self__, *,
|
272
|
+
name: builtins.str,
|
273
|
+
values: Sequence[builtins.str],
|
274
|
+
regex: Optional[builtins.bool] = None):
|
275
|
+
"""
|
276
|
+
:param builtins.str name: A filter to return the resources that match with the given Oracle Cloud Infrastructure cache user name.
|
277
|
+
"""
|
278
|
+
pulumi.set(__self__, "name", name)
|
279
|
+
pulumi.set(__self__, "values", values)
|
280
|
+
if regex is not None:
|
281
|
+
pulumi.set(__self__, "regex", regex)
|
282
|
+
|
283
|
+
@property
|
284
|
+
@pulumi.getter
|
285
|
+
def name(self) -> builtins.str:
|
286
|
+
"""
|
287
|
+
A filter to return the resources that match with the given Oracle Cloud Infrastructure cache user name.
|
288
|
+
"""
|
289
|
+
return pulumi.get(self, "name")
|
290
|
+
|
291
|
+
@name.setter
|
292
|
+
def name(self, value: builtins.str):
|
293
|
+
pulumi.set(self, "name", value)
|
294
|
+
|
295
|
+
@property
|
296
|
+
@pulumi.getter
|
297
|
+
def values(self) -> Sequence[builtins.str]:
|
298
|
+
return pulumi.get(self, "values")
|
299
|
+
|
300
|
+
@values.setter
|
301
|
+
def values(self, value: Sequence[builtins.str]):
|
302
|
+
pulumi.set(self, "values", value)
|
303
|
+
|
304
|
+
@property
|
305
|
+
@pulumi.getter
|
306
|
+
def regex(self) -> Optional[builtins.bool]:
|
307
|
+
return pulumi.get(self, "regex")
|
308
|
+
|
309
|
+
@regex.setter
|
310
|
+
def regex(self, value: Optional[builtins.bool]):
|
311
|
+
pulumi.set(self, "regex", value)
|
312
|
+
|
313
|
+
|
135
314
|
if not MYPY:
|
136
315
|
class GetRedisClusterNodesFilterArgsDict(TypedDict):
|
137
316
|
name: builtins.str
|
@@ -0,0 +1,283 @@
|
|
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
|
+
'GetOciCacheUserResult',
|
21
|
+
'AwaitableGetOciCacheUserResult',
|
22
|
+
'get_oci_cache_user',
|
23
|
+
'get_oci_cache_user_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetOciCacheUserResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getOciCacheUser.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, acl_string=None, authentication_modes=None, compartment_id=None, defined_tags=None, description=None, freeform_tags=None, id=None, name=None, oci_cache_user_id=None, state=None, status=None, system_tags=None, time_created=None, time_updated=None):
|
32
|
+
if acl_string and not isinstance(acl_string, str):
|
33
|
+
raise TypeError("Expected argument 'acl_string' to be a str")
|
34
|
+
pulumi.set(__self__, "acl_string", acl_string)
|
35
|
+
if authentication_modes and not isinstance(authentication_modes, list):
|
36
|
+
raise TypeError("Expected argument 'authentication_modes' to be a list")
|
37
|
+
pulumi.set(__self__, "authentication_modes", authentication_modes)
|
38
|
+
if compartment_id and not isinstance(compartment_id, str):
|
39
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
40
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
41
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
42
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
43
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
44
|
+
if description and not isinstance(description, str):
|
45
|
+
raise TypeError("Expected argument 'description' to be a str")
|
46
|
+
pulumi.set(__self__, "description", description)
|
47
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
48
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
49
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
50
|
+
if id and not isinstance(id, str):
|
51
|
+
raise TypeError("Expected argument 'id' to be a str")
|
52
|
+
pulumi.set(__self__, "id", id)
|
53
|
+
if name and not isinstance(name, str):
|
54
|
+
raise TypeError("Expected argument 'name' to be a str")
|
55
|
+
pulumi.set(__self__, "name", name)
|
56
|
+
if oci_cache_user_id and not isinstance(oci_cache_user_id, str):
|
57
|
+
raise TypeError("Expected argument 'oci_cache_user_id' to be a str")
|
58
|
+
pulumi.set(__self__, "oci_cache_user_id", oci_cache_user_id)
|
59
|
+
if state and not isinstance(state, str):
|
60
|
+
raise TypeError("Expected argument 'state' to be a str")
|
61
|
+
pulumi.set(__self__, "state", state)
|
62
|
+
if status and not isinstance(status, str):
|
63
|
+
raise TypeError("Expected argument 'status' to be a str")
|
64
|
+
pulumi.set(__self__, "status", status)
|
65
|
+
if system_tags and not isinstance(system_tags, dict):
|
66
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
67
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
68
|
+
if time_created and not isinstance(time_created, str):
|
69
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
70
|
+
pulumi.set(__self__, "time_created", time_created)
|
71
|
+
if time_updated and not isinstance(time_updated, str):
|
72
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
73
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
74
|
+
|
75
|
+
@property
|
76
|
+
@pulumi.getter(name="aclString")
|
77
|
+
def acl_string(self) -> builtins.str:
|
78
|
+
"""
|
79
|
+
ACL string of Oracle Cloud Infrastructure cache user.
|
80
|
+
"""
|
81
|
+
return pulumi.get(self, "acl_string")
|
82
|
+
|
83
|
+
@property
|
84
|
+
@pulumi.getter(name="authenticationModes")
|
85
|
+
def authentication_modes(self) -> Sequence['outputs.GetOciCacheUserAuthenticationModeResult']:
|
86
|
+
"""
|
87
|
+
These are the Authentication details of an Oracle Cloud Infrastructure cache user.
|
88
|
+
"""
|
89
|
+
return pulumi.get(self, "authentication_modes")
|
90
|
+
|
91
|
+
@property
|
92
|
+
@pulumi.getter(name="compartmentId")
|
93
|
+
def compartment_id(self) -> builtins.str:
|
94
|
+
"""
|
95
|
+
Oracle Cloud Infrastructure Cache user compartment ID.
|
96
|
+
"""
|
97
|
+
return pulumi.get(self, "compartment_id")
|
98
|
+
|
99
|
+
@property
|
100
|
+
@pulumi.getter(name="definedTags")
|
101
|
+
def defined_tags(self) -> Mapping[str, builtins.str]:
|
102
|
+
"""
|
103
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
104
|
+
"""
|
105
|
+
return pulumi.get(self, "defined_tags")
|
106
|
+
|
107
|
+
@property
|
108
|
+
@pulumi.getter
|
109
|
+
def description(self) -> builtins.str:
|
110
|
+
"""
|
111
|
+
Description of Oracle Cloud Infrastructure cache user.
|
112
|
+
"""
|
113
|
+
return pulumi.get(self, "description")
|
114
|
+
|
115
|
+
@property
|
116
|
+
@pulumi.getter(name="freeformTags")
|
117
|
+
def freeform_tags(self) -> Mapping[str, builtins.str]:
|
118
|
+
"""
|
119
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
120
|
+
"""
|
121
|
+
return pulumi.get(self, "freeform_tags")
|
122
|
+
|
123
|
+
@property
|
124
|
+
@pulumi.getter
|
125
|
+
def id(self) -> builtins.str:
|
126
|
+
"""
|
127
|
+
Oracle Cloud Infrastructure Cache user unique ID.
|
128
|
+
"""
|
129
|
+
return pulumi.get(self, "id")
|
130
|
+
|
131
|
+
@property
|
132
|
+
@pulumi.getter
|
133
|
+
def name(self) -> builtins.str:
|
134
|
+
"""
|
135
|
+
Oracle Cloud Infrastructure Cache user name.
|
136
|
+
"""
|
137
|
+
return pulumi.get(self, "name")
|
138
|
+
|
139
|
+
@property
|
140
|
+
@pulumi.getter(name="ociCacheUserId")
|
141
|
+
def oci_cache_user_id(self) -> builtins.str:
|
142
|
+
return pulumi.get(self, "oci_cache_user_id")
|
143
|
+
|
144
|
+
@property
|
145
|
+
@pulumi.getter
|
146
|
+
def state(self) -> builtins.str:
|
147
|
+
"""
|
148
|
+
Oracle Cloud Infrastructure Cache user lifecycle state.
|
149
|
+
"""
|
150
|
+
return pulumi.get(self, "state")
|
151
|
+
|
152
|
+
@property
|
153
|
+
@pulumi.getter
|
154
|
+
def status(self) -> builtins.str:
|
155
|
+
"""
|
156
|
+
Oracle Cloud Infrastructure Cache user status. ON enables and OFF disables the Oracle Cloud Infrastructure cache user to login to the cluster.
|
157
|
+
"""
|
158
|
+
return pulumi.get(self, "status")
|
159
|
+
|
160
|
+
@property
|
161
|
+
@pulumi.getter(name="systemTags")
|
162
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
163
|
+
"""
|
164
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
165
|
+
"""
|
166
|
+
return pulumi.get(self, "system_tags")
|
167
|
+
|
168
|
+
@property
|
169
|
+
@pulumi.getter(name="timeCreated")
|
170
|
+
def time_created(self) -> builtins.str:
|
171
|
+
"""
|
172
|
+
The date and time, when the Oracle Cloud Infrastructure cache user was created.
|
173
|
+
"""
|
174
|
+
return pulumi.get(self, "time_created")
|
175
|
+
|
176
|
+
@property
|
177
|
+
@pulumi.getter(name="timeUpdated")
|
178
|
+
def time_updated(self) -> builtins.str:
|
179
|
+
"""
|
180
|
+
The date and time, when the Oracle Cloud Infrastructure cache user was updated.
|
181
|
+
"""
|
182
|
+
return pulumi.get(self, "time_updated")
|
183
|
+
|
184
|
+
|
185
|
+
class AwaitableGetOciCacheUserResult(GetOciCacheUserResult):
|
186
|
+
# pylint: disable=using-constant-test
|
187
|
+
def __await__(self):
|
188
|
+
if False:
|
189
|
+
yield self
|
190
|
+
return GetOciCacheUserResult(
|
191
|
+
acl_string=self.acl_string,
|
192
|
+
authentication_modes=self.authentication_modes,
|
193
|
+
compartment_id=self.compartment_id,
|
194
|
+
defined_tags=self.defined_tags,
|
195
|
+
description=self.description,
|
196
|
+
freeform_tags=self.freeform_tags,
|
197
|
+
id=self.id,
|
198
|
+
name=self.name,
|
199
|
+
oci_cache_user_id=self.oci_cache_user_id,
|
200
|
+
state=self.state,
|
201
|
+
status=self.status,
|
202
|
+
system_tags=self.system_tags,
|
203
|
+
time_created=self.time_created,
|
204
|
+
time_updated=self.time_updated)
|
205
|
+
|
206
|
+
|
207
|
+
def get_oci_cache_user(oci_cache_user_id: Optional[builtins.str] = None,
|
208
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOciCacheUserResult:
|
209
|
+
"""
|
210
|
+
This data source provides details about a specific Oci Cache User resource in Oracle Cloud Infrastructure Redis service.
|
211
|
+
|
212
|
+
Get an existing Oracle Cloud Infrastructure Cache users based on the ID (OCID).
|
213
|
+
|
214
|
+
## Example Usage
|
215
|
+
|
216
|
+
```python
|
217
|
+
import pulumi
|
218
|
+
import pulumi_oci as oci
|
219
|
+
|
220
|
+
test_oci_cache_user = oci.Redis.get_oci_cache_user(oci_cache_user_id=test_oci_cache_user_oci_redis_oci_cache_user["id"])
|
221
|
+
```
|
222
|
+
|
223
|
+
|
224
|
+
:param builtins.str oci_cache_user_id: A filter to return only resources, that match with the given Oracle Cloud Infrastructure cache user ID (OCID).
|
225
|
+
"""
|
226
|
+
__args__ = dict()
|
227
|
+
__args__['ociCacheUserId'] = oci_cache_user_id
|
228
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
229
|
+
__ret__ = pulumi.runtime.invoke('oci:Redis/getOciCacheUser:getOciCacheUser', __args__, opts=opts, typ=GetOciCacheUserResult).value
|
230
|
+
|
231
|
+
return AwaitableGetOciCacheUserResult(
|
232
|
+
acl_string=pulumi.get(__ret__, 'acl_string'),
|
233
|
+
authentication_modes=pulumi.get(__ret__, 'authentication_modes'),
|
234
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
235
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
236
|
+
description=pulumi.get(__ret__, 'description'),
|
237
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
238
|
+
id=pulumi.get(__ret__, 'id'),
|
239
|
+
name=pulumi.get(__ret__, 'name'),
|
240
|
+
oci_cache_user_id=pulumi.get(__ret__, 'oci_cache_user_id'),
|
241
|
+
state=pulumi.get(__ret__, 'state'),
|
242
|
+
status=pulumi.get(__ret__, 'status'),
|
243
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
244
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
245
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
246
|
+
def get_oci_cache_user_output(oci_cache_user_id: Optional[pulumi.Input[builtins.str]] = None,
|
247
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOciCacheUserResult]:
|
248
|
+
"""
|
249
|
+
This data source provides details about a specific Oci Cache User resource in Oracle Cloud Infrastructure Redis service.
|
250
|
+
|
251
|
+
Get an existing Oracle Cloud Infrastructure Cache users based on the ID (OCID).
|
252
|
+
|
253
|
+
## Example Usage
|
254
|
+
|
255
|
+
```python
|
256
|
+
import pulumi
|
257
|
+
import pulumi_oci as oci
|
258
|
+
|
259
|
+
test_oci_cache_user = oci.Redis.get_oci_cache_user(oci_cache_user_id=test_oci_cache_user_oci_redis_oci_cache_user["id"])
|
260
|
+
```
|
261
|
+
|
262
|
+
|
263
|
+
:param builtins.str oci_cache_user_id: A filter to return only resources, that match with the given Oracle Cloud Infrastructure cache user ID (OCID).
|
264
|
+
"""
|
265
|
+
__args__ = dict()
|
266
|
+
__args__['ociCacheUserId'] = oci_cache_user_id
|
267
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
268
|
+
__ret__ = pulumi.runtime.invoke_output('oci:Redis/getOciCacheUser:getOciCacheUser', __args__, opts=opts, typ=GetOciCacheUserResult)
|
269
|
+
return __ret__.apply(lambda __response__: GetOciCacheUserResult(
|
270
|
+
acl_string=pulumi.get(__response__, 'acl_string'),
|
271
|
+
authentication_modes=pulumi.get(__response__, 'authentication_modes'),
|
272
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
273
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
274
|
+
description=pulumi.get(__response__, 'description'),
|
275
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
276
|
+
id=pulumi.get(__response__, 'id'),
|
277
|
+
name=pulumi.get(__response__, 'name'),
|
278
|
+
oci_cache_user_id=pulumi.get(__response__, 'oci_cache_user_id'),
|
279
|
+
state=pulumi.get(__response__, 'state'),
|
280
|
+
status=pulumi.get(__response__, 'status'),
|
281
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
282
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
283
|
+
time_updated=pulumi.get(__response__, 'time_updated')))
|