pulumi-oci 3.4.0a1755714728__py3-none-any.whl → 3.5.0__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 +248 -43
- pulumi_oci/aidocument/__init__.py +1 -0
- pulumi_oci/aidocument/_inputs.py +476 -6
- pulumi_oci/aidocument/get_model.py +63 -2
- pulumi_oci/aidocument/get_model_type.py +179 -0
- pulumi_oci/aidocument/get_models.py +1 -1
- pulumi_oci/aidocument/get_project.py +17 -2
- pulumi_oci/aidocument/get_projects.py +1 -1
- pulumi_oci/aidocument/model.py +188 -0
- pulumi_oci/aidocument/outputs.py +883 -8
- pulumi_oci/aidocument/processor_job.py +22 -4
- pulumi_oci/aidocument/project.py +50 -1
- pulumi_oci/apigateway/_inputs.py +608 -12
- pulumi_oci/apigateway/api.py +127 -38
- pulumi_oci/apigateway/certificate.py +122 -3
- pulumi_oci/apigateway/deployment.py +120 -3
- pulumi_oci/apigateway/gateway.py +124 -7
- pulumi_oci/apigateway/get_api.py +40 -1
- pulumi_oci/apigateway/get_certificate.py +41 -1
- pulumi_oci/apigateway/get_deployment.py +40 -1
- pulumi_oci/apigateway/get_gateway.py +40 -1
- pulumi_oci/apigateway/get_subscriber.py +40 -1
- pulumi_oci/apigateway/get_usage_plan.py +40 -1
- pulumi_oci/apigateway/outputs.py +1413 -39
- pulumi_oci/apigateway/subscriber.py +120 -3
- pulumi_oci/apigateway/usage_plan.py +127 -38
- pulumi_oci/apmconfig/_inputs.py +199 -15
- pulumi_oci/apmconfig/config.py +535 -17
- pulumi_oci/apmconfig/get_config.py +141 -1
- pulumi_oci/apmconfig/get_configs.py +2 -2
- pulumi_oci/apmconfig/outputs.py +509 -13
- pulumi_oci/apmtraces/__init__.py +5 -0
- pulumi_oci/apmtraces/_inputs.py +413 -0
- pulumi_oci/apmtraces/get_attribute_auto_activate_status.py +160 -0
- pulumi_oci/apmtraces/get_log.py +356 -0
- pulumi_oci/apmtraces/get_scheduled_queries.py +163 -0
- pulumi_oci/apmtraces/get_scheduled_query.py +368 -0
- pulumi_oci/apmtraces/get_trace.py +4 -4
- pulumi_oci/apmtraces/outputs.py +971 -0
- pulumi_oci/apmtraces/scheduled_query.py +925 -0
- pulumi_oci/autoscaling/_inputs.py +177 -13
- pulumi_oci/autoscaling/auto_scaling_configuration.py +12 -0
- pulumi_oci/autoscaling/outputs.py +269 -23
- pulumi_oci/core/_inputs.py +184 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +28 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +15 -1
- pulumi_oci/core/get_ipv6.py +15 -1
- pulumi_oci/core/ipv6.py +49 -0
- pulumi_oci/core/outputs.py +376 -0
- pulumi_oci/database/__init__.py +3 -0
- pulumi_oci/database/_inputs.py +396 -19
- pulumi_oci/database/autonomous_container_database.py +94 -0
- pulumi_oci/database/autonomous_container_database_add_standby.py +28 -0
- pulumi_oci/database/autonomous_database.py +578 -568
- pulumi_oci/database/autonomous_database_saas_admin_user.py +43 -60
- pulumi_oci/database/data_guard_association.py +98 -0
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/db_node.py +56 -0
- pulumi_oci/database/db_system.py +108 -14
- pulumi_oci/database/exadb_vm_cluster.py +49 -0
- pulumi_oci/database/exascale_db_storage_vault.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +29 -1
- pulumi_oci/database/get_autonomous_database.py +65 -1
- pulumi_oci/database/get_autonomous_databases.py +6 -1
- pulumi_oci/database/get_data_guard_association.py +23 -1
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_db_node.py +29 -1
- pulumi_oci/database/get_db_system_shapes.py +25 -6
- pulumi_oci/database/get_db_system_storage_performances.py +20 -3
- pulumi_oci/database/get_db_versions.py +20 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vault.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +87 -8
- pulumi_oci/database/get_gi_versions.py +25 -6
- pulumi_oci/database/get_pluggable_database_snapshot.py +253 -0
- pulumi_oci/database/get_pluggable_database_snapshots.py +235 -0
- pulumi_oci/database/outputs.py +1045 -83
- pulumi_oci/database/pluggable_database.py +0 -14
- pulumi_oci/database/pluggable_database_snapshot.py +539 -0
- pulumi_oci/databasemanagement/__init__.py +37 -0
- pulumi_oci/databasemanagement/_inputs.py +9516 -3414
- pulumi_oci/databasemanagement/cloud_asm.py +791 -0
- pulumi_oci/databasemanagement/cloud_asm_instance.py +686 -0
- pulumi_oci/databasemanagement/cloud_cluster.py +847 -0
- pulumi_oci/databasemanagement/cloud_cluster_instance.py +789 -0
- pulumi_oci/databasemanagement/cloud_db_home.py +630 -0
- pulumi_oci/databasemanagement/cloud_db_node.py +761 -0
- pulumi_oci/databasemanagement/cloud_db_system.py +789 -0
- pulumi_oci/databasemanagement/cloud_db_system_cloud_database_managements_management.py +354 -0
- pulumi_oci/databasemanagement/cloud_db_system_cloud_stack_monitorings_management.py +354 -0
- pulumi_oci/databasemanagement/cloud_db_system_connector.py +761 -0
- pulumi_oci/databasemanagement/cloud_db_system_discovery.py +754 -0
- pulumi_oci/databasemanagement/cloud_listener.py +1043 -0
- pulumi_oci/databasemanagement/get_cloud_asm.py +380 -0
- pulumi_oci/databasemanagement/get_cloud_asm_configuration.py +147 -0
- pulumi_oci/databasemanagement/get_cloud_asm_disk_groups.py +163 -0
- pulumi_oci/databasemanagement/get_cloud_asm_instance.py +337 -0
- pulumi_oci/databasemanagement/get_cloud_asm_instances.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_asm_users.py +163 -0
- pulumi_oci/databasemanagement/get_cloud_asms.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_cluster.py +408 -0
- pulumi_oci/databasemanagement/get_cloud_cluster_instance.py +379 -0
- pulumi_oci/databasemanagement/get_cloud_cluster_instances.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_clusters.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_databases.py +188 -0
- pulumi_oci/databasemanagement/get_cloud_db_home.py +309 -0
- pulumi_oci/databasemanagement/get_cloud_db_homes.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_db_node.py +365 -0
- pulumi_oci/databasemanagement/get_cloud_db_nodes.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_db_system.py +352 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_connector.py +338 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_connectors.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_discoveries.py +169 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_discovery.py +335 -0
- pulumi_oci/databasemanagement/get_cloud_db_systems.py +235 -0
- pulumi_oci/databasemanagement/get_cloud_listener.py +506 -0
- pulumi_oci/databasemanagement/get_cloud_listener_services.py +187 -0
- pulumi_oci/databasemanagement/get_cloud_listeners.py +191 -0
- pulumi_oci/databasemanagement/get_managed_database.py +2 -2
- pulumi_oci/databasemanagement/get_managed_database_group.py +2 -2
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +6 -6
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +5 -5
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +2 -2
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +2 -2
- pulumi_oci/databasemanagement/outputs.py +18049 -4222
- pulumi_oci/datasafe/__init__.py +24 -0
- pulumi_oci/datasafe/_inputs.py +3669 -1537
- pulumi_oci/datasafe/attribute_set.py +693 -0
- pulumi_oci/datasafe/audit_profile.py +356 -95
- pulumi_oci/datasafe/audit_profile_management.py +389 -129
- pulumi_oci/datasafe/audit_trail.py +47 -0
- pulumi_oci/datasafe/audit_trail_management.py +49 -0
- pulumi_oci/datasafe/get_alerts.py +2 -2
- pulumi_oci/datasafe/get_attribute_set.py +295 -0
- pulumi_oci/datasafe/get_attribute_set_associated_resources.py +188 -0
- pulumi_oci/datasafe/get_attribute_sets.py +340 -0
- pulumi_oci/datasafe/get_audit_archive_retrievals.py +20 -1
- pulumi_oci/datasafe/get_audit_events.py +2 -2
- pulumi_oci/datasafe/get_audit_policies.py +20 -1
- pulumi_oci/datasafe/get_audit_profile.py +78 -8
- pulumi_oci/datasafe/get_audit_profile_target_overrides.py +163 -0
- pulumi_oci/datasafe/get_audit_profiles.py +50 -9
- pulumi_oci/datasafe/get_audit_trail.py +15 -1
- pulumi_oci/datasafe/get_audit_trails.py +20 -1
- pulumi_oci/datasafe/get_database_security_configs.py +20 -1
- pulumi_oci/datasafe/get_discovery_analytics.py +39 -1
- pulumi_oci/datasafe/get_masking_analytics.py +42 -1
- pulumi_oci/datasafe/get_onprem_connectors.py +26 -23
- pulumi_oci/datasafe/get_report.py +43 -1
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_security_assessment.py +116 -2
- pulumi_oci/datasafe/get_security_assessment_checks.py +264 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +64 -4
- pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +22 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +75 -8
- pulumi_oci/datasafe/get_security_assessment_template_analytics.py +362 -0
- pulumi_oci/datasafe/get_security_assessment_template_association_analytics.py +298 -0
- pulumi_oci/datasafe/get_security_assessment_template_baseline_comparison.py +347 -0
- pulumi_oci/datasafe/get_security_assessments.py +70 -4
- pulumi_oci/datasafe/get_security_policies.py +23 -1
- pulumi_oci/datasafe/get_security_policy.py +15 -1
- pulumi_oci/datasafe/get_security_policy_config.py +296 -0
- pulumi_oci/datasafe/get_security_policy_configs.py +342 -0
- pulumi_oci/datasafe/get_security_policy_deployment.py +52 -2
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +49 -4
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +47 -6
- pulumi_oci/datasafe/get_security_policy_deployments.py +29 -7
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collection_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collections.py +20 -1
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violations.py +2 -2
- pulumi_oci/datasafe/get_target_alert_policy_associations.py +0 -34
- pulumi_oci/datasafe/get_target_database_group.py +296 -0
- pulumi_oci/datasafe/get_target_database_group_group_member.py +146 -0
- pulumi_oci/datasafe/get_target_database_groups.py +313 -0
- pulumi_oci/datasafe/get_unified_audit_policies.py +386 -0
- pulumi_oci/datasafe/get_unified_audit_policy.py +338 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definition.py +309 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definitions.py +334 -0
- pulumi_oci/datasafe/get_user_assessment.py +29 -1
- pulumi_oci/datasafe/get_user_assessments.py +45 -1
- pulumi_oci/datasafe/outputs.py +7975 -1013
- pulumi_oci/datasafe/report.py +84 -0
- pulumi_oci/datasafe/report_definition.py +4 -0
- pulumi_oci/datasafe/security_assessment.py +425 -82
- pulumi_oci/datasafe/security_assessment_check.py +456 -0
- pulumi_oci/datasafe/security_assessment_finding.py +818 -0
- pulumi_oci/datasafe/security_policy.py +94 -77
- pulumi_oci/datasafe/security_policy_config.py +698 -0
- pulumi_oci/datasafe/security_policy_deployment.py +272 -67
- pulumi_oci/datasafe/security_policy_deployment_management.py +266 -42
- pulumi_oci/datasafe/security_policy_management.py +87 -30
- pulumi_oci/datasafe/target_alert_policy_association.py +7 -77
- pulumi_oci/datasafe/target_database.py +4 -0
- pulumi_oci/datasafe/target_database_group.py +679 -0
- pulumi_oci/datasafe/target_database_peer_target_database.py +2 -0
- pulumi_oci/datasafe/unified_audit_policy.py +836 -0
- pulumi_oci/datasafe/unified_audit_policy_definition.py +687 -0
- pulumi_oci/datasafe/user_assessment.py +105 -28
- pulumi_oci/datascience/__init__.py +10 -0
- pulumi_oci/datascience/_inputs.py +6760 -2206
- pulumi_oci/datascience/get_job.py +15 -1
- pulumi_oci/datascience/get_job_run.py +44 -2
- pulumi_oci/datascience/get_model_deployment_model_states.py +251 -0
- pulumi_oci/datascience/get_model_group.py +405 -0
- pulumi_oci/datascience/get_model_group_artifact_content.py +132 -0
- pulumi_oci/datascience/get_model_group_models.py +240 -0
- pulumi_oci/datascience/get_model_group_version_histories.py +243 -0
- pulumi_oci/{aianomalydetection/get_detection_model.py → datascience/get_model_group_version_history.py} +73 -74
- pulumi_oci/datascience/get_model_groups.py +265 -0
- pulumi_oci/datascience/get_pipeline_run.py +15 -1
- pulumi_oci/datascience/job.py +81 -154
- pulumi_oci/datascience/job_run.py +250 -4
- pulumi_oci/datascience/model_group.py +1111 -0
- pulumi_oci/datascience/model_group_artifact.py +369 -0
- pulumi_oci/{aianomalydetection/model.py → datascience/model_group_version_history.py} +172 -187
- pulumi_oci/datascience/notebook_session.py +4 -0
- pulumi_oci/datascience/outputs.py +17168 -8021
- pulumi_oci/datascience/pipeline_run.py +87 -0
- pulumi_oci/disasterrecovery/_inputs.py +231 -3
- pulumi_oci/disasterrecovery/dr_protection_group.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +446 -12
- pulumi_oci/generativeai/_inputs.py +572 -63
- pulumi_oci/generativeai/agent_data_ingestion_job.py +48 -0
- pulumi_oci/generativeai/agent_data_source.py +7 -81
- pulumi_oci/generativeai/agent_knowledge_base.py +35 -25
- pulumi_oci/generativeai/agent_tool.py +172 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_job.py +26 -1
- pulumi_oci/generativeai/get_agent_data_source.py +1 -5
- pulumi_oci/generativeai/get_agent_data_sources.py +0 -4
- pulumi_oci/generativeai/get_agent_knowledge_base.py +16 -6
- pulumi_oci/generativeai/get_agent_knowledge_bases.py +0 -4
- pulumi_oci/generativeai/outputs.py +1128 -106
- pulumi_oci/goldengate/_inputs.py +3 -3
- pulumi_oci/goldengate/connection.py +175 -56
- pulumi_oci/goldengate/deployment.py +94 -0
- pulumi_oci/goldengate/get_connection.py +20 -4
- pulumi_oci/goldengate/get_deployment.py +29 -1
- pulumi_oci/goldengate/get_deployments.py +23 -1
- pulumi_oci/goldengate/outputs.py +62 -10
- pulumi_oci/managementagent/__init__.py +4 -0
- pulumi_oci/managementagent/_inputs.py +129 -0
- pulumi_oci/managementagent/get_management_agent.py +26 -1
- pulumi_oci/managementagent/get_management_agent_install_key.py +43 -1
- pulumi_oci/managementagent/get_management_agent_named_credentials_metadata.py +147 -0
- pulumi_oci/managementagent/get_named_credential.py +268 -0
- pulumi_oci/managementagent/get_named_credentials.py +221 -0
- pulumi_oci/managementagent/management_agent.py +48 -0
- pulumi_oci/managementagent/management_agent_install_key.py +84 -0
- pulumi_oci/managementagent/named_credential.py +706 -0
- pulumi_oci/managementagent/outputs.py +515 -0
- pulumi_oci/managementdashboard/management_dashboards_import.py +178 -20
- pulumi_oci/oci/__init__.py +12 -0
- pulumi_oci/oci/_inputs.py +566 -0
- pulumi_oci/{aianomalydetection/project.py → oci/api_platform_api_platform_instance.py} +204 -118
- pulumi_oci/oci/get_api_platform_api_platform_instance.py +282 -0
- pulumi_oci/oci/get_api_platform_api_platform_instances.py +199 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster.py +380 -0
- pulumi_oci/{aianomalydetection/get_ai_private_endpoint.py → oci/get_managed_kafka_kafka_cluster_config.py} +63 -90
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_version.py +177 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_versions.py +144 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_configs.py +199 -0
- pulumi_oci/oci/get_managed_kafka_kafka_clusters.py +199 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster.py +984 -0
- pulumi_oci/{aianomalydetection/ai_private_endpoint.py → oci/managed_kafka_kafka_cluster_config.py} +138 -232
- pulumi_oci/oci/managed_kafka_kafka_cluster_superusers_management.py +352 -0
- pulumi_oci/oci/outputs.py +1540 -164
- pulumi_oci/opsi/_inputs.py +1001 -149
- pulumi_oci/opsi/database_insight.py +22 -3
- pulumi_oci/opsi/exadata_insight.py +86 -6
- pulumi_oci/opsi/outputs.py +1438 -178
- pulumi_oci/psql/configuration.py +109 -19
- pulumi_oci/psql/db_system.py +7 -7
- pulumi_oci/psql/get_configuration.py +30 -2
- pulumi_oci/psql/get_configurations.py +49 -5
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_default_configuration.py +30 -4
- pulumi_oci/psql/get_default_configurations.py +49 -5
- pulumi_oci/psql/outputs.py +47 -14
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +6 -0
- pulumi_oci/redis/_inputs.py +217 -0
- pulumi_oci/{aianomalydetection/get_detection_data_asset.py → redis/get_oci_cache_config_set.py} +74 -74
- pulumi_oci/redis/get_oci_cache_config_sets.py +221 -0
- pulumi_oci/redis/get_oci_cache_default_config_set.py +217 -0
- pulumi_oci/redis/get_oci_cache_default_config_sets.py +218 -0
- pulumi_oci/redis/get_redis_cluster.py +15 -1
- pulumi_oci/{aianomalydetection/data_asset.py → redis/oci_cache_config_set.py} +190 -254
- pulumi_oci/redis/oci_cache_config_setlist_associated_oci_cache_cluster.py +240 -0
- pulumi_oci/redis/outputs.py +713 -0
- pulumi_oci/redis/redis_cluster.py +49 -0
- pulumi_oci/vault/_inputs.py +198 -0
- pulumi_oci/vault/get_secret.py +43 -1
- pulumi_oci/vault/outputs.py +434 -0
- pulumi_oci/vault/secret.py +103 -0
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/RECORD +302 -218
- pulumi_oci/aianomalydetection/__init__.py +0 -25
- pulumi_oci/aianomalydetection/_inputs.py +0 -1742
- pulumi_oci/aianomalydetection/detect_anomaly_job.py +0 -739
- pulumi_oci/aianomalydetection/get_ai_private_endpoints.py +0 -199
- pulumi_oci/aianomalydetection/get_detect_anomaly_job.py +0 -338
- pulumi_oci/aianomalydetection/get_detect_anomaly_jobs.py +0 -254
- pulumi_oci/aianomalydetection/get_detection_data_assets.py +0 -213
- pulumi_oci/aianomalydetection/get_detection_models.py +0 -213
- pulumi_oci/aianomalydetection/get_detection_project.py +0 -239
- pulumi_oci/aianomalydetection/get_detection_projects.py +0 -191
- pulumi_oci/aianomalydetection/outputs.py +0 -3699
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,221 @@
|
|
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 as _builtins
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
18
|
+
|
19
|
+
__all__ = [
|
20
|
+
'GetOciCacheConfigSetsResult',
|
21
|
+
'AwaitableGetOciCacheConfigSetsResult',
|
22
|
+
'get_oci_cache_config_sets',
|
23
|
+
'get_oci_cache_config_sets_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetOciCacheConfigSetsResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getOciCacheConfigSets.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, compartment_id=None, display_name=None, filters=None, id=None, oci_cache_config_set_collections=None, software_version=None, state=None):
|
32
|
+
if compartment_id and not isinstance(compartment_id, str):
|
33
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
35
|
+
if display_name and not isinstance(display_name, str):
|
36
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
37
|
+
pulumi.set(__self__, "display_name", display_name)
|
38
|
+
if filters and not isinstance(filters, list):
|
39
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
40
|
+
pulumi.set(__self__, "filters", filters)
|
41
|
+
if id and not isinstance(id, str):
|
42
|
+
raise TypeError("Expected argument 'id' to be a str")
|
43
|
+
pulumi.set(__self__, "id", id)
|
44
|
+
if oci_cache_config_set_collections and not isinstance(oci_cache_config_set_collections, list):
|
45
|
+
raise TypeError("Expected argument 'oci_cache_config_set_collections' to be a list")
|
46
|
+
pulumi.set(__self__, "oci_cache_config_set_collections", oci_cache_config_set_collections)
|
47
|
+
if software_version and not isinstance(software_version, str):
|
48
|
+
raise TypeError("Expected argument 'software_version' to be a str")
|
49
|
+
pulumi.set(__self__, "software_version", software_version)
|
50
|
+
if state and not isinstance(state, str):
|
51
|
+
raise TypeError("Expected argument 'state' to be a str")
|
52
|
+
pulumi.set(__self__, "state", state)
|
53
|
+
|
54
|
+
@_builtins.property
|
55
|
+
@pulumi.getter(name="compartmentId")
|
56
|
+
def compartment_id(self) -> Optional[_builtins.str]:
|
57
|
+
"""
|
58
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the compartment that contains the Oracle Cloud Infrastructure Cache Config Set.
|
59
|
+
"""
|
60
|
+
return pulumi.get(self, "compartment_id")
|
61
|
+
|
62
|
+
@_builtins.property
|
63
|
+
@pulumi.getter(name="displayName")
|
64
|
+
def display_name(self) -> Optional[_builtins.str]:
|
65
|
+
"""
|
66
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
67
|
+
"""
|
68
|
+
return pulumi.get(self, "display_name")
|
69
|
+
|
70
|
+
@_builtins.property
|
71
|
+
@pulumi.getter
|
72
|
+
def filters(self) -> Optional[Sequence['outputs.GetOciCacheConfigSetsFilterResult']]:
|
73
|
+
return pulumi.get(self, "filters")
|
74
|
+
|
75
|
+
@_builtins.property
|
76
|
+
@pulumi.getter
|
77
|
+
def id(self) -> Optional[_builtins.str]:
|
78
|
+
"""
|
79
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Oracle Cloud Infrastructure Cache Config Set.
|
80
|
+
"""
|
81
|
+
return pulumi.get(self, "id")
|
82
|
+
|
83
|
+
@_builtins.property
|
84
|
+
@pulumi.getter(name="ociCacheConfigSetCollections")
|
85
|
+
def oci_cache_config_set_collections(self) -> Sequence['outputs.GetOciCacheConfigSetsOciCacheConfigSetCollectionResult']:
|
86
|
+
"""
|
87
|
+
The list of oci_cache_config_set_collection.
|
88
|
+
"""
|
89
|
+
return pulumi.get(self, "oci_cache_config_set_collections")
|
90
|
+
|
91
|
+
@_builtins.property
|
92
|
+
@pulumi.getter(name="softwareVersion")
|
93
|
+
def software_version(self) -> Optional[_builtins.str]:
|
94
|
+
"""
|
95
|
+
The Oracle Cloud Infrastructure Cache engine version that the cluster is running.
|
96
|
+
"""
|
97
|
+
return pulumi.get(self, "software_version")
|
98
|
+
|
99
|
+
@_builtins.property
|
100
|
+
@pulumi.getter
|
101
|
+
def state(self) -> Optional[_builtins.str]:
|
102
|
+
"""
|
103
|
+
The current state of the Oracle Cloud Infrastructure Cache Config Set.
|
104
|
+
"""
|
105
|
+
return pulumi.get(self, "state")
|
106
|
+
|
107
|
+
|
108
|
+
class AwaitableGetOciCacheConfigSetsResult(GetOciCacheConfigSetsResult):
|
109
|
+
# pylint: disable=using-constant-test
|
110
|
+
def __await__(self):
|
111
|
+
if False:
|
112
|
+
yield self
|
113
|
+
return GetOciCacheConfigSetsResult(
|
114
|
+
compartment_id=self.compartment_id,
|
115
|
+
display_name=self.display_name,
|
116
|
+
filters=self.filters,
|
117
|
+
id=self.id,
|
118
|
+
oci_cache_config_set_collections=self.oci_cache_config_set_collections,
|
119
|
+
software_version=self.software_version,
|
120
|
+
state=self.state)
|
121
|
+
|
122
|
+
|
123
|
+
def get_oci_cache_config_sets(compartment_id: Optional[_builtins.str] = None,
|
124
|
+
display_name: Optional[_builtins.str] = None,
|
125
|
+
filters: Optional[Sequence[Union['GetOciCacheConfigSetsFilterArgs', 'GetOciCacheConfigSetsFilterArgsDict']]] = None,
|
126
|
+
id: Optional[_builtins.str] = None,
|
127
|
+
software_version: Optional[_builtins.str] = None,
|
128
|
+
state: Optional[_builtins.str] = None,
|
129
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOciCacheConfigSetsResult:
|
130
|
+
"""
|
131
|
+
This data source provides the list of Oci Cache Config Sets in Oracle Cloud Infrastructure Redis service.
|
132
|
+
|
133
|
+
Lists the Oracle Cloud Infrastructure Cache Config Sets in the specified compartment.
|
134
|
+
|
135
|
+
## Example Usage
|
136
|
+
|
137
|
+
```python
|
138
|
+
import pulumi
|
139
|
+
import pulumi_oci as oci
|
140
|
+
|
141
|
+
test_oci_cache_config_sets = oci.Redis.get_oci_cache_config_sets(compartment_id=compartment_id,
|
142
|
+
display_name=oci_cache_config_set_display_name,
|
143
|
+
id=oci_cache_config_set_id,
|
144
|
+
software_version=oci_cache_config_set_software_version,
|
145
|
+
state=oci_cache_config_set_state)
|
146
|
+
```
|
147
|
+
|
148
|
+
|
149
|
+
:param _builtins.str compartment_id: The ID of the compartment in which to list resources.
|
150
|
+
:param _builtins.str display_name: A filter to return only resources that match the entire display name given.
|
151
|
+
:param _builtins.str id: Unique Oracle Cloud Infrastructure Cache Config Set identifier.
|
152
|
+
:param _builtins.str software_version: A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
|
153
|
+
:param _builtins.str state: A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose lifecycle state matches with the given lifecycle state.
|
154
|
+
"""
|
155
|
+
__args__ = dict()
|
156
|
+
__args__['compartmentId'] = compartment_id
|
157
|
+
__args__['displayName'] = display_name
|
158
|
+
__args__['filters'] = filters
|
159
|
+
__args__['id'] = id
|
160
|
+
__args__['softwareVersion'] = software_version
|
161
|
+
__args__['state'] = state
|
162
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
163
|
+
__ret__ = pulumi.runtime.invoke('oci:Redis/getOciCacheConfigSets:getOciCacheConfigSets', __args__, opts=opts, typ=GetOciCacheConfigSetsResult).value
|
164
|
+
|
165
|
+
return AwaitableGetOciCacheConfigSetsResult(
|
166
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
167
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
168
|
+
filters=pulumi.get(__ret__, 'filters'),
|
169
|
+
id=pulumi.get(__ret__, 'id'),
|
170
|
+
oci_cache_config_set_collections=pulumi.get(__ret__, 'oci_cache_config_set_collections'),
|
171
|
+
software_version=pulumi.get(__ret__, 'software_version'),
|
172
|
+
state=pulumi.get(__ret__, 'state'))
|
173
|
+
def get_oci_cache_config_sets_output(compartment_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
174
|
+
display_name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
175
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetOciCacheConfigSetsFilterArgs', 'GetOciCacheConfigSetsFilterArgsDict']]]]] = None,
|
176
|
+
id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
177
|
+
software_version: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
178
|
+
state: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
179
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOciCacheConfigSetsResult]:
|
180
|
+
"""
|
181
|
+
This data source provides the list of Oci Cache Config Sets in Oracle Cloud Infrastructure Redis service.
|
182
|
+
|
183
|
+
Lists the Oracle Cloud Infrastructure Cache Config Sets in the specified compartment.
|
184
|
+
|
185
|
+
## Example Usage
|
186
|
+
|
187
|
+
```python
|
188
|
+
import pulumi
|
189
|
+
import pulumi_oci as oci
|
190
|
+
|
191
|
+
test_oci_cache_config_sets = oci.Redis.get_oci_cache_config_sets(compartment_id=compartment_id,
|
192
|
+
display_name=oci_cache_config_set_display_name,
|
193
|
+
id=oci_cache_config_set_id,
|
194
|
+
software_version=oci_cache_config_set_software_version,
|
195
|
+
state=oci_cache_config_set_state)
|
196
|
+
```
|
197
|
+
|
198
|
+
|
199
|
+
:param _builtins.str compartment_id: The ID of the compartment in which to list resources.
|
200
|
+
:param _builtins.str display_name: A filter to return only resources that match the entire display name given.
|
201
|
+
:param _builtins.str id: Unique Oracle Cloud Infrastructure Cache Config Set identifier.
|
202
|
+
:param _builtins.str software_version: A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
|
203
|
+
:param _builtins.str state: A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose lifecycle state matches with the given lifecycle state.
|
204
|
+
"""
|
205
|
+
__args__ = dict()
|
206
|
+
__args__['compartmentId'] = compartment_id
|
207
|
+
__args__['displayName'] = display_name
|
208
|
+
__args__['filters'] = filters
|
209
|
+
__args__['id'] = id
|
210
|
+
__args__['softwareVersion'] = software_version
|
211
|
+
__args__['state'] = state
|
212
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
213
|
+
__ret__ = pulumi.runtime.invoke_output('oci:Redis/getOciCacheConfigSets:getOciCacheConfigSets', __args__, opts=opts, typ=GetOciCacheConfigSetsResult)
|
214
|
+
return __ret__.apply(lambda __response__: GetOciCacheConfigSetsResult(
|
215
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
216
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
217
|
+
filters=pulumi.get(__response__, 'filters'),
|
218
|
+
id=pulumi.get(__response__, 'id'),
|
219
|
+
oci_cache_config_set_collections=pulumi.get(__response__, 'oci_cache_config_set_collections'),
|
220
|
+
software_version=pulumi.get(__response__, 'software_version'),
|
221
|
+
state=pulumi.get(__response__, 'state')))
|
@@ -0,0 +1,217 @@
|
|
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 as _builtins
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
|
18
|
+
__all__ = [
|
19
|
+
'GetOciCacheDefaultConfigSetResult',
|
20
|
+
'AwaitableGetOciCacheDefaultConfigSetResult',
|
21
|
+
'get_oci_cache_default_config_set',
|
22
|
+
'get_oci_cache_default_config_set_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetOciCacheDefaultConfigSetResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getOciCacheDefaultConfigSet.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, compartment_id=None, default_configuration_details=None, description=None, display_name=None, id=None, oci_cache_default_config_set_id=None, software_version=None, state=None, time_created=None):
|
31
|
+
if compartment_id and not isinstance(compartment_id, str):
|
32
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
33
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
34
|
+
if default_configuration_details and not isinstance(default_configuration_details, list):
|
35
|
+
raise TypeError("Expected argument 'default_configuration_details' to be a list")
|
36
|
+
pulumi.set(__self__, "default_configuration_details", default_configuration_details)
|
37
|
+
if description and not isinstance(description, str):
|
38
|
+
raise TypeError("Expected argument 'description' to be a str")
|
39
|
+
pulumi.set(__self__, "description", description)
|
40
|
+
if display_name and not isinstance(display_name, str):
|
41
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
42
|
+
pulumi.set(__self__, "display_name", display_name)
|
43
|
+
if id and not isinstance(id, str):
|
44
|
+
raise TypeError("Expected argument 'id' to be a str")
|
45
|
+
pulumi.set(__self__, "id", id)
|
46
|
+
if oci_cache_default_config_set_id and not isinstance(oci_cache_default_config_set_id, str):
|
47
|
+
raise TypeError("Expected argument 'oci_cache_default_config_set_id' to be a str")
|
48
|
+
pulumi.set(__self__, "oci_cache_default_config_set_id", oci_cache_default_config_set_id)
|
49
|
+
if software_version and not isinstance(software_version, str):
|
50
|
+
raise TypeError("Expected argument 'software_version' to be a str")
|
51
|
+
pulumi.set(__self__, "software_version", software_version)
|
52
|
+
if state and not isinstance(state, str):
|
53
|
+
raise TypeError("Expected argument 'state' to be a str")
|
54
|
+
pulumi.set(__self__, "state", state)
|
55
|
+
if time_created and not isinstance(time_created, str):
|
56
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
57
|
+
pulumi.set(__self__, "time_created", time_created)
|
58
|
+
|
59
|
+
@_builtins.property
|
60
|
+
@pulumi.getter(name="compartmentId")
|
61
|
+
def compartment_id(self) -> _builtins.str:
|
62
|
+
return pulumi.get(self, "compartment_id")
|
63
|
+
|
64
|
+
@_builtins.property
|
65
|
+
@pulumi.getter(name="defaultConfigurationDetails")
|
66
|
+
def default_configuration_details(self) -> Sequence['outputs.GetOciCacheDefaultConfigSetDefaultConfigurationDetailResult']:
|
67
|
+
"""
|
68
|
+
List of Oracle Cloud Infrastructure Cache Default Config Set Values.
|
69
|
+
"""
|
70
|
+
return pulumi.get(self, "default_configuration_details")
|
71
|
+
|
72
|
+
@_builtins.property
|
73
|
+
@pulumi.getter
|
74
|
+
def description(self) -> _builtins.str:
|
75
|
+
"""
|
76
|
+
Description of the Oracle Cloud Infrastructure Cache Default Config Set.
|
77
|
+
"""
|
78
|
+
return pulumi.get(self, "description")
|
79
|
+
|
80
|
+
@_builtins.property
|
81
|
+
@pulumi.getter(name="displayName")
|
82
|
+
def display_name(self) -> _builtins.str:
|
83
|
+
"""
|
84
|
+
A user-friendly name of the Oracle Cloud Infrastructure Cache Default Config Set.
|
85
|
+
"""
|
86
|
+
return pulumi.get(self, "display_name")
|
87
|
+
|
88
|
+
@_builtins.property
|
89
|
+
@pulumi.getter
|
90
|
+
def id(self) -> _builtins.str:
|
91
|
+
"""
|
92
|
+
The provider-assigned unique ID for this managed resource.
|
93
|
+
"""
|
94
|
+
return pulumi.get(self, "id")
|
95
|
+
|
96
|
+
@_builtins.property
|
97
|
+
@pulumi.getter(name="ociCacheDefaultConfigSetId")
|
98
|
+
def oci_cache_default_config_set_id(self) -> _builtins.str:
|
99
|
+
return pulumi.get(self, "oci_cache_default_config_set_id")
|
100
|
+
|
101
|
+
@_builtins.property
|
102
|
+
@pulumi.getter(name="softwareVersion")
|
103
|
+
def software_version(self) -> _builtins.str:
|
104
|
+
"""
|
105
|
+
The engine version of the Oracle Cloud Infrastructure Cache Default Config Set.
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "software_version")
|
108
|
+
|
109
|
+
@_builtins.property
|
110
|
+
@pulumi.getter
|
111
|
+
def state(self) -> _builtins.str:
|
112
|
+
"""
|
113
|
+
The current state of the Oracle Cloud Infrastructure Cache Default Config Set.
|
114
|
+
"""
|
115
|
+
return pulumi.get(self, "state")
|
116
|
+
|
117
|
+
@_builtins.property
|
118
|
+
@pulumi.getter(name="timeCreated")
|
119
|
+
def time_created(self) -> _builtins.str:
|
120
|
+
"""
|
121
|
+
The date and time the Oracle Cloud Infrastructure Cache Default Config Set was created. An [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string.
|
122
|
+
"""
|
123
|
+
return pulumi.get(self, "time_created")
|
124
|
+
|
125
|
+
|
126
|
+
class AwaitableGetOciCacheDefaultConfigSetResult(GetOciCacheDefaultConfigSetResult):
|
127
|
+
# pylint: disable=using-constant-test
|
128
|
+
def __await__(self):
|
129
|
+
if False:
|
130
|
+
yield self
|
131
|
+
return GetOciCacheDefaultConfigSetResult(
|
132
|
+
compartment_id=self.compartment_id,
|
133
|
+
default_configuration_details=self.default_configuration_details,
|
134
|
+
description=self.description,
|
135
|
+
display_name=self.display_name,
|
136
|
+
id=self.id,
|
137
|
+
oci_cache_default_config_set_id=self.oci_cache_default_config_set_id,
|
138
|
+
software_version=self.software_version,
|
139
|
+
state=self.state,
|
140
|
+
time_created=self.time_created)
|
141
|
+
|
142
|
+
|
143
|
+
def get_oci_cache_default_config_set(compartment_id: Optional[_builtins.str] = None,
|
144
|
+
oci_cache_default_config_set_id: Optional[_builtins.str] = None,
|
145
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOciCacheDefaultConfigSetResult:
|
146
|
+
"""
|
147
|
+
This data source provides details about a specific Oci Cache Default Config Set resource in Oracle Cloud Infrastructure Redis service.
|
148
|
+
|
149
|
+
Retrieves the specified Oracle Cloud Infrastructure Cache Default Config Set.
|
150
|
+
|
151
|
+
## Example Usage
|
152
|
+
|
153
|
+
```python
|
154
|
+
import pulumi
|
155
|
+
import pulumi_oci as oci
|
156
|
+
|
157
|
+
test_oci_cache_default_config_set = oci.Redis.get_oci_cache_default_config_set(compartment_id=compartment_id,
|
158
|
+
oci_cache_default_config_set_id=test_oci_cache_default_config_set_oci_redis_oci_cache_default_config_set["id"])
|
159
|
+
```
|
160
|
+
|
161
|
+
|
162
|
+
:param _builtins.str compartment_id: The unique identifier for the compartment.
|
163
|
+
:param _builtins.str oci_cache_default_config_set_id: Unique Oracle Cloud Infrastructure Cache Default Config Set identifier.
|
164
|
+
"""
|
165
|
+
__args__ = dict()
|
166
|
+
__args__['compartmentId'] = compartment_id
|
167
|
+
__args__['ociCacheDefaultConfigSetId'] = oci_cache_default_config_set_id
|
168
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
169
|
+
__ret__ = pulumi.runtime.invoke('oci:Redis/getOciCacheDefaultConfigSet:getOciCacheDefaultConfigSet', __args__, opts=opts, typ=GetOciCacheDefaultConfigSetResult).value
|
170
|
+
|
171
|
+
return AwaitableGetOciCacheDefaultConfigSetResult(
|
172
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
173
|
+
default_configuration_details=pulumi.get(__ret__, 'default_configuration_details'),
|
174
|
+
description=pulumi.get(__ret__, 'description'),
|
175
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
176
|
+
id=pulumi.get(__ret__, 'id'),
|
177
|
+
oci_cache_default_config_set_id=pulumi.get(__ret__, 'oci_cache_default_config_set_id'),
|
178
|
+
software_version=pulumi.get(__ret__, 'software_version'),
|
179
|
+
state=pulumi.get(__ret__, 'state'),
|
180
|
+
time_created=pulumi.get(__ret__, 'time_created'))
|
181
|
+
def get_oci_cache_default_config_set_output(compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
182
|
+
oci_cache_default_config_set_id: Optional[pulumi.Input[_builtins.str]] = None,
|
183
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOciCacheDefaultConfigSetResult]:
|
184
|
+
"""
|
185
|
+
This data source provides details about a specific Oci Cache Default Config Set resource in Oracle Cloud Infrastructure Redis service.
|
186
|
+
|
187
|
+
Retrieves the specified Oracle Cloud Infrastructure Cache Default Config Set.
|
188
|
+
|
189
|
+
## Example Usage
|
190
|
+
|
191
|
+
```python
|
192
|
+
import pulumi
|
193
|
+
import pulumi_oci as oci
|
194
|
+
|
195
|
+
test_oci_cache_default_config_set = oci.Redis.get_oci_cache_default_config_set(compartment_id=compartment_id,
|
196
|
+
oci_cache_default_config_set_id=test_oci_cache_default_config_set_oci_redis_oci_cache_default_config_set["id"])
|
197
|
+
```
|
198
|
+
|
199
|
+
|
200
|
+
:param _builtins.str compartment_id: The unique identifier for the compartment.
|
201
|
+
:param _builtins.str oci_cache_default_config_set_id: Unique Oracle Cloud Infrastructure Cache Default Config Set identifier.
|
202
|
+
"""
|
203
|
+
__args__ = dict()
|
204
|
+
__args__['compartmentId'] = compartment_id
|
205
|
+
__args__['ociCacheDefaultConfigSetId'] = oci_cache_default_config_set_id
|
206
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
207
|
+
__ret__ = pulumi.runtime.invoke_output('oci:Redis/getOciCacheDefaultConfigSet:getOciCacheDefaultConfigSet', __args__, opts=opts, typ=GetOciCacheDefaultConfigSetResult)
|
208
|
+
return __ret__.apply(lambda __response__: GetOciCacheDefaultConfigSetResult(
|
209
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
210
|
+
default_configuration_details=pulumi.get(__response__, 'default_configuration_details'),
|
211
|
+
description=pulumi.get(__response__, 'description'),
|
212
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
213
|
+
id=pulumi.get(__response__, 'id'),
|
214
|
+
oci_cache_default_config_set_id=pulumi.get(__response__, 'oci_cache_default_config_set_id'),
|
215
|
+
software_version=pulumi.get(__response__, 'software_version'),
|
216
|
+
state=pulumi.get(__response__, 'state'),
|
217
|
+
time_created=pulumi.get(__response__, 'time_created')))
|
@@ -0,0 +1,218 @@
|
|
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 as _builtins
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
18
|
+
|
19
|
+
__all__ = [
|
20
|
+
'GetOciCacheDefaultConfigSetsResult',
|
21
|
+
'AwaitableGetOciCacheDefaultConfigSetsResult',
|
22
|
+
'get_oci_cache_default_config_sets',
|
23
|
+
'get_oci_cache_default_config_sets_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetOciCacheDefaultConfigSetsResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getOciCacheDefaultConfigSets.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, compartment_id=None, display_name=None, filters=None, id=None, oci_cache_default_config_set_collections=None, software_version=None, state=None):
|
32
|
+
if compartment_id and not isinstance(compartment_id, str):
|
33
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
35
|
+
if display_name and not isinstance(display_name, str):
|
36
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
37
|
+
pulumi.set(__self__, "display_name", display_name)
|
38
|
+
if filters and not isinstance(filters, list):
|
39
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
40
|
+
pulumi.set(__self__, "filters", filters)
|
41
|
+
if id and not isinstance(id, str):
|
42
|
+
raise TypeError("Expected argument 'id' to be a str")
|
43
|
+
pulumi.set(__self__, "id", id)
|
44
|
+
if oci_cache_default_config_set_collections and not isinstance(oci_cache_default_config_set_collections, list):
|
45
|
+
raise TypeError("Expected argument 'oci_cache_default_config_set_collections' to be a list")
|
46
|
+
pulumi.set(__self__, "oci_cache_default_config_set_collections", oci_cache_default_config_set_collections)
|
47
|
+
if software_version and not isinstance(software_version, str):
|
48
|
+
raise TypeError("Expected argument 'software_version' to be a str")
|
49
|
+
pulumi.set(__self__, "software_version", software_version)
|
50
|
+
if state and not isinstance(state, str):
|
51
|
+
raise TypeError("Expected argument 'state' to be a str")
|
52
|
+
pulumi.set(__self__, "state", state)
|
53
|
+
|
54
|
+
@_builtins.property
|
55
|
+
@pulumi.getter(name="compartmentId")
|
56
|
+
def compartment_id(self) -> _builtins.str:
|
57
|
+
return pulumi.get(self, "compartment_id")
|
58
|
+
|
59
|
+
@_builtins.property
|
60
|
+
@pulumi.getter(name="displayName")
|
61
|
+
def display_name(self) -> Optional[_builtins.str]:
|
62
|
+
"""
|
63
|
+
A user-friendly name of the Oracle Cloud Infrastructure Cache Default Config Set.
|
64
|
+
"""
|
65
|
+
return pulumi.get(self, "display_name")
|
66
|
+
|
67
|
+
@_builtins.property
|
68
|
+
@pulumi.getter
|
69
|
+
def filters(self) -> Optional[Sequence['outputs.GetOciCacheDefaultConfigSetsFilterResult']]:
|
70
|
+
return pulumi.get(self, "filters")
|
71
|
+
|
72
|
+
@_builtins.property
|
73
|
+
@pulumi.getter
|
74
|
+
def id(self) -> Optional[_builtins.str]:
|
75
|
+
"""
|
76
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Oracle Cloud Infrastructure Cache Default Config Set.
|
77
|
+
"""
|
78
|
+
return pulumi.get(self, "id")
|
79
|
+
|
80
|
+
@_builtins.property
|
81
|
+
@pulumi.getter(name="ociCacheDefaultConfigSetCollections")
|
82
|
+
def oci_cache_default_config_set_collections(self) -> Sequence['outputs.GetOciCacheDefaultConfigSetsOciCacheDefaultConfigSetCollectionResult']:
|
83
|
+
"""
|
84
|
+
The list of oci_cache_default_config_set_collection.
|
85
|
+
"""
|
86
|
+
return pulumi.get(self, "oci_cache_default_config_set_collections")
|
87
|
+
|
88
|
+
@_builtins.property
|
89
|
+
@pulumi.getter(name="softwareVersion")
|
90
|
+
def software_version(self) -> Optional[_builtins.str]:
|
91
|
+
"""
|
92
|
+
The engine version of the Oracle Cloud Infrastructure Cache Default Config Set.
|
93
|
+
"""
|
94
|
+
return pulumi.get(self, "software_version")
|
95
|
+
|
96
|
+
@_builtins.property
|
97
|
+
@pulumi.getter
|
98
|
+
def state(self) -> Optional[_builtins.str]:
|
99
|
+
"""
|
100
|
+
The current state of the Oracle Cloud Infrastructure Cache Default Config Set.
|
101
|
+
"""
|
102
|
+
return pulumi.get(self, "state")
|
103
|
+
|
104
|
+
|
105
|
+
class AwaitableGetOciCacheDefaultConfigSetsResult(GetOciCacheDefaultConfigSetsResult):
|
106
|
+
# pylint: disable=using-constant-test
|
107
|
+
def __await__(self):
|
108
|
+
if False:
|
109
|
+
yield self
|
110
|
+
return GetOciCacheDefaultConfigSetsResult(
|
111
|
+
compartment_id=self.compartment_id,
|
112
|
+
display_name=self.display_name,
|
113
|
+
filters=self.filters,
|
114
|
+
id=self.id,
|
115
|
+
oci_cache_default_config_set_collections=self.oci_cache_default_config_set_collections,
|
116
|
+
software_version=self.software_version,
|
117
|
+
state=self.state)
|
118
|
+
|
119
|
+
|
120
|
+
def get_oci_cache_default_config_sets(compartment_id: Optional[_builtins.str] = None,
|
121
|
+
display_name: Optional[_builtins.str] = None,
|
122
|
+
filters: Optional[Sequence[Union['GetOciCacheDefaultConfigSetsFilterArgs', 'GetOciCacheDefaultConfigSetsFilterArgsDict']]] = None,
|
123
|
+
id: Optional[_builtins.str] = None,
|
124
|
+
software_version: Optional[_builtins.str] = None,
|
125
|
+
state: Optional[_builtins.str] = None,
|
126
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOciCacheDefaultConfigSetsResult:
|
127
|
+
"""
|
128
|
+
This data source provides the list of Oci Cache Default Config Sets in Oracle Cloud Infrastructure Redis service.
|
129
|
+
|
130
|
+
Lists the Oracle Cloud Infrastructure Cache Default Config Sets in the specified compartment.
|
131
|
+
|
132
|
+
## Example Usage
|
133
|
+
|
134
|
+
```python
|
135
|
+
import pulumi
|
136
|
+
import pulumi_oci as oci
|
137
|
+
|
138
|
+
test_oci_cache_default_config_sets = oci.Redis.get_oci_cache_default_config_sets(compartment_id=compartment_id,
|
139
|
+
display_name=oci_cache_default_config_set_display_name,
|
140
|
+
id=oci_cache_default_config_set_id,
|
141
|
+
software_version=oci_cache_default_config_set_software_version,
|
142
|
+
state=oci_cache_default_config_set_state)
|
143
|
+
```
|
144
|
+
|
145
|
+
|
146
|
+
:param _builtins.str compartment_id: The unique identifier for the compartment.
|
147
|
+
:param _builtins.str display_name: A filter to return only resources that match the entire display name given.
|
148
|
+
:param _builtins.str id: Unique Oracle Cloud Infrastructure Cache Default Config Set identifier.
|
149
|
+
:param _builtins.str software_version: A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
|
150
|
+
:param _builtins.str state: A filter to return the Oracle Cloud Infrastructure Cache Default Config Set resources, whose lifecycle state matches with the given lifecycle state.
|
151
|
+
"""
|
152
|
+
__args__ = dict()
|
153
|
+
__args__['compartmentId'] = compartment_id
|
154
|
+
__args__['displayName'] = display_name
|
155
|
+
__args__['filters'] = filters
|
156
|
+
__args__['id'] = id
|
157
|
+
__args__['softwareVersion'] = software_version
|
158
|
+
__args__['state'] = state
|
159
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
160
|
+
__ret__ = pulumi.runtime.invoke('oci:Redis/getOciCacheDefaultConfigSets:getOciCacheDefaultConfigSets', __args__, opts=opts, typ=GetOciCacheDefaultConfigSetsResult).value
|
161
|
+
|
162
|
+
return AwaitableGetOciCacheDefaultConfigSetsResult(
|
163
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
164
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
165
|
+
filters=pulumi.get(__ret__, 'filters'),
|
166
|
+
id=pulumi.get(__ret__, 'id'),
|
167
|
+
oci_cache_default_config_set_collections=pulumi.get(__ret__, 'oci_cache_default_config_set_collections'),
|
168
|
+
software_version=pulumi.get(__ret__, 'software_version'),
|
169
|
+
state=pulumi.get(__ret__, 'state'))
|
170
|
+
def get_oci_cache_default_config_sets_output(compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
171
|
+
display_name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
172
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetOciCacheDefaultConfigSetsFilterArgs', 'GetOciCacheDefaultConfigSetsFilterArgsDict']]]]] = None,
|
173
|
+
id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
174
|
+
software_version: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
175
|
+
state: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
176
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOciCacheDefaultConfigSetsResult]:
|
177
|
+
"""
|
178
|
+
This data source provides the list of Oci Cache Default Config Sets in Oracle Cloud Infrastructure Redis service.
|
179
|
+
|
180
|
+
Lists the Oracle Cloud Infrastructure Cache Default Config Sets in the specified compartment.
|
181
|
+
|
182
|
+
## Example Usage
|
183
|
+
|
184
|
+
```python
|
185
|
+
import pulumi
|
186
|
+
import pulumi_oci as oci
|
187
|
+
|
188
|
+
test_oci_cache_default_config_sets = oci.Redis.get_oci_cache_default_config_sets(compartment_id=compartment_id,
|
189
|
+
display_name=oci_cache_default_config_set_display_name,
|
190
|
+
id=oci_cache_default_config_set_id,
|
191
|
+
software_version=oci_cache_default_config_set_software_version,
|
192
|
+
state=oci_cache_default_config_set_state)
|
193
|
+
```
|
194
|
+
|
195
|
+
|
196
|
+
:param _builtins.str compartment_id: The unique identifier for the compartment.
|
197
|
+
:param _builtins.str display_name: A filter to return only resources that match the entire display name given.
|
198
|
+
:param _builtins.str id: Unique Oracle Cloud Infrastructure Cache Default Config Set identifier.
|
199
|
+
:param _builtins.str software_version: A filter to return the Oracle Cloud Infrastructure Cache Config Set resources, whose software version matches with the given software version.
|
200
|
+
:param _builtins.str state: A filter to return the Oracle Cloud Infrastructure Cache Default Config Set resources, whose lifecycle state matches with the given lifecycle state.
|
201
|
+
"""
|
202
|
+
__args__ = dict()
|
203
|
+
__args__['compartmentId'] = compartment_id
|
204
|
+
__args__['displayName'] = display_name
|
205
|
+
__args__['filters'] = filters
|
206
|
+
__args__['id'] = id
|
207
|
+
__args__['softwareVersion'] = software_version
|
208
|
+
__args__['state'] = state
|
209
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
210
|
+
__ret__ = pulumi.runtime.invoke_output('oci:Redis/getOciCacheDefaultConfigSets:getOciCacheDefaultConfigSets', __args__, opts=opts, typ=GetOciCacheDefaultConfigSetsResult)
|
211
|
+
return __ret__.apply(lambda __response__: GetOciCacheDefaultConfigSetsResult(
|
212
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
213
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
214
|
+
filters=pulumi.get(__response__, 'filters'),
|
215
|
+
id=pulumi.get(__response__, 'id'),
|
216
|
+
oci_cache_default_config_set_collections=pulumi.get(__response__, 'oci_cache_default_config_set_collections'),
|
217
|
+
software_version=pulumi.get(__response__, 'software_version'),
|
218
|
+
state=pulumi.get(__response__, 'state')))
|