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
@@ -27,7 +27,7 @@ class GetManagementAgentResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getManagementAgent.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, availability_status=None, compartment_id=None, data_source_lists=None, data_source_summary_lists=None, defined_tags=None, deploy_plugins_ids=None, display_name=None, freeform_tags=None, host=None, host_id=None, id=None, install_key_id=None, install_path=None, install_type=None, is_agent_auto_upgradable=None, is_customer_deployed=None, lifecycle_details=None, managed_agent_id=None, management_agent_id=None, management_agent_properties=None, platform_name=None, platform_type=None, platform_version=None, plugin_lists=None, resource_artifact_version=None, state=None, time_created=None, time_last_heartbeat=None, time_updated=None, version=None):
|
30
|
+
def __init__(__self__, availability_status=None, compartment_id=None, data_source_lists=None, data_source_summary_lists=None, defined_tags=None, deploy_plugins_ids=None, display_name=None, freeform_tags=None, host=None, host_id=None, id=None, install_key_id=None, install_path=None, install_type=None, is_agent_auto_upgradable=None, is_customer_deployed=None, latest_supported_version=None, lifecycle_details=None, managed_agent_id=None, management_agent_id=None, management_agent_properties=None, platform_name=None, platform_type=None, platform_version=None, plugin_lists=None, resource_artifact_version=None, state=None, system_tags=None, time_created=None, time_last_heartbeat=None, time_updated=None, version=None):
|
31
31
|
if availability_status and not isinstance(availability_status, str):
|
32
32
|
raise TypeError("Expected argument 'availability_status' to be a str")
|
33
33
|
pulumi.set(__self__, "availability_status", availability_status)
|
@@ -76,6 +76,9 @@ class GetManagementAgentResult:
|
|
76
76
|
if is_customer_deployed and not isinstance(is_customer_deployed, bool):
|
77
77
|
raise TypeError("Expected argument 'is_customer_deployed' to be a bool")
|
78
78
|
pulumi.set(__self__, "is_customer_deployed", is_customer_deployed)
|
79
|
+
if latest_supported_version and not isinstance(latest_supported_version, str):
|
80
|
+
raise TypeError("Expected argument 'latest_supported_version' to be a str")
|
81
|
+
pulumi.set(__self__, "latest_supported_version", latest_supported_version)
|
79
82
|
if lifecycle_details and not isinstance(lifecycle_details, str):
|
80
83
|
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
81
84
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
@@ -106,6 +109,9 @@ class GetManagementAgentResult:
|
|
106
109
|
if state and not isinstance(state, str):
|
107
110
|
raise TypeError("Expected argument 'state' to be a str")
|
108
111
|
pulumi.set(__self__, "state", state)
|
112
|
+
if system_tags and not isinstance(system_tags, dict):
|
113
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
114
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
109
115
|
if time_created and not isinstance(time_created, str):
|
110
116
|
raise TypeError("Expected argument 'time_created' to be a str")
|
111
117
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -241,6 +247,11 @@ class GetManagementAgentResult:
|
|
241
247
|
"""
|
242
248
|
return pulumi.get(self, "is_customer_deployed")
|
243
249
|
|
250
|
+
@_builtins.property
|
251
|
+
@pulumi.getter(name="latestSupportedVersion")
|
252
|
+
def latest_supported_version(self) -> _builtins.str:
|
253
|
+
return pulumi.get(self, "latest_supported_version")
|
254
|
+
|
244
255
|
@_builtins.property
|
245
256
|
@pulumi.getter(name="lifecycleDetails")
|
246
257
|
def lifecycle_details(self) -> _builtins.str:
|
@@ -315,6 +326,14 @@ class GetManagementAgentResult:
|
|
315
326
|
"""
|
316
327
|
return pulumi.get(self, "state")
|
317
328
|
|
329
|
+
@_builtins.property
|
330
|
+
@pulumi.getter(name="systemTags")
|
331
|
+
def system_tags(self) -> Mapping[str, _builtins.str]:
|
332
|
+
"""
|
333
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
334
|
+
"""
|
335
|
+
return pulumi.get(self, "system_tags")
|
336
|
+
|
318
337
|
@_builtins.property
|
319
338
|
@pulumi.getter(name="timeCreated")
|
320
339
|
def time_created(self) -> _builtins.str:
|
@@ -370,6 +389,7 @@ class AwaitableGetManagementAgentResult(GetManagementAgentResult):
|
|
370
389
|
install_type=self.install_type,
|
371
390
|
is_agent_auto_upgradable=self.is_agent_auto_upgradable,
|
372
391
|
is_customer_deployed=self.is_customer_deployed,
|
392
|
+
latest_supported_version=self.latest_supported_version,
|
373
393
|
lifecycle_details=self.lifecycle_details,
|
374
394
|
managed_agent_id=self.managed_agent_id,
|
375
395
|
management_agent_id=self.management_agent_id,
|
@@ -380,6 +400,7 @@ class AwaitableGetManagementAgentResult(GetManagementAgentResult):
|
|
380
400
|
plugin_lists=self.plugin_lists,
|
381
401
|
resource_artifact_version=self.resource_artifact_version,
|
382
402
|
state=self.state,
|
403
|
+
system_tags=self.system_tags,
|
383
404
|
time_created=self.time_created,
|
384
405
|
time_last_heartbeat=self.time_last_heartbeat,
|
385
406
|
time_updated=self.time_updated,
|
@@ -427,6 +448,7 @@ def get_management_agent(management_agent_id: Optional[_builtins.str] = None,
|
|
427
448
|
install_type=pulumi.get(__ret__, 'install_type'),
|
428
449
|
is_agent_auto_upgradable=pulumi.get(__ret__, 'is_agent_auto_upgradable'),
|
429
450
|
is_customer_deployed=pulumi.get(__ret__, 'is_customer_deployed'),
|
451
|
+
latest_supported_version=pulumi.get(__ret__, 'latest_supported_version'),
|
430
452
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
431
453
|
managed_agent_id=pulumi.get(__ret__, 'managed_agent_id'),
|
432
454
|
management_agent_id=pulumi.get(__ret__, 'management_agent_id'),
|
@@ -437,6 +459,7 @@ def get_management_agent(management_agent_id: Optional[_builtins.str] = None,
|
|
437
459
|
plugin_lists=pulumi.get(__ret__, 'plugin_lists'),
|
438
460
|
resource_artifact_version=pulumi.get(__ret__, 'resource_artifact_version'),
|
439
461
|
state=pulumi.get(__ret__, 'state'),
|
462
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
440
463
|
time_created=pulumi.get(__ret__, 'time_created'),
|
441
464
|
time_last_heartbeat=pulumi.get(__ret__, 'time_last_heartbeat'),
|
442
465
|
time_updated=pulumi.get(__ret__, 'time_updated'),
|
@@ -481,6 +504,7 @@ def get_management_agent_output(management_agent_id: Optional[pulumi.Input[_buil
|
|
481
504
|
install_type=pulumi.get(__response__, 'install_type'),
|
482
505
|
is_agent_auto_upgradable=pulumi.get(__response__, 'is_agent_auto_upgradable'),
|
483
506
|
is_customer_deployed=pulumi.get(__response__, 'is_customer_deployed'),
|
507
|
+
latest_supported_version=pulumi.get(__response__, 'latest_supported_version'),
|
484
508
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
485
509
|
managed_agent_id=pulumi.get(__response__, 'managed_agent_id'),
|
486
510
|
management_agent_id=pulumi.get(__response__, 'management_agent_id'),
|
@@ -491,6 +515,7 @@ def get_management_agent_output(management_agent_id: Optional[pulumi.Input[_buil
|
|
491
515
|
plugin_lists=pulumi.get(__response__, 'plugin_lists'),
|
492
516
|
resource_artifact_version=pulumi.get(__response__, 'resource_artifact_version'),
|
493
517
|
state=pulumi.get(__response__, 'state'),
|
518
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
494
519
|
time_created=pulumi.get(__response__, 'time_created'),
|
495
520
|
time_last_heartbeat=pulumi.get(__response__, 'time_last_heartbeat'),
|
496
521
|
time_updated=pulumi.get(__response__, 'time_updated'),
|
@@ -26,7 +26,7 @@ class GetManagementAgentInstallKeyResult:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getManagementAgentInstallKey.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, allowed_key_install_count=None, compartment_id=None, created_by_principal_id=None, current_key_install_count=None, display_name=None, id=None, is_unlimited=None, key=None, lifecycle_details=None, management_agent_install_key_id=None, state=None, time_created=None, time_expires=None, time_updated=None):
|
29
|
+
def __init__(__self__, allowed_key_install_count=None, compartment_id=None, created_by_principal_id=None, current_key_install_count=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, is_unlimited=None, key=None, lifecycle_details=None, management_agent_install_key_id=None, state=None, system_tags=None, time_created=None, time_expires=None, time_updated=None):
|
30
30
|
if allowed_key_install_count and not isinstance(allowed_key_install_count, int):
|
31
31
|
raise TypeError("Expected argument 'allowed_key_install_count' to be a int")
|
32
32
|
pulumi.set(__self__, "allowed_key_install_count", allowed_key_install_count)
|
@@ -39,9 +39,15 @@ class GetManagementAgentInstallKeyResult:
|
|
39
39
|
if current_key_install_count and not isinstance(current_key_install_count, int):
|
40
40
|
raise TypeError("Expected argument 'current_key_install_count' to be a int")
|
41
41
|
pulumi.set(__self__, "current_key_install_count", current_key_install_count)
|
42
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
43
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
44
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
42
45
|
if display_name and not isinstance(display_name, str):
|
43
46
|
raise TypeError("Expected argument 'display_name' to be a str")
|
44
47
|
pulumi.set(__self__, "display_name", display_name)
|
48
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
49
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
50
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
45
51
|
if id and not isinstance(id, str):
|
46
52
|
raise TypeError("Expected argument 'id' to be a str")
|
47
53
|
pulumi.set(__self__, "id", id)
|
@@ -60,6 +66,9 @@ class GetManagementAgentInstallKeyResult:
|
|
60
66
|
if state and not isinstance(state, str):
|
61
67
|
raise TypeError("Expected argument 'state' to be a str")
|
62
68
|
pulumi.set(__self__, "state", state)
|
69
|
+
if system_tags and not isinstance(system_tags, dict):
|
70
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
71
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
63
72
|
if time_created and not isinstance(time_created, str):
|
64
73
|
raise TypeError("Expected argument 'time_created' to be a str")
|
65
74
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -102,6 +111,14 @@ class GetManagementAgentInstallKeyResult:
|
|
102
111
|
"""
|
103
112
|
return pulumi.get(self, "current_key_install_count")
|
104
113
|
|
114
|
+
@_builtins.property
|
115
|
+
@pulumi.getter(name="definedTags")
|
116
|
+
def defined_tags(self) -> Mapping[str, _builtins.str]:
|
117
|
+
"""
|
118
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
119
|
+
"""
|
120
|
+
return pulumi.get(self, "defined_tags")
|
121
|
+
|
105
122
|
@_builtins.property
|
106
123
|
@pulumi.getter(name="displayName")
|
107
124
|
def display_name(self) -> _builtins.str:
|
@@ -110,6 +127,14 @@ class GetManagementAgentInstallKeyResult:
|
|
110
127
|
"""
|
111
128
|
return pulumi.get(self, "display_name")
|
112
129
|
|
130
|
+
@_builtins.property
|
131
|
+
@pulumi.getter(name="freeformTags")
|
132
|
+
def freeform_tags(self) -> Mapping[str, _builtins.str]:
|
133
|
+
"""
|
134
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
135
|
+
"""
|
136
|
+
return pulumi.get(self, "freeform_tags")
|
137
|
+
|
113
138
|
@_builtins.property
|
114
139
|
@pulumi.getter
|
115
140
|
def id(self) -> _builtins.str:
|
@@ -155,6 +180,14 @@ class GetManagementAgentInstallKeyResult:
|
|
155
180
|
"""
|
156
181
|
return pulumi.get(self, "state")
|
157
182
|
|
183
|
+
@_builtins.property
|
184
|
+
@pulumi.getter(name="systemTags")
|
185
|
+
def system_tags(self) -> Mapping[str, _builtins.str]:
|
186
|
+
"""
|
187
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
188
|
+
"""
|
189
|
+
return pulumi.get(self, "system_tags")
|
190
|
+
|
158
191
|
@_builtins.property
|
159
192
|
@pulumi.getter(name="timeCreated")
|
160
193
|
def time_created(self) -> _builtins.str:
|
@@ -190,13 +223,16 @@ class AwaitableGetManagementAgentInstallKeyResult(GetManagementAgentInstallKeyRe
|
|
190
223
|
compartment_id=self.compartment_id,
|
191
224
|
created_by_principal_id=self.created_by_principal_id,
|
192
225
|
current_key_install_count=self.current_key_install_count,
|
226
|
+
defined_tags=self.defined_tags,
|
193
227
|
display_name=self.display_name,
|
228
|
+
freeform_tags=self.freeform_tags,
|
194
229
|
id=self.id,
|
195
230
|
is_unlimited=self.is_unlimited,
|
196
231
|
key=self.key,
|
197
232
|
lifecycle_details=self.lifecycle_details,
|
198
233
|
management_agent_install_key_id=self.management_agent_install_key_id,
|
199
234
|
state=self.state,
|
235
|
+
system_tags=self.system_tags,
|
200
236
|
time_created=self.time_created,
|
201
237
|
time_expires=self.time_expires,
|
202
238
|
time_updated=self.time_updated)
|
@@ -231,13 +267,16 @@ def get_management_agent_install_key(management_agent_install_key_id: Optional[_
|
|
231
267
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
232
268
|
created_by_principal_id=pulumi.get(__ret__, 'created_by_principal_id'),
|
233
269
|
current_key_install_count=pulumi.get(__ret__, 'current_key_install_count'),
|
270
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
234
271
|
display_name=pulumi.get(__ret__, 'display_name'),
|
272
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
235
273
|
id=pulumi.get(__ret__, 'id'),
|
236
274
|
is_unlimited=pulumi.get(__ret__, 'is_unlimited'),
|
237
275
|
key=pulumi.get(__ret__, 'key'),
|
238
276
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
239
277
|
management_agent_install_key_id=pulumi.get(__ret__, 'management_agent_install_key_id'),
|
240
278
|
state=pulumi.get(__ret__, 'state'),
|
279
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
241
280
|
time_created=pulumi.get(__ret__, 'time_created'),
|
242
281
|
time_expires=pulumi.get(__ret__, 'time_expires'),
|
243
282
|
time_updated=pulumi.get(__ret__, 'time_updated'))
|
@@ -269,13 +308,16 @@ def get_management_agent_install_key_output(management_agent_install_key_id: Opt
|
|
269
308
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
270
309
|
created_by_principal_id=pulumi.get(__response__, 'created_by_principal_id'),
|
271
310
|
current_key_install_count=pulumi.get(__response__, 'current_key_install_count'),
|
311
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
272
312
|
display_name=pulumi.get(__response__, 'display_name'),
|
313
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
273
314
|
id=pulumi.get(__response__, 'id'),
|
274
315
|
is_unlimited=pulumi.get(__response__, 'is_unlimited'),
|
275
316
|
key=pulumi.get(__response__, 'key'),
|
276
317
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
277
318
|
management_agent_install_key_id=pulumi.get(__response__, 'management_agent_install_key_id'),
|
278
319
|
state=pulumi.get(__response__, 'state'),
|
320
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
279
321
|
time_created=pulumi.get(__response__, 'time_created'),
|
280
322
|
time_expires=pulumi.get(__response__, 'time_expires'),
|
281
323
|
time_updated=pulumi.get(__response__, 'time_updated')))
|
@@ -0,0 +1,147 @@
|
|
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
|
+
'GetManagementAgentNamedCredentialsMetadataResult',
|
20
|
+
'AwaitableGetManagementAgentNamedCredentialsMetadataResult',
|
21
|
+
'get_management_agent_named_credentials_metadata',
|
22
|
+
'get_management_agent_named_credentials_metadata_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetManagementAgentNamedCredentialsMetadataResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getManagementAgentNamedCredentialsMetadata.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, compartment_id=None, id=None, management_agent_id=None, metadatas=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 id and not isinstance(id, str):
|
35
|
+
raise TypeError("Expected argument 'id' to be a str")
|
36
|
+
pulumi.set(__self__, "id", id)
|
37
|
+
if management_agent_id and not isinstance(management_agent_id, str):
|
38
|
+
raise TypeError("Expected argument 'management_agent_id' to be a str")
|
39
|
+
pulumi.set(__self__, "management_agent_id", management_agent_id)
|
40
|
+
if metadatas and not isinstance(metadatas, list):
|
41
|
+
raise TypeError("Expected argument 'metadatas' to be a list")
|
42
|
+
pulumi.set(__self__, "metadatas", metadatas)
|
43
|
+
|
44
|
+
@_builtins.property
|
45
|
+
@pulumi.getter(name="compartmentId")
|
46
|
+
def compartment_id(self) -> _builtins.str:
|
47
|
+
return pulumi.get(self, "compartment_id")
|
48
|
+
|
49
|
+
@_builtins.property
|
50
|
+
@pulumi.getter
|
51
|
+
def id(self) -> _builtins.str:
|
52
|
+
"""
|
53
|
+
The provider-assigned unique ID for this managed resource.
|
54
|
+
"""
|
55
|
+
return pulumi.get(self, "id")
|
56
|
+
|
57
|
+
@_builtins.property
|
58
|
+
@pulumi.getter(name="managementAgentId")
|
59
|
+
def management_agent_id(self) -> Optional[_builtins.str]:
|
60
|
+
return pulumi.get(self, "management_agent_id")
|
61
|
+
|
62
|
+
@_builtins.property
|
63
|
+
@pulumi.getter
|
64
|
+
def metadatas(self) -> Sequence['outputs.GetManagementAgentNamedCredentialsMetadataMetadataResult']:
|
65
|
+
"""
|
66
|
+
List of supported metadata definitions.
|
67
|
+
"""
|
68
|
+
return pulumi.get(self, "metadatas")
|
69
|
+
|
70
|
+
|
71
|
+
class AwaitableGetManagementAgentNamedCredentialsMetadataResult(GetManagementAgentNamedCredentialsMetadataResult):
|
72
|
+
# pylint: disable=using-constant-test
|
73
|
+
def __await__(self):
|
74
|
+
if False:
|
75
|
+
yield self
|
76
|
+
return GetManagementAgentNamedCredentialsMetadataResult(
|
77
|
+
compartment_id=self.compartment_id,
|
78
|
+
id=self.id,
|
79
|
+
management_agent_id=self.management_agent_id,
|
80
|
+
metadatas=self.metadatas)
|
81
|
+
|
82
|
+
|
83
|
+
def get_management_agent_named_credentials_metadata(compartment_id: Optional[_builtins.str] = None,
|
84
|
+
management_agent_id: Optional[_builtins.str] = None,
|
85
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetManagementAgentNamedCredentialsMetadataResult:
|
86
|
+
"""
|
87
|
+
This data source provides details about a specific Management Agent Named Credentials Metadata resource in Oracle Cloud Infrastructure Management Agent service.
|
88
|
+
|
89
|
+
Return the Metadata definition for Named Credentials supported by Management Agent.
|
90
|
+
|
91
|
+
## Example Usage
|
92
|
+
|
93
|
+
```python
|
94
|
+
import pulumi
|
95
|
+
import pulumi_oci as oci
|
96
|
+
|
97
|
+
test_management_agent_named_credentials_metadata = oci.ManagementAgent.get_management_agent_named_credentials_metadata(compartment_id=compartment_id,
|
98
|
+
management_agent_id=test_management_agent["id"])
|
99
|
+
```
|
100
|
+
|
101
|
+
|
102
|
+
:param _builtins.str compartment_id: The OCID of the compartment to which a request will be scoped.
|
103
|
+
:param _builtins.str management_agent_id: Filter the named credential metadata which is compatible with the given Management Agent identifier.
|
104
|
+
"""
|
105
|
+
__args__ = dict()
|
106
|
+
__args__['compartmentId'] = compartment_id
|
107
|
+
__args__['managementAgentId'] = management_agent_id
|
108
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
109
|
+
__ret__ = pulumi.runtime.invoke('oci:ManagementAgent/getManagementAgentNamedCredentialsMetadata:getManagementAgentNamedCredentialsMetadata', __args__, opts=opts, typ=GetManagementAgentNamedCredentialsMetadataResult).value
|
110
|
+
|
111
|
+
return AwaitableGetManagementAgentNamedCredentialsMetadataResult(
|
112
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
113
|
+
id=pulumi.get(__ret__, 'id'),
|
114
|
+
management_agent_id=pulumi.get(__ret__, 'management_agent_id'),
|
115
|
+
metadatas=pulumi.get(__ret__, 'metadatas'))
|
116
|
+
def get_management_agent_named_credentials_metadata_output(compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
117
|
+
management_agent_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
118
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetManagementAgentNamedCredentialsMetadataResult]:
|
119
|
+
"""
|
120
|
+
This data source provides details about a specific Management Agent Named Credentials Metadata resource in Oracle Cloud Infrastructure Management Agent service.
|
121
|
+
|
122
|
+
Return the Metadata definition for Named Credentials supported by Management Agent.
|
123
|
+
|
124
|
+
## Example Usage
|
125
|
+
|
126
|
+
```python
|
127
|
+
import pulumi
|
128
|
+
import pulumi_oci as oci
|
129
|
+
|
130
|
+
test_management_agent_named_credentials_metadata = oci.ManagementAgent.get_management_agent_named_credentials_metadata(compartment_id=compartment_id,
|
131
|
+
management_agent_id=test_management_agent["id"])
|
132
|
+
```
|
133
|
+
|
134
|
+
|
135
|
+
:param _builtins.str compartment_id: The OCID of the compartment to which a request will be scoped.
|
136
|
+
:param _builtins.str management_agent_id: Filter the named credential metadata which is compatible with the given Management Agent identifier.
|
137
|
+
"""
|
138
|
+
__args__ = dict()
|
139
|
+
__args__['compartmentId'] = compartment_id
|
140
|
+
__args__['managementAgentId'] = management_agent_id
|
141
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
142
|
+
__ret__ = pulumi.runtime.invoke_output('oci:ManagementAgent/getManagementAgentNamedCredentialsMetadata:getManagementAgentNamedCredentialsMetadata', __args__, opts=opts, typ=GetManagementAgentNamedCredentialsMetadataResult)
|
143
|
+
return __ret__.apply(lambda __response__: GetManagementAgentNamedCredentialsMetadataResult(
|
144
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
145
|
+
id=pulumi.get(__response__, 'id'),
|
146
|
+
management_agent_id=pulumi.get(__response__, 'management_agent_id'),
|
147
|
+
metadatas=pulumi.get(__response__, 'metadatas')))
|
@@ -0,0 +1,268 @@
|
|
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
|
+
'GetNamedCredentialResult',
|
20
|
+
'AwaitableGetNamedCredentialResult',
|
21
|
+
'get_named_credential',
|
22
|
+
'get_named_credential_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetNamedCredentialResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getNamedCredential.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, defined_tags=None, description=None, freeform_tags=None, id=None, management_agent_id=None, name=None, named_credential_id=None, properties=None, state=None, system_tags=None, time_created=None, time_updated=None, type=None):
|
31
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
32
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
33
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
34
|
+
if description and not isinstance(description, str):
|
35
|
+
raise TypeError("Expected argument 'description' to be a str")
|
36
|
+
pulumi.set(__self__, "description", description)
|
37
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
38
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
39
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
40
|
+
if id and not isinstance(id, str):
|
41
|
+
raise TypeError("Expected argument 'id' to be a str")
|
42
|
+
pulumi.set(__self__, "id", id)
|
43
|
+
if management_agent_id and not isinstance(management_agent_id, str):
|
44
|
+
raise TypeError("Expected argument 'management_agent_id' to be a str")
|
45
|
+
pulumi.set(__self__, "management_agent_id", management_agent_id)
|
46
|
+
if name and not isinstance(name, str):
|
47
|
+
raise TypeError("Expected argument 'name' to be a str")
|
48
|
+
pulumi.set(__self__, "name", name)
|
49
|
+
if named_credential_id and not isinstance(named_credential_id, str):
|
50
|
+
raise TypeError("Expected argument 'named_credential_id' to be a str")
|
51
|
+
pulumi.set(__self__, "named_credential_id", named_credential_id)
|
52
|
+
if properties and not isinstance(properties, list):
|
53
|
+
raise TypeError("Expected argument 'properties' to be a list")
|
54
|
+
pulumi.set(__self__, "properties", properties)
|
55
|
+
if state and not isinstance(state, str):
|
56
|
+
raise TypeError("Expected argument 'state' to be a str")
|
57
|
+
pulumi.set(__self__, "state", state)
|
58
|
+
if system_tags and not isinstance(system_tags, dict):
|
59
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
60
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
61
|
+
if time_created and not isinstance(time_created, str):
|
62
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
63
|
+
pulumi.set(__self__, "time_created", time_created)
|
64
|
+
if time_updated and not isinstance(time_updated, str):
|
65
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
66
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
67
|
+
if type and not isinstance(type, str):
|
68
|
+
raise TypeError("Expected argument 'type' to be a str")
|
69
|
+
pulumi.set(__self__, "type", type)
|
70
|
+
|
71
|
+
@_builtins.property
|
72
|
+
@pulumi.getter(name="definedTags")
|
73
|
+
def defined_tags(self) -> Mapping[str, _builtins.str]:
|
74
|
+
"""
|
75
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
76
|
+
"""
|
77
|
+
return pulumi.get(self, "defined_tags")
|
78
|
+
|
79
|
+
@_builtins.property
|
80
|
+
@pulumi.getter
|
81
|
+
def description(self) -> _builtins.str:
|
82
|
+
"""
|
83
|
+
Description of the Named Credential.
|
84
|
+
"""
|
85
|
+
return pulumi.get(self, "description")
|
86
|
+
|
87
|
+
@_builtins.property
|
88
|
+
@pulumi.getter(name="freeformTags")
|
89
|
+
def freeform_tags(self) -> Mapping[str, _builtins.str]:
|
90
|
+
"""
|
91
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
92
|
+
"""
|
93
|
+
return pulumi.get(self, "freeform_tags")
|
94
|
+
|
95
|
+
@_builtins.property
|
96
|
+
@pulumi.getter
|
97
|
+
def id(self) -> _builtins.str:
|
98
|
+
"""
|
99
|
+
Identifier for Named Credential.
|
100
|
+
"""
|
101
|
+
return pulumi.get(self, "id")
|
102
|
+
|
103
|
+
@_builtins.property
|
104
|
+
@pulumi.getter(name="managementAgentId")
|
105
|
+
def management_agent_id(self) -> _builtins.str:
|
106
|
+
"""
|
107
|
+
The Management Agent parent resource to associated with this named credential. This is the ManagementAgent resource OCID.
|
108
|
+
"""
|
109
|
+
return pulumi.get(self, "management_agent_id")
|
110
|
+
|
111
|
+
@_builtins.property
|
112
|
+
@pulumi.getter
|
113
|
+
def name(self) -> _builtins.str:
|
114
|
+
"""
|
115
|
+
Name of the property
|
116
|
+
"""
|
117
|
+
return pulumi.get(self, "name")
|
118
|
+
|
119
|
+
@_builtins.property
|
120
|
+
@pulumi.getter(name="namedCredentialId")
|
121
|
+
def named_credential_id(self) -> _builtins.str:
|
122
|
+
return pulumi.get(self, "named_credential_id")
|
123
|
+
|
124
|
+
@_builtins.property
|
125
|
+
@pulumi.getter
|
126
|
+
def properties(self) -> Sequence['outputs.GetNamedCredentialPropertyResult']:
|
127
|
+
"""
|
128
|
+
Properties for the named credential
|
129
|
+
"""
|
130
|
+
return pulumi.get(self, "properties")
|
131
|
+
|
132
|
+
@_builtins.property
|
133
|
+
@pulumi.getter
|
134
|
+
def state(self) -> _builtins.str:
|
135
|
+
"""
|
136
|
+
The current state of the named credential
|
137
|
+
"""
|
138
|
+
return pulumi.get(self, "state")
|
139
|
+
|
140
|
+
@_builtins.property
|
141
|
+
@pulumi.getter(name="systemTags")
|
142
|
+
def system_tags(self) -> Mapping[str, _builtins.str]:
|
143
|
+
"""
|
144
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
145
|
+
"""
|
146
|
+
return pulumi.get(self, "system_tags")
|
147
|
+
|
148
|
+
@_builtins.property
|
149
|
+
@pulumi.getter(name="timeCreated")
|
150
|
+
def time_created(self) -> _builtins.str:
|
151
|
+
"""
|
152
|
+
The time the Named Credential was created. An RFC3339 formatted datetime string
|
153
|
+
"""
|
154
|
+
return pulumi.get(self, "time_created")
|
155
|
+
|
156
|
+
@_builtins.property
|
157
|
+
@pulumi.getter(name="timeUpdated")
|
158
|
+
def time_updated(self) -> _builtins.str:
|
159
|
+
"""
|
160
|
+
The time the Named Credential data was last updated. An RFC3339 formatted datetime string
|
161
|
+
"""
|
162
|
+
return pulumi.get(self, "time_updated")
|
163
|
+
|
164
|
+
@_builtins.property
|
165
|
+
@pulumi.getter
|
166
|
+
def type(self) -> _builtins.str:
|
167
|
+
"""
|
168
|
+
The type of the Named Credential.
|
169
|
+
"""
|
170
|
+
return pulumi.get(self, "type")
|
171
|
+
|
172
|
+
|
173
|
+
class AwaitableGetNamedCredentialResult(GetNamedCredentialResult):
|
174
|
+
# pylint: disable=using-constant-test
|
175
|
+
def __await__(self):
|
176
|
+
if False:
|
177
|
+
yield self
|
178
|
+
return GetNamedCredentialResult(
|
179
|
+
defined_tags=self.defined_tags,
|
180
|
+
description=self.description,
|
181
|
+
freeform_tags=self.freeform_tags,
|
182
|
+
id=self.id,
|
183
|
+
management_agent_id=self.management_agent_id,
|
184
|
+
name=self.name,
|
185
|
+
named_credential_id=self.named_credential_id,
|
186
|
+
properties=self.properties,
|
187
|
+
state=self.state,
|
188
|
+
system_tags=self.system_tags,
|
189
|
+
time_created=self.time_created,
|
190
|
+
time_updated=self.time_updated,
|
191
|
+
type=self.type)
|
192
|
+
|
193
|
+
|
194
|
+
def get_named_credential(named_credential_id: Optional[_builtins.str] = None,
|
195
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNamedCredentialResult:
|
196
|
+
"""
|
197
|
+
This data source provides details about a specific Named Credential resource in Oracle Cloud Infrastructure Management Agent service.
|
198
|
+
|
199
|
+
Get Named credential details for given Id and given Management Agent.
|
200
|
+
|
201
|
+
## Example Usage
|
202
|
+
|
203
|
+
```python
|
204
|
+
import pulumi
|
205
|
+
import pulumi_oci as oci
|
206
|
+
|
207
|
+
test_named_credential = oci.ManagementAgent.get_named_credential(named_credential_id=test_named_credential_oci_management_agent_named_credential["id"])
|
208
|
+
```
|
209
|
+
|
210
|
+
|
211
|
+
:param _builtins.str named_credential_id: Named credential ID
|
212
|
+
"""
|
213
|
+
__args__ = dict()
|
214
|
+
__args__['namedCredentialId'] = named_credential_id
|
215
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
216
|
+
__ret__ = pulumi.runtime.invoke('oci:ManagementAgent/getNamedCredential:getNamedCredential', __args__, opts=opts, typ=GetNamedCredentialResult).value
|
217
|
+
|
218
|
+
return AwaitableGetNamedCredentialResult(
|
219
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
220
|
+
description=pulumi.get(__ret__, 'description'),
|
221
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
222
|
+
id=pulumi.get(__ret__, 'id'),
|
223
|
+
management_agent_id=pulumi.get(__ret__, 'management_agent_id'),
|
224
|
+
name=pulumi.get(__ret__, 'name'),
|
225
|
+
named_credential_id=pulumi.get(__ret__, 'named_credential_id'),
|
226
|
+
properties=pulumi.get(__ret__, 'properties'),
|
227
|
+
state=pulumi.get(__ret__, 'state'),
|
228
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
229
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
230
|
+
time_updated=pulumi.get(__ret__, 'time_updated'),
|
231
|
+
type=pulumi.get(__ret__, 'type'))
|
232
|
+
def get_named_credential_output(named_credential_id: Optional[pulumi.Input[_builtins.str]] = None,
|
233
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNamedCredentialResult]:
|
234
|
+
"""
|
235
|
+
This data source provides details about a specific Named Credential resource in Oracle Cloud Infrastructure Management Agent service.
|
236
|
+
|
237
|
+
Get Named credential details for given Id and given Management Agent.
|
238
|
+
|
239
|
+
## Example Usage
|
240
|
+
|
241
|
+
```python
|
242
|
+
import pulumi
|
243
|
+
import pulumi_oci as oci
|
244
|
+
|
245
|
+
test_named_credential = oci.ManagementAgent.get_named_credential(named_credential_id=test_named_credential_oci_management_agent_named_credential["id"])
|
246
|
+
```
|
247
|
+
|
248
|
+
|
249
|
+
:param _builtins.str named_credential_id: Named credential ID
|
250
|
+
"""
|
251
|
+
__args__ = dict()
|
252
|
+
__args__['namedCredentialId'] = named_credential_id
|
253
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
254
|
+
__ret__ = pulumi.runtime.invoke_output('oci:ManagementAgent/getNamedCredential:getNamedCredential', __args__, opts=opts, typ=GetNamedCredentialResult)
|
255
|
+
return __ret__.apply(lambda __response__: GetNamedCredentialResult(
|
256
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
257
|
+
description=pulumi.get(__response__, 'description'),
|
258
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
259
|
+
id=pulumi.get(__response__, 'id'),
|
260
|
+
management_agent_id=pulumi.get(__response__, 'management_agent_id'),
|
261
|
+
name=pulumi.get(__response__, 'name'),
|
262
|
+
named_credential_id=pulumi.get(__response__, 'named_credential_id'),
|
263
|
+
properties=pulumi.get(__response__, 'properties'),
|
264
|
+
state=pulumi.get(__response__, 'state'),
|
265
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
266
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
267
|
+
time_updated=pulumi.get(__response__, 'time_updated'),
|
268
|
+
type=pulumi.get(__response__, 'type')))
|