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
pulumi_oci/apmtraces/__init__.py
CHANGED
@@ -6,9 +6,14 @@ import builtins as _builtins
|
|
6
6
|
from .. import _utilities
|
7
7
|
import typing
|
8
8
|
# Export this package's modules as members:
|
9
|
+
from .get_attribute_auto_activate_status import *
|
10
|
+
from .get_log import *
|
9
11
|
from .get_query_quick_picks import *
|
12
|
+
from .get_scheduled_queries import *
|
13
|
+
from .get_scheduled_query import *
|
10
14
|
from .get_trace import *
|
11
15
|
from .get_trace_aggregated_snapshot_data import *
|
12
16
|
from .get_trace_snapshot_data import *
|
17
|
+
from .scheduled_query import *
|
13
18
|
from ._inputs import *
|
14
19
|
from . import outputs
|
pulumi_oci/apmtraces/_inputs.py
CHANGED
@@ -15,12 +15,369 @@ else:
|
|
15
15
|
from .. import _utilities
|
16
16
|
|
17
17
|
__all__ = [
|
18
|
+
'ScheduledQueryScheduledQueryProcessingConfigurationArgs',
|
19
|
+
'ScheduledQueryScheduledQueryProcessingConfigurationArgsDict',
|
20
|
+
'ScheduledQueryScheduledQueryProcessingConfigurationCustomMetricArgs',
|
21
|
+
'ScheduledQueryScheduledQueryProcessingConfigurationCustomMetricArgsDict',
|
22
|
+
'ScheduledQueryScheduledQueryProcessingConfigurationObjectStorageArgs',
|
23
|
+
'ScheduledQueryScheduledQueryProcessingConfigurationObjectStorageArgsDict',
|
24
|
+
'ScheduledQueryScheduledQueryProcessingConfigurationStreamingArgs',
|
25
|
+
'ScheduledQueryScheduledQueryProcessingConfigurationStreamingArgsDict',
|
18
26
|
'GetQueryQuickPicksFilterArgs',
|
19
27
|
'GetQueryQuickPicksFilterArgsDict',
|
28
|
+
'GetScheduledQueriesFilterArgs',
|
29
|
+
'GetScheduledQueriesFilterArgsDict',
|
20
30
|
]
|
21
31
|
|
22
32
|
MYPY = False
|
23
33
|
|
34
|
+
if not MYPY:
|
35
|
+
class ScheduledQueryScheduledQueryProcessingConfigurationArgsDict(TypedDict):
|
36
|
+
custom_metric: NotRequired[pulumi.Input['ScheduledQueryScheduledQueryProcessingConfigurationCustomMetricArgsDict']]
|
37
|
+
"""
|
38
|
+
(Updatable) Definition of the Custom Metric.
|
39
|
+
"""
|
40
|
+
object_storage: NotRequired[pulumi.Input['ScheduledQueryScheduledQueryProcessingConfigurationObjectStorageArgsDict']]
|
41
|
+
"""
|
42
|
+
(Updatable) Definition of the object storage.
|
43
|
+
"""
|
44
|
+
streaming: NotRequired[pulumi.Input['ScheduledQueryScheduledQueryProcessingConfigurationStreamingArgsDict']]
|
45
|
+
"""
|
46
|
+
(Updatable) Definition of the Stream.
|
47
|
+
"""
|
48
|
+
elif False:
|
49
|
+
ScheduledQueryScheduledQueryProcessingConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
50
|
+
|
51
|
+
@pulumi.input_type
|
52
|
+
class ScheduledQueryScheduledQueryProcessingConfigurationArgs:
|
53
|
+
def __init__(__self__, *,
|
54
|
+
custom_metric: Optional[pulumi.Input['ScheduledQueryScheduledQueryProcessingConfigurationCustomMetricArgs']] = None,
|
55
|
+
object_storage: Optional[pulumi.Input['ScheduledQueryScheduledQueryProcessingConfigurationObjectStorageArgs']] = None,
|
56
|
+
streaming: Optional[pulumi.Input['ScheduledQueryScheduledQueryProcessingConfigurationStreamingArgs']] = None):
|
57
|
+
"""
|
58
|
+
:param pulumi.Input['ScheduledQueryScheduledQueryProcessingConfigurationCustomMetricArgs'] custom_metric: (Updatable) Definition of the Custom Metric.
|
59
|
+
:param pulumi.Input['ScheduledQueryScheduledQueryProcessingConfigurationObjectStorageArgs'] object_storage: (Updatable) Definition of the object storage.
|
60
|
+
:param pulumi.Input['ScheduledQueryScheduledQueryProcessingConfigurationStreamingArgs'] streaming: (Updatable) Definition of the Stream.
|
61
|
+
"""
|
62
|
+
if custom_metric is not None:
|
63
|
+
pulumi.set(__self__, "custom_metric", custom_metric)
|
64
|
+
if object_storage is not None:
|
65
|
+
pulumi.set(__self__, "object_storage", object_storage)
|
66
|
+
if streaming is not None:
|
67
|
+
pulumi.set(__self__, "streaming", streaming)
|
68
|
+
|
69
|
+
@_builtins.property
|
70
|
+
@pulumi.getter(name="customMetric")
|
71
|
+
def custom_metric(self) -> Optional[pulumi.Input['ScheduledQueryScheduledQueryProcessingConfigurationCustomMetricArgs']]:
|
72
|
+
"""
|
73
|
+
(Updatable) Definition of the Custom Metric.
|
74
|
+
"""
|
75
|
+
return pulumi.get(self, "custom_metric")
|
76
|
+
|
77
|
+
@custom_metric.setter
|
78
|
+
def custom_metric(self, value: Optional[pulumi.Input['ScheduledQueryScheduledQueryProcessingConfigurationCustomMetricArgs']]):
|
79
|
+
pulumi.set(self, "custom_metric", value)
|
80
|
+
|
81
|
+
@_builtins.property
|
82
|
+
@pulumi.getter(name="objectStorage")
|
83
|
+
def object_storage(self) -> Optional[pulumi.Input['ScheduledQueryScheduledQueryProcessingConfigurationObjectStorageArgs']]:
|
84
|
+
"""
|
85
|
+
(Updatable) Definition of the object storage.
|
86
|
+
"""
|
87
|
+
return pulumi.get(self, "object_storage")
|
88
|
+
|
89
|
+
@object_storage.setter
|
90
|
+
def object_storage(self, value: Optional[pulumi.Input['ScheduledQueryScheduledQueryProcessingConfigurationObjectStorageArgs']]):
|
91
|
+
pulumi.set(self, "object_storage", value)
|
92
|
+
|
93
|
+
@_builtins.property
|
94
|
+
@pulumi.getter
|
95
|
+
def streaming(self) -> Optional[pulumi.Input['ScheduledQueryScheduledQueryProcessingConfigurationStreamingArgs']]:
|
96
|
+
"""
|
97
|
+
(Updatable) Definition of the Stream.
|
98
|
+
"""
|
99
|
+
return pulumi.get(self, "streaming")
|
100
|
+
|
101
|
+
@streaming.setter
|
102
|
+
def streaming(self, value: Optional[pulumi.Input['ScheduledQueryScheduledQueryProcessingConfigurationStreamingArgs']]):
|
103
|
+
pulumi.set(self, "streaming", value)
|
104
|
+
|
105
|
+
|
106
|
+
if not MYPY:
|
107
|
+
class ScheduledQueryScheduledQueryProcessingConfigurationCustomMetricArgsDict(TypedDict):
|
108
|
+
name: pulumi.Input[_builtins.str]
|
109
|
+
"""
|
110
|
+
(Updatable) Name of the Custom Metric.
|
111
|
+
"""
|
112
|
+
compartment: NotRequired[pulumi.Input[_builtins.str]]
|
113
|
+
"""
|
114
|
+
(Updatable) Compartment of the Monitoring Service. It defaults to the APM domain's compartment if not specified. If specified, the necessary Oracle Cloud Infrastructure policies should be set to allow APM to write to that compartment.
|
115
|
+
"""
|
116
|
+
description: NotRequired[pulumi.Input[_builtins.str]]
|
117
|
+
"""
|
118
|
+
(Updatable) Description of the Custom Metric.
|
119
|
+
"""
|
120
|
+
is_anomaly_detection_enabled: NotRequired[pulumi.Input[_builtins.bool]]
|
121
|
+
"""
|
122
|
+
(Updatable) Indicates whether anomaly Detection should be performed on the generated metric.
|
123
|
+
"""
|
124
|
+
is_metric_published: NotRequired[pulumi.Input[_builtins.bool]]
|
125
|
+
"""
|
126
|
+
(Updatable) Used in conjunction with the dry run header. When the dry run header is set and the isPublishMetric flag is set to true, the scheduled query is not created, but validations happen to check if the right Oracle Cloud Infrastructure policies have been set to write to the specified namespace/compartment.
|
127
|
+
"""
|
128
|
+
namespace: NotRequired[pulumi.Input[_builtins.str]]
|
129
|
+
"""
|
130
|
+
(Updatable) Namespace in the Custom Metric. It defaults to `oracle_apm_custom` if not specified. If specified, the necessary Oracle Cloud Infrastructure policies should be set to allow APM to write to that namespace.
|
131
|
+
"""
|
132
|
+
resource_group: NotRequired[pulumi.Input[_builtins.str]]
|
133
|
+
"""
|
134
|
+
(Updatable) Resource Group of the Custom Metric.
|
135
|
+
"""
|
136
|
+
unit: NotRequired[pulumi.Input[_builtins.str]]
|
137
|
+
"""
|
138
|
+
(Updatable) Unit in which the metric value is reported. For example 'ms'.
|
139
|
+
"""
|
140
|
+
elif False:
|
141
|
+
ScheduledQueryScheduledQueryProcessingConfigurationCustomMetricArgsDict: TypeAlias = Mapping[str, Any]
|
142
|
+
|
143
|
+
@pulumi.input_type
|
144
|
+
class ScheduledQueryScheduledQueryProcessingConfigurationCustomMetricArgs:
|
145
|
+
def __init__(__self__, *,
|
146
|
+
name: pulumi.Input[_builtins.str],
|
147
|
+
compartment: Optional[pulumi.Input[_builtins.str]] = None,
|
148
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
149
|
+
is_anomaly_detection_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
150
|
+
is_metric_published: Optional[pulumi.Input[_builtins.bool]] = None,
|
151
|
+
namespace: Optional[pulumi.Input[_builtins.str]] = None,
|
152
|
+
resource_group: Optional[pulumi.Input[_builtins.str]] = None,
|
153
|
+
unit: Optional[pulumi.Input[_builtins.str]] = None):
|
154
|
+
"""
|
155
|
+
:param pulumi.Input[_builtins.str] name: (Updatable) Name of the Custom Metric.
|
156
|
+
:param pulumi.Input[_builtins.str] compartment: (Updatable) Compartment of the Monitoring Service. It defaults to the APM domain's compartment if not specified. If specified, the necessary Oracle Cloud Infrastructure policies should be set to allow APM to write to that compartment.
|
157
|
+
:param pulumi.Input[_builtins.str] description: (Updatable) Description of the Custom Metric.
|
158
|
+
:param pulumi.Input[_builtins.bool] is_anomaly_detection_enabled: (Updatable) Indicates whether anomaly Detection should be performed on the generated metric.
|
159
|
+
:param pulumi.Input[_builtins.bool] is_metric_published: (Updatable) Used in conjunction with the dry run header. When the dry run header is set and the isPublishMetric flag is set to true, the scheduled query is not created, but validations happen to check if the right Oracle Cloud Infrastructure policies have been set to write to the specified namespace/compartment.
|
160
|
+
:param pulumi.Input[_builtins.str] namespace: (Updatable) Namespace in the Custom Metric. It defaults to `oracle_apm_custom` if not specified. If specified, the necessary Oracle Cloud Infrastructure policies should be set to allow APM to write to that namespace.
|
161
|
+
:param pulumi.Input[_builtins.str] resource_group: (Updatable) Resource Group of the Custom Metric.
|
162
|
+
:param pulumi.Input[_builtins.str] unit: (Updatable) Unit in which the metric value is reported. For example 'ms'.
|
163
|
+
"""
|
164
|
+
pulumi.set(__self__, "name", name)
|
165
|
+
if compartment is not None:
|
166
|
+
pulumi.set(__self__, "compartment", compartment)
|
167
|
+
if description is not None:
|
168
|
+
pulumi.set(__self__, "description", description)
|
169
|
+
if is_anomaly_detection_enabled is not None:
|
170
|
+
pulumi.set(__self__, "is_anomaly_detection_enabled", is_anomaly_detection_enabled)
|
171
|
+
if is_metric_published is not None:
|
172
|
+
pulumi.set(__self__, "is_metric_published", is_metric_published)
|
173
|
+
if namespace is not None:
|
174
|
+
pulumi.set(__self__, "namespace", namespace)
|
175
|
+
if resource_group is not None:
|
176
|
+
pulumi.set(__self__, "resource_group", resource_group)
|
177
|
+
if unit is not None:
|
178
|
+
pulumi.set(__self__, "unit", unit)
|
179
|
+
|
180
|
+
@_builtins.property
|
181
|
+
@pulumi.getter
|
182
|
+
def name(self) -> pulumi.Input[_builtins.str]:
|
183
|
+
"""
|
184
|
+
(Updatable) Name of the Custom Metric.
|
185
|
+
"""
|
186
|
+
return pulumi.get(self, "name")
|
187
|
+
|
188
|
+
@name.setter
|
189
|
+
def name(self, value: pulumi.Input[_builtins.str]):
|
190
|
+
pulumi.set(self, "name", value)
|
191
|
+
|
192
|
+
@_builtins.property
|
193
|
+
@pulumi.getter
|
194
|
+
def compartment(self) -> Optional[pulumi.Input[_builtins.str]]:
|
195
|
+
"""
|
196
|
+
(Updatable) Compartment of the Monitoring Service. It defaults to the APM domain's compartment if not specified. If specified, the necessary Oracle Cloud Infrastructure policies should be set to allow APM to write to that compartment.
|
197
|
+
"""
|
198
|
+
return pulumi.get(self, "compartment")
|
199
|
+
|
200
|
+
@compartment.setter
|
201
|
+
def compartment(self, value: Optional[pulumi.Input[_builtins.str]]):
|
202
|
+
pulumi.set(self, "compartment", value)
|
203
|
+
|
204
|
+
@_builtins.property
|
205
|
+
@pulumi.getter
|
206
|
+
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
207
|
+
"""
|
208
|
+
(Updatable) Description of the Custom Metric.
|
209
|
+
"""
|
210
|
+
return pulumi.get(self, "description")
|
211
|
+
|
212
|
+
@description.setter
|
213
|
+
def description(self, value: Optional[pulumi.Input[_builtins.str]]):
|
214
|
+
pulumi.set(self, "description", value)
|
215
|
+
|
216
|
+
@_builtins.property
|
217
|
+
@pulumi.getter(name="isAnomalyDetectionEnabled")
|
218
|
+
def is_anomaly_detection_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
219
|
+
"""
|
220
|
+
(Updatable) Indicates whether anomaly Detection should be performed on the generated metric.
|
221
|
+
"""
|
222
|
+
return pulumi.get(self, "is_anomaly_detection_enabled")
|
223
|
+
|
224
|
+
@is_anomaly_detection_enabled.setter
|
225
|
+
def is_anomaly_detection_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
226
|
+
pulumi.set(self, "is_anomaly_detection_enabled", value)
|
227
|
+
|
228
|
+
@_builtins.property
|
229
|
+
@pulumi.getter(name="isMetricPublished")
|
230
|
+
def is_metric_published(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
231
|
+
"""
|
232
|
+
(Updatable) Used in conjunction with the dry run header. When the dry run header is set and the isPublishMetric flag is set to true, the scheduled query is not created, but validations happen to check if the right Oracle Cloud Infrastructure policies have been set to write to the specified namespace/compartment.
|
233
|
+
"""
|
234
|
+
return pulumi.get(self, "is_metric_published")
|
235
|
+
|
236
|
+
@is_metric_published.setter
|
237
|
+
def is_metric_published(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
238
|
+
pulumi.set(self, "is_metric_published", value)
|
239
|
+
|
240
|
+
@_builtins.property
|
241
|
+
@pulumi.getter
|
242
|
+
def namespace(self) -> Optional[pulumi.Input[_builtins.str]]:
|
243
|
+
"""
|
244
|
+
(Updatable) Namespace in the Custom Metric. It defaults to `oracle_apm_custom` if not specified. If specified, the necessary Oracle Cloud Infrastructure policies should be set to allow APM to write to that namespace.
|
245
|
+
"""
|
246
|
+
return pulumi.get(self, "namespace")
|
247
|
+
|
248
|
+
@namespace.setter
|
249
|
+
def namespace(self, value: Optional[pulumi.Input[_builtins.str]]):
|
250
|
+
pulumi.set(self, "namespace", value)
|
251
|
+
|
252
|
+
@_builtins.property
|
253
|
+
@pulumi.getter(name="resourceGroup")
|
254
|
+
def resource_group(self) -> Optional[pulumi.Input[_builtins.str]]:
|
255
|
+
"""
|
256
|
+
(Updatable) Resource Group of the Custom Metric.
|
257
|
+
"""
|
258
|
+
return pulumi.get(self, "resource_group")
|
259
|
+
|
260
|
+
@resource_group.setter
|
261
|
+
def resource_group(self, value: Optional[pulumi.Input[_builtins.str]]):
|
262
|
+
pulumi.set(self, "resource_group", value)
|
263
|
+
|
264
|
+
@_builtins.property
|
265
|
+
@pulumi.getter
|
266
|
+
def unit(self) -> Optional[pulumi.Input[_builtins.str]]:
|
267
|
+
"""
|
268
|
+
(Updatable) Unit in which the metric value is reported. For example 'ms'.
|
269
|
+
"""
|
270
|
+
return pulumi.get(self, "unit")
|
271
|
+
|
272
|
+
@unit.setter
|
273
|
+
def unit(self, value: Optional[pulumi.Input[_builtins.str]]):
|
274
|
+
pulumi.set(self, "unit", value)
|
275
|
+
|
276
|
+
|
277
|
+
if not MYPY:
|
278
|
+
class ScheduledQueryScheduledQueryProcessingConfigurationObjectStorageArgsDict(TypedDict):
|
279
|
+
bucket: NotRequired[pulumi.Input[_builtins.str]]
|
280
|
+
"""
|
281
|
+
(Updatable) Bucket name in the object store.
|
282
|
+
"""
|
283
|
+
name_space: NotRequired[pulumi.Input[_builtins.str]]
|
284
|
+
"""
|
285
|
+
(Updatable) Namespace in the object store.
|
286
|
+
"""
|
287
|
+
object_name_prefix: NotRequired[pulumi.Input[_builtins.str]]
|
288
|
+
"""
|
289
|
+
(Updatable) Object name prefix in the object store.
|
290
|
+
"""
|
291
|
+
elif False:
|
292
|
+
ScheduledQueryScheduledQueryProcessingConfigurationObjectStorageArgsDict: TypeAlias = Mapping[str, Any]
|
293
|
+
|
294
|
+
@pulumi.input_type
|
295
|
+
class ScheduledQueryScheduledQueryProcessingConfigurationObjectStorageArgs:
|
296
|
+
def __init__(__self__, *,
|
297
|
+
bucket: Optional[pulumi.Input[_builtins.str]] = None,
|
298
|
+
name_space: Optional[pulumi.Input[_builtins.str]] = None,
|
299
|
+
object_name_prefix: Optional[pulumi.Input[_builtins.str]] = None):
|
300
|
+
"""
|
301
|
+
:param pulumi.Input[_builtins.str] bucket: (Updatable) Bucket name in the object store.
|
302
|
+
:param pulumi.Input[_builtins.str] name_space: (Updatable) Namespace in the object store.
|
303
|
+
:param pulumi.Input[_builtins.str] object_name_prefix: (Updatable) Object name prefix in the object store.
|
304
|
+
"""
|
305
|
+
if bucket is not None:
|
306
|
+
pulumi.set(__self__, "bucket", bucket)
|
307
|
+
if name_space is not None:
|
308
|
+
pulumi.set(__self__, "name_space", name_space)
|
309
|
+
if object_name_prefix is not None:
|
310
|
+
pulumi.set(__self__, "object_name_prefix", object_name_prefix)
|
311
|
+
|
312
|
+
@_builtins.property
|
313
|
+
@pulumi.getter
|
314
|
+
def bucket(self) -> Optional[pulumi.Input[_builtins.str]]:
|
315
|
+
"""
|
316
|
+
(Updatable) Bucket name in the object store.
|
317
|
+
"""
|
318
|
+
return pulumi.get(self, "bucket")
|
319
|
+
|
320
|
+
@bucket.setter
|
321
|
+
def bucket(self, value: Optional[pulumi.Input[_builtins.str]]):
|
322
|
+
pulumi.set(self, "bucket", value)
|
323
|
+
|
324
|
+
@_builtins.property
|
325
|
+
@pulumi.getter(name="nameSpace")
|
326
|
+
def name_space(self) -> Optional[pulumi.Input[_builtins.str]]:
|
327
|
+
"""
|
328
|
+
(Updatable) Namespace in the object store.
|
329
|
+
"""
|
330
|
+
return pulumi.get(self, "name_space")
|
331
|
+
|
332
|
+
@name_space.setter
|
333
|
+
def name_space(self, value: Optional[pulumi.Input[_builtins.str]]):
|
334
|
+
pulumi.set(self, "name_space", value)
|
335
|
+
|
336
|
+
@_builtins.property
|
337
|
+
@pulumi.getter(name="objectNamePrefix")
|
338
|
+
def object_name_prefix(self) -> Optional[pulumi.Input[_builtins.str]]:
|
339
|
+
"""
|
340
|
+
(Updatable) Object name prefix in the object store.
|
341
|
+
"""
|
342
|
+
return pulumi.get(self, "object_name_prefix")
|
343
|
+
|
344
|
+
@object_name_prefix.setter
|
345
|
+
def object_name_prefix(self, value: Optional[pulumi.Input[_builtins.str]]):
|
346
|
+
pulumi.set(self, "object_name_prefix", value)
|
347
|
+
|
348
|
+
|
349
|
+
if not MYPY:
|
350
|
+
class ScheduledQueryScheduledQueryProcessingConfigurationStreamingArgsDict(TypedDict):
|
351
|
+
stream_id: NotRequired[pulumi.Input[_builtins.str]]
|
352
|
+
"""
|
353
|
+
(Updatable) Stream Id.
|
354
|
+
"""
|
355
|
+
elif False:
|
356
|
+
ScheduledQueryScheduledQueryProcessingConfigurationStreamingArgsDict: TypeAlias = Mapping[str, Any]
|
357
|
+
|
358
|
+
@pulumi.input_type
|
359
|
+
class ScheduledQueryScheduledQueryProcessingConfigurationStreamingArgs:
|
360
|
+
def __init__(__self__, *,
|
361
|
+
stream_id: Optional[pulumi.Input[_builtins.str]] = None):
|
362
|
+
"""
|
363
|
+
:param pulumi.Input[_builtins.str] stream_id: (Updatable) Stream Id.
|
364
|
+
"""
|
365
|
+
if stream_id is not None:
|
366
|
+
pulumi.set(__self__, "stream_id", stream_id)
|
367
|
+
|
368
|
+
@_builtins.property
|
369
|
+
@pulumi.getter(name="streamId")
|
370
|
+
def stream_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
371
|
+
"""
|
372
|
+
(Updatable) Stream Id.
|
373
|
+
"""
|
374
|
+
return pulumi.get(self, "stream_id")
|
375
|
+
|
376
|
+
@stream_id.setter
|
377
|
+
def stream_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
378
|
+
pulumi.set(self, "stream_id", value)
|
379
|
+
|
380
|
+
|
24
381
|
if not MYPY:
|
25
382
|
class GetQueryQuickPicksFilterArgsDict(TypedDict):
|
26
383
|
name: _builtins.str
|
@@ -68,3 +425,59 @@ class GetQueryQuickPicksFilterArgs:
|
|
68
425
|
pulumi.set(self, "regex", value)
|
69
426
|
|
70
427
|
|
428
|
+
if not MYPY:
|
429
|
+
class GetScheduledQueriesFilterArgsDict(TypedDict):
|
430
|
+
name: _builtins.str
|
431
|
+
"""
|
432
|
+
Name of the Custom Metric.
|
433
|
+
"""
|
434
|
+
values: Sequence[_builtins.str]
|
435
|
+
regex: NotRequired[_builtins.bool]
|
436
|
+
elif False:
|
437
|
+
GetScheduledQueriesFilterArgsDict: TypeAlias = Mapping[str, Any]
|
438
|
+
|
439
|
+
@pulumi.input_type
|
440
|
+
class GetScheduledQueriesFilterArgs:
|
441
|
+
def __init__(__self__, *,
|
442
|
+
name: _builtins.str,
|
443
|
+
values: Sequence[_builtins.str],
|
444
|
+
regex: Optional[_builtins.bool] = None):
|
445
|
+
"""
|
446
|
+
:param _builtins.str name: Name of the Custom Metric.
|
447
|
+
"""
|
448
|
+
pulumi.set(__self__, "name", name)
|
449
|
+
pulumi.set(__self__, "values", values)
|
450
|
+
if regex is not None:
|
451
|
+
pulumi.set(__self__, "regex", regex)
|
452
|
+
|
453
|
+
@_builtins.property
|
454
|
+
@pulumi.getter
|
455
|
+
def name(self) -> _builtins.str:
|
456
|
+
"""
|
457
|
+
Name of the Custom Metric.
|
458
|
+
"""
|
459
|
+
return pulumi.get(self, "name")
|
460
|
+
|
461
|
+
@name.setter
|
462
|
+
def name(self, value: _builtins.str):
|
463
|
+
pulumi.set(self, "name", value)
|
464
|
+
|
465
|
+
@_builtins.property
|
466
|
+
@pulumi.getter
|
467
|
+
def values(self) -> Sequence[_builtins.str]:
|
468
|
+
return pulumi.get(self, "values")
|
469
|
+
|
470
|
+
@values.setter
|
471
|
+
def values(self, value: Sequence[_builtins.str]):
|
472
|
+
pulumi.set(self, "values", value)
|
473
|
+
|
474
|
+
@_builtins.property
|
475
|
+
@pulumi.getter
|
476
|
+
def regex(self) -> Optional[_builtins.bool]:
|
477
|
+
return pulumi.get(self, "regex")
|
478
|
+
|
479
|
+
@regex.setter
|
480
|
+
def regex(self, value: Optional[_builtins.bool]):
|
481
|
+
pulumi.set(self, "regex", value)
|
482
|
+
|
483
|
+
|
@@ -0,0 +1,160 @@
|
|
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
|
+
|
17
|
+
__all__ = [
|
18
|
+
'GetAttributeAutoActivateStatusResult',
|
19
|
+
'AwaitableGetAttributeAutoActivateStatusResult',
|
20
|
+
'get_attribute_auto_activate_status',
|
21
|
+
'get_attribute_auto_activate_status_output',
|
22
|
+
]
|
23
|
+
|
24
|
+
@pulumi.output_type
|
25
|
+
class GetAttributeAutoActivateStatusResult:
|
26
|
+
"""
|
27
|
+
A collection of values returned by getAttributeAutoActivateStatus.
|
28
|
+
"""
|
29
|
+
def __init__(__self__, apm_domain_id=None, data_key=None, data_key_type=None, id=None, state=None):
|
30
|
+
if apm_domain_id and not isinstance(apm_domain_id, str):
|
31
|
+
raise TypeError("Expected argument 'apm_domain_id' to be a str")
|
32
|
+
pulumi.set(__self__, "apm_domain_id", apm_domain_id)
|
33
|
+
if data_key and not isinstance(data_key, str):
|
34
|
+
raise TypeError("Expected argument 'data_key' to be a str")
|
35
|
+
pulumi.set(__self__, "data_key", data_key)
|
36
|
+
if data_key_type and not isinstance(data_key_type, str):
|
37
|
+
raise TypeError("Expected argument 'data_key_type' to be a str")
|
38
|
+
pulumi.set(__self__, "data_key_type", data_key_type)
|
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 state and not isinstance(state, str):
|
43
|
+
raise TypeError("Expected argument 'state' to be a str")
|
44
|
+
pulumi.set(__self__, "state", state)
|
45
|
+
|
46
|
+
@_builtins.property
|
47
|
+
@pulumi.getter(name="apmDomainId")
|
48
|
+
def apm_domain_id(self) -> _builtins.str:
|
49
|
+
return pulumi.get(self, "apm_domain_id")
|
50
|
+
|
51
|
+
@_builtins.property
|
52
|
+
@pulumi.getter(name="dataKey")
|
53
|
+
def data_key(self) -> _builtins.str:
|
54
|
+
"""
|
55
|
+
Data key type for which auto-activate needs needs to be turned on or off.
|
56
|
+
"""
|
57
|
+
return pulumi.get(self, "data_key")
|
58
|
+
|
59
|
+
@_builtins.property
|
60
|
+
@pulumi.getter(name="dataKeyType")
|
61
|
+
def data_key_type(self) -> _builtins.str:
|
62
|
+
return pulumi.get(self, "data_key_type")
|
63
|
+
|
64
|
+
@_builtins.property
|
65
|
+
@pulumi.getter
|
66
|
+
def id(self) -> _builtins.str:
|
67
|
+
"""
|
68
|
+
The provider-assigned unique ID for this managed resource.
|
69
|
+
"""
|
70
|
+
return pulumi.get(self, "id")
|
71
|
+
|
72
|
+
@_builtins.property
|
73
|
+
@pulumi.getter
|
74
|
+
def state(self) -> _builtins.str:
|
75
|
+
"""
|
76
|
+
State of autoactivation in this APM Domain. If "ON" auto-activate is set to true, if "OFF" auto-activate is set to false.
|
77
|
+
"""
|
78
|
+
return pulumi.get(self, "state")
|
79
|
+
|
80
|
+
|
81
|
+
class AwaitableGetAttributeAutoActivateStatusResult(GetAttributeAutoActivateStatusResult):
|
82
|
+
# pylint: disable=using-constant-test
|
83
|
+
def __await__(self):
|
84
|
+
if False:
|
85
|
+
yield self
|
86
|
+
return GetAttributeAutoActivateStatusResult(
|
87
|
+
apm_domain_id=self.apm_domain_id,
|
88
|
+
data_key=self.data_key,
|
89
|
+
data_key_type=self.data_key_type,
|
90
|
+
id=self.id,
|
91
|
+
state=self.state)
|
92
|
+
|
93
|
+
|
94
|
+
def get_attribute_auto_activate_status(apm_domain_id: Optional[_builtins.str] = None,
|
95
|
+
data_key_type: Optional[_builtins.str] = None,
|
96
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAttributeAutoActivateStatusResult:
|
97
|
+
"""
|
98
|
+
This data source provides details about a specific Attribute Auto Activate Status resource in Oracle Cloud Infrastructure Apm Traces service.
|
99
|
+
|
100
|
+
Get autoactivation status for a private data key or public data key in the APM Domain.
|
101
|
+
|
102
|
+
## Example Usage
|
103
|
+
|
104
|
+
```python
|
105
|
+
import pulumi
|
106
|
+
import pulumi_oci as oci
|
107
|
+
|
108
|
+
test_attribute_auto_activate_status = oci.ApmTraces.get_attribute_auto_activate_status(apm_domain_id=test_apm_domain["id"],
|
109
|
+
data_key_type=attribute_auto_activate_status_data_key_type)
|
110
|
+
```
|
111
|
+
|
112
|
+
|
113
|
+
:param _builtins.str apm_domain_id: The APM Domain ID for the intended request.
|
114
|
+
:param _builtins.str data_key_type: Data key type for which auto-activate needs to be turned on or off.
|
115
|
+
"""
|
116
|
+
__args__ = dict()
|
117
|
+
__args__['apmDomainId'] = apm_domain_id
|
118
|
+
__args__['dataKeyType'] = data_key_type
|
119
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
120
|
+
__ret__ = pulumi.runtime.invoke('oci:ApmTraces/getAttributeAutoActivateStatus:getAttributeAutoActivateStatus', __args__, opts=opts, typ=GetAttributeAutoActivateStatusResult).value
|
121
|
+
|
122
|
+
return AwaitableGetAttributeAutoActivateStatusResult(
|
123
|
+
apm_domain_id=pulumi.get(__ret__, 'apm_domain_id'),
|
124
|
+
data_key=pulumi.get(__ret__, 'data_key'),
|
125
|
+
data_key_type=pulumi.get(__ret__, 'data_key_type'),
|
126
|
+
id=pulumi.get(__ret__, 'id'),
|
127
|
+
state=pulumi.get(__ret__, 'state'))
|
128
|
+
def get_attribute_auto_activate_status_output(apm_domain_id: Optional[pulumi.Input[_builtins.str]] = None,
|
129
|
+
data_key_type: Optional[pulumi.Input[_builtins.str]] = None,
|
130
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAttributeAutoActivateStatusResult]:
|
131
|
+
"""
|
132
|
+
This data source provides details about a specific Attribute Auto Activate Status resource in Oracle Cloud Infrastructure Apm Traces service.
|
133
|
+
|
134
|
+
Get autoactivation status for a private data key or public data key in the APM Domain.
|
135
|
+
|
136
|
+
## Example Usage
|
137
|
+
|
138
|
+
```python
|
139
|
+
import pulumi
|
140
|
+
import pulumi_oci as oci
|
141
|
+
|
142
|
+
test_attribute_auto_activate_status = oci.ApmTraces.get_attribute_auto_activate_status(apm_domain_id=test_apm_domain["id"],
|
143
|
+
data_key_type=attribute_auto_activate_status_data_key_type)
|
144
|
+
```
|
145
|
+
|
146
|
+
|
147
|
+
:param _builtins.str apm_domain_id: The APM Domain ID for the intended request.
|
148
|
+
:param _builtins.str data_key_type: Data key type for which auto-activate needs to be turned on or off.
|
149
|
+
"""
|
150
|
+
__args__ = dict()
|
151
|
+
__args__['apmDomainId'] = apm_domain_id
|
152
|
+
__args__['dataKeyType'] = data_key_type
|
153
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
154
|
+
__ret__ = pulumi.runtime.invoke_output('oci:ApmTraces/getAttributeAutoActivateStatus:getAttributeAutoActivateStatus', __args__, opts=opts, typ=GetAttributeAutoActivateStatusResult)
|
155
|
+
return __ret__.apply(lambda __response__: GetAttributeAutoActivateStatusResult(
|
156
|
+
apm_domain_id=pulumi.get(__response__, 'apm_domain_id'),
|
157
|
+
data_key=pulumi.get(__response__, 'data_key'),
|
158
|
+
data_key_type=pulumi.get(__response__, 'data_key_type'),
|
159
|
+
id=pulumi.get(__response__, 'id'),
|
160
|
+
state=pulumi.get(__response__, 'state')))
|