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,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')))
|
@@ -0,0 +1,192 @@
|
|
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__ = [
|
21
|
+
'GetOciCacheUsersResult',
|
22
|
+
'AwaitableGetOciCacheUsersResult',
|
23
|
+
'get_oci_cache_users',
|
24
|
+
'get_oci_cache_users_output',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class GetOciCacheUsersResult:
|
29
|
+
"""
|
30
|
+
A collection of values returned by getOciCacheUsers.
|
31
|
+
"""
|
32
|
+
def __init__(__self__, compartment_id=None, filters=None, id=None, name=None, oci_cache_user_collections=None, state=None):
|
33
|
+
if compartment_id and not isinstance(compartment_id, str):
|
34
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
35
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
36
|
+
if filters and not isinstance(filters, list):
|
37
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
38
|
+
pulumi.set(__self__, "filters", filters)
|
39
|
+
if id and not isinstance(id, str):
|
40
|
+
raise TypeError("Expected argument 'id' to be a str")
|
41
|
+
pulumi.set(__self__, "id", id)
|
42
|
+
if name and not isinstance(name, str):
|
43
|
+
raise TypeError("Expected argument 'name' to be a str")
|
44
|
+
pulumi.set(__self__, "name", name)
|
45
|
+
if oci_cache_user_collections and not isinstance(oci_cache_user_collections, list):
|
46
|
+
raise TypeError("Expected argument 'oci_cache_user_collections' to be a list")
|
47
|
+
pulumi.set(__self__, "oci_cache_user_collections", oci_cache_user_collections)
|
48
|
+
if state and not isinstance(state, str):
|
49
|
+
raise TypeError("Expected argument 'state' to be a str")
|
50
|
+
pulumi.set(__self__, "state", state)
|
51
|
+
|
52
|
+
@property
|
53
|
+
@pulumi.getter(name="compartmentId")
|
54
|
+
def compartment_id(self) -> Optional[builtins.str]:
|
55
|
+
"""
|
56
|
+
Oracle Cloud Infrastructure Cache user compartment ID.
|
57
|
+
"""
|
58
|
+
return pulumi.get(self, "compartment_id")
|
59
|
+
|
60
|
+
@property
|
61
|
+
@pulumi.getter
|
62
|
+
def filters(self) -> Optional[Sequence['outputs.GetOciCacheUsersFilterResult']]:
|
63
|
+
return pulumi.get(self, "filters")
|
64
|
+
|
65
|
+
@property
|
66
|
+
@pulumi.getter
|
67
|
+
def id(self) -> builtins.str:
|
68
|
+
"""
|
69
|
+
The provider-assigned unique ID for this managed resource.
|
70
|
+
"""
|
71
|
+
return pulumi.get(self, "id")
|
72
|
+
|
73
|
+
@property
|
74
|
+
@pulumi.getter
|
75
|
+
def name(self) -> Optional[builtins.str]:
|
76
|
+
"""
|
77
|
+
Oracle Cloud Infrastructure Cache user name.
|
78
|
+
"""
|
79
|
+
return pulumi.get(self, "name")
|
80
|
+
|
81
|
+
@property
|
82
|
+
@pulumi.getter(name="ociCacheUserCollections")
|
83
|
+
def oci_cache_user_collections(self) -> Sequence['outputs.GetOciCacheUsersOciCacheUserCollectionResult']:
|
84
|
+
"""
|
85
|
+
The list of oci_cache_user_collection.
|
86
|
+
"""
|
87
|
+
return pulumi.get(self, "oci_cache_user_collections")
|
88
|
+
|
89
|
+
@property
|
90
|
+
@pulumi.getter
|
91
|
+
def state(self) -> Optional[builtins.str]:
|
92
|
+
"""
|
93
|
+
Oracle Cloud Infrastructure Cache user lifecycle state.
|
94
|
+
"""
|
95
|
+
return pulumi.get(self, "state")
|
96
|
+
|
97
|
+
|
98
|
+
class AwaitableGetOciCacheUsersResult(GetOciCacheUsersResult):
|
99
|
+
# pylint: disable=using-constant-test
|
100
|
+
def __await__(self):
|
101
|
+
if False:
|
102
|
+
yield self
|
103
|
+
return GetOciCacheUsersResult(
|
104
|
+
compartment_id=self.compartment_id,
|
105
|
+
filters=self.filters,
|
106
|
+
id=self.id,
|
107
|
+
name=self.name,
|
108
|
+
oci_cache_user_collections=self.oci_cache_user_collections,
|
109
|
+
state=self.state)
|
110
|
+
|
111
|
+
|
112
|
+
def get_oci_cache_users(compartment_id: Optional[builtins.str] = None,
|
113
|
+
filters: Optional[Sequence[Union['GetOciCacheUsersFilterArgs', 'GetOciCacheUsersFilterArgsDict']]] = None,
|
114
|
+
name: Optional[builtins.str] = None,
|
115
|
+
state: Optional[builtins.str] = None,
|
116
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOciCacheUsersResult:
|
117
|
+
"""
|
118
|
+
This data source provides the list of Oci Cache Users in Oracle Cloud Infrastructure Redis service.
|
119
|
+
|
120
|
+
Lists the Oracle Cloud Infrastructure Cache users based on the supplied parameters.
|
121
|
+
|
122
|
+
## Example Usage
|
123
|
+
|
124
|
+
```python
|
125
|
+
import pulumi
|
126
|
+
import pulumi_oci as oci
|
127
|
+
|
128
|
+
test_oci_cache_users = oci.Redis.get_oci_cache_users(compartment_id=compartment_id,
|
129
|
+
name=oci_cache_user_name,
|
130
|
+
state=oci_cache_user_state)
|
131
|
+
```
|
132
|
+
|
133
|
+
|
134
|
+
:param builtins.str compartment_id: The ID of the compartment in which to list resources.
|
135
|
+
:param builtins.str name: A filter to return the resources that match with the given Oracle Cloud Infrastructure cache user name.
|
136
|
+
:param builtins.str state: A filter to return the resources, whose lifecycleState matches with the given lifecycleState.
|
137
|
+
"""
|
138
|
+
__args__ = dict()
|
139
|
+
__args__['compartmentId'] = compartment_id
|
140
|
+
__args__['filters'] = filters
|
141
|
+
__args__['name'] = name
|
142
|
+
__args__['state'] = state
|
143
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
144
|
+
__ret__ = pulumi.runtime.invoke('oci:Redis/getOciCacheUsers:getOciCacheUsers', __args__, opts=opts, typ=GetOciCacheUsersResult).value
|
145
|
+
|
146
|
+
return AwaitableGetOciCacheUsersResult(
|
147
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
148
|
+
filters=pulumi.get(__ret__, 'filters'),
|
149
|
+
id=pulumi.get(__ret__, 'id'),
|
150
|
+
name=pulumi.get(__ret__, 'name'),
|
151
|
+
oci_cache_user_collections=pulumi.get(__ret__, 'oci_cache_user_collections'),
|
152
|
+
state=pulumi.get(__ret__, 'state'))
|
153
|
+
def get_oci_cache_users_output(compartment_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
154
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetOciCacheUsersFilterArgs', 'GetOciCacheUsersFilterArgsDict']]]]] = None,
|
155
|
+
name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
156
|
+
state: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
157
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOciCacheUsersResult]:
|
158
|
+
"""
|
159
|
+
This data source provides the list of Oci Cache Users in Oracle Cloud Infrastructure Redis service.
|
160
|
+
|
161
|
+
Lists the Oracle Cloud Infrastructure Cache users based on the supplied parameters.
|
162
|
+
|
163
|
+
## Example Usage
|
164
|
+
|
165
|
+
```python
|
166
|
+
import pulumi
|
167
|
+
import pulumi_oci as oci
|
168
|
+
|
169
|
+
test_oci_cache_users = oci.Redis.get_oci_cache_users(compartment_id=compartment_id,
|
170
|
+
name=oci_cache_user_name,
|
171
|
+
state=oci_cache_user_state)
|
172
|
+
```
|
173
|
+
|
174
|
+
|
175
|
+
:param builtins.str compartment_id: The ID of the compartment in which to list resources.
|
176
|
+
:param builtins.str name: A filter to return the resources that match with the given Oracle Cloud Infrastructure cache user name.
|
177
|
+
:param builtins.str state: A filter to return the resources, whose lifecycleState matches with the given lifecycleState.
|
178
|
+
"""
|
179
|
+
__args__ = dict()
|
180
|
+
__args__['compartmentId'] = compartment_id
|
181
|
+
__args__['filters'] = filters
|
182
|
+
__args__['name'] = name
|
183
|
+
__args__['state'] = state
|
184
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
185
|
+
__ret__ = pulumi.runtime.invoke_output('oci:Redis/getOciCacheUsers:getOciCacheUsers', __args__, opts=opts, typ=GetOciCacheUsersResult)
|
186
|
+
return __ret__.apply(lambda __response__: GetOciCacheUsersResult(
|
187
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
188
|
+
filters=pulumi.get(__response__, 'filters'),
|
189
|
+
id=pulumi.get(__response__, 'id'),
|
190
|
+
name=pulumi.get(__response__, 'name'),
|
191
|
+
oci_cache_user_collections=pulumi.get(__response__, 'oci_cache_user_collections'),
|
192
|
+
state=pulumi.get(__response__, 'state')))
|