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
@@ -28,7 +28,7 @@ class GetDeploymentsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getDeployments.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, assignable_connection_id=None, assigned_connection_id=None, compartment_id=None, deployment_collections=None, display_name=None, filters=None, fqdn=None, id=None, lifecycle_sub_state=None, state=None, supported_connection_type=None):
|
31
|
+
def __init__(__self__, assignable_connection_id=None, assigned_connection_id=None, compartment_id=None, deployment_collections=None, deployment_type=None, display_name=None, filters=None, fqdn=None, id=None, lifecycle_sub_state=None, state=None, supported_connection_type=None):
|
32
32
|
if assignable_connection_id and not isinstance(assignable_connection_id, str):
|
33
33
|
raise TypeError("Expected argument 'assignable_connection_id' to be a str")
|
34
34
|
pulumi.set(__self__, "assignable_connection_id", assignable_connection_id)
|
@@ -41,6 +41,9 @@ class GetDeploymentsResult:
|
|
41
41
|
if deployment_collections and not isinstance(deployment_collections, list):
|
42
42
|
raise TypeError("Expected argument 'deployment_collections' to be a list")
|
43
43
|
pulumi.set(__self__, "deployment_collections", deployment_collections)
|
44
|
+
if deployment_type and not isinstance(deployment_type, str):
|
45
|
+
raise TypeError("Expected argument 'deployment_type' to be a str")
|
46
|
+
pulumi.set(__self__, "deployment_type", deployment_type)
|
44
47
|
if display_name and not isinstance(display_name, str):
|
45
48
|
raise TypeError("Expected argument 'display_name' to be a str")
|
46
49
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -89,6 +92,14 @@ class GetDeploymentsResult:
|
|
89
92
|
"""
|
90
93
|
return pulumi.get(self, "deployment_collections")
|
91
94
|
|
95
|
+
@_builtins.property
|
96
|
+
@pulumi.getter(name="deploymentType")
|
97
|
+
def deployment_type(self) -> Optional[_builtins.str]:
|
98
|
+
"""
|
99
|
+
The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
|
100
|
+
"""
|
101
|
+
return pulumi.get(self, "deployment_type")
|
102
|
+
|
92
103
|
@_builtins.property
|
93
104
|
@pulumi.getter(name="displayName")
|
94
105
|
def display_name(self) -> Optional[_builtins.str]:
|
@@ -150,6 +161,7 @@ class AwaitableGetDeploymentsResult(GetDeploymentsResult):
|
|
150
161
|
assigned_connection_id=self.assigned_connection_id,
|
151
162
|
compartment_id=self.compartment_id,
|
152
163
|
deployment_collections=self.deployment_collections,
|
164
|
+
deployment_type=self.deployment_type,
|
153
165
|
display_name=self.display_name,
|
154
166
|
filters=self.filters,
|
155
167
|
fqdn=self.fqdn,
|
@@ -162,6 +174,7 @@ class AwaitableGetDeploymentsResult(GetDeploymentsResult):
|
|
162
174
|
def get_deployments(assignable_connection_id: Optional[_builtins.str] = None,
|
163
175
|
assigned_connection_id: Optional[_builtins.str] = None,
|
164
176
|
compartment_id: Optional[_builtins.str] = None,
|
177
|
+
deployment_type: Optional[_builtins.str] = None,
|
165
178
|
display_name: Optional[_builtins.str] = None,
|
166
179
|
filters: Optional[Sequence[Union['GetDeploymentsFilterArgs', 'GetDeploymentsFilterArgsDict']]] = None,
|
167
180
|
fqdn: Optional[_builtins.str] = None,
|
@@ -183,6 +196,7 @@ def get_deployments(assignable_connection_id: Optional[_builtins.str] = None,
|
|
183
196
|
test_deployments = oci.GoldenGate.get_deployments(compartment_id=compartment_id,
|
184
197
|
assignable_connection_id=test_connection["id"],
|
185
198
|
assigned_connection_id=test_connection["id"],
|
199
|
+
deployment_type=deployment_deployment_type,
|
186
200
|
display_name=deployment_display_name,
|
187
201
|
fqdn=deployment_fqdn,
|
188
202
|
lifecycle_sub_state=deployment_lifecycle_sub_state,
|
@@ -194,6 +208,7 @@ def get_deployments(assignable_connection_id: Optional[_builtins.str] = None,
|
|
194
208
|
:param _builtins.str assignable_connection_id: Return the deployments to which the specified connectionId may be assigned.
|
195
209
|
:param _builtins.str assigned_connection_id: The OCID of the connection which for the deployment must be assigned.
|
196
210
|
:param _builtins.str compartment_id: The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
|
211
|
+
:param _builtins.str deployment_type: A filter that returns only the resources matching the specified 'deploymentType'.
|
197
212
|
:param _builtins.str display_name: A filter to return only the resources that match the entire 'displayName' given.
|
198
213
|
:param _builtins.str fqdn: A filter to return only the resources that match the 'fqdn' given.
|
199
214
|
:param _builtins.str lifecycle_sub_state: A filter to return only the resources that match the 'lifecycleSubState' given.
|
@@ -204,6 +219,7 @@ def get_deployments(assignable_connection_id: Optional[_builtins.str] = None,
|
|
204
219
|
__args__['assignableConnectionId'] = assignable_connection_id
|
205
220
|
__args__['assignedConnectionId'] = assigned_connection_id
|
206
221
|
__args__['compartmentId'] = compartment_id
|
222
|
+
__args__['deploymentType'] = deployment_type
|
207
223
|
__args__['displayName'] = display_name
|
208
224
|
__args__['filters'] = filters
|
209
225
|
__args__['fqdn'] = fqdn
|
@@ -218,6 +234,7 @@ def get_deployments(assignable_connection_id: Optional[_builtins.str] = None,
|
|
218
234
|
assigned_connection_id=pulumi.get(__ret__, 'assigned_connection_id'),
|
219
235
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
220
236
|
deployment_collections=pulumi.get(__ret__, 'deployment_collections'),
|
237
|
+
deployment_type=pulumi.get(__ret__, 'deployment_type'),
|
221
238
|
display_name=pulumi.get(__ret__, 'display_name'),
|
222
239
|
filters=pulumi.get(__ret__, 'filters'),
|
223
240
|
fqdn=pulumi.get(__ret__, 'fqdn'),
|
@@ -228,6 +245,7 @@ def get_deployments(assignable_connection_id: Optional[_builtins.str] = None,
|
|
228
245
|
def get_deployments_output(assignable_connection_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
229
246
|
assigned_connection_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
230
247
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
248
|
+
deployment_type: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
231
249
|
display_name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
232
250
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetDeploymentsFilterArgs', 'GetDeploymentsFilterArgsDict']]]]] = None,
|
233
251
|
fqdn: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
@@ -249,6 +267,7 @@ def get_deployments_output(assignable_connection_id: Optional[pulumi.Input[Optio
|
|
249
267
|
test_deployments = oci.GoldenGate.get_deployments(compartment_id=compartment_id,
|
250
268
|
assignable_connection_id=test_connection["id"],
|
251
269
|
assigned_connection_id=test_connection["id"],
|
270
|
+
deployment_type=deployment_deployment_type,
|
252
271
|
display_name=deployment_display_name,
|
253
272
|
fqdn=deployment_fqdn,
|
254
273
|
lifecycle_sub_state=deployment_lifecycle_sub_state,
|
@@ -260,6 +279,7 @@ def get_deployments_output(assignable_connection_id: Optional[pulumi.Input[Optio
|
|
260
279
|
:param _builtins.str assignable_connection_id: Return the deployments to which the specified connectionId may be assigned.
|
261
280
|
:param _builtins.str assigned_connection_id: The OCID of the connection which for the deployment must be assigned.
|
262
281
|
:param _builtins.str compartment_id: The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
|
282
|
+
:param _builtins.str deployment_type: A filter that returns only the resources matching the specified 'deploymentType'.
|
263
283
|
:param _builtins.str display_name: A filter to return only the resources that match the entire 'displayName' given.
|
264
284
|
:param _builtins.str fqdn: A filter to return only the resources that match the 'fqdn' given.
|
265
285
|
:param _builtins.str lifecycle_sub_state: A filter to return only the resources that match the 'lifecycleSubState' given.
|
@@ -270,6 +290,7 @@ def get_deployments_output(assignable_connection_id: Optional[pulumi.Input[Optio
|
|
270
290
|
__args__['assignableConnectionId'] = assignable_connection_id
|
271
291
|
__args__['assignedConnectionId'] = assigned_connection_id
|
272
292
|
__args__['compartmentId'] = compartment_id
|
293
|
+
__args__['deploymentType'] = deployment_type
|
273
294
|
__args__['displayName'] = display_name
|
274
295
|
__args__['filters'] = filters
|
275
296
|
__args__['fqdn'] = fqdn
|
@@ -283,6 +304,7 @@ def get_deployments_output(assignable_connection_id: Optional[pulumi.Input[Optio
|
|
283
304
|
assigned_connection_id=pulumi.get(__response__, 'assigned_connection_id'),
|
284
305
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
285
306
|
deployment_collections=pulumi.get(__response__, 'deployment_collections'),
|
307
|
+
deployment_type=pulumi.get(__response__, 'deployment_type'),
|
286
308
|
display_name=pulumi.get(__response__, 'display_name'),
|
287
309
|
filters=pulumi.get(__response__, 'filters'),
|
288
310
|
fqdn=pulumi.get(__response__, 'fqdn'),
|
pulumi_oci/goldengate/outputs.py
CHANGED
@@ -1687,7 +1687,7 @@ class PipelineProcessOptions(dict):
|
|
1687
1687
|
:param 'PipelineProcessOptionsInitialDataLoadArgs' initial_data_load: (Updatable) Options required for the pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
|
1688
1688
|
:param 'PipelineProcessOptionsReplicateSchemaChangeArgs' replicate_schema_change: (Updatable) Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
|
1689
1689
|
:param _builtins.str should_restart_on_failure: (Updatable) If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
|
1690
|
-
:param _builtins.str start_using_default_mapping: (Updatable) If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating
|
1690
|
+
:param _builtins.str start_using_default_mapping: (Updatable) If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option only applies when creating a pipeline and is not applicable while updating a pipeline.
|
1691
1691
|
"""
|
1692
1692
|
pulumi.set(__self__, "initial_data_load", initial_data_load)
|
1693
1693
|
pulumi.set(__self__, "replicate_schema_change", replicate_schema_change)
|
@@ -1723,7 +1723,7 @@ class PipelineProcessOptions(dict):
|
|
1723
1723
|
@pulumi.getter(name="startUsingDefaultMapping")
|
1724
1724
|
def start_using_default_mapping(self) -> Optional[_builtins.str]:
|
1725
1725
|
"""
|
1726
|
-
(Updatable) If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating
|
1726
|
+
(Updatable) If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option only applies when creating a pipeline and is not applicable while updating a pipeline.
|
1727
1727
|
"""
|
1728
1728
|
return pulumi.get(self, "start_using_default_mapping")
|
1729
1729
|
|
@@ -2476,6 +2476,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2476
2476
|
additional_attributes: Sequence['outputs.GetConnectionsConnectionCollectionItemAdditionalAttributeResult'],
|
2477
2477
|
authentication_mode: _builtins.str,
|
2478
2478
|
authentication_type: _builtins.str,
|
2479
|
+
azure_authority_host: _builtins.str,
|
2479
2480
|
azure_tenant_id: _builtins.str,
|
2480
2481
|
bootstrap_servers: Sequence['outputs.GetConnectionsConnectionCollectionItemBootstrapServerResult'],
|
2481
2482
|
catalogs: Sequence['outputs.GetConnectionsConnectionCollectionItemCatalogResult'],
|
@@ -2595,6 +2596,9 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2595
2596
|
* DATABRICKS - Required fields by authentication types:
|
2596
2597
|
* PERSONAL_ACCESS_TOKEN: username is always 'token', user must enter password
|
2597
2598
|
* OAUTH_M2M: user must enter clientId and clientSecret
|
2599
|
+
:param _builtins.str azure_authority_host: The endpoint used for authentication with Microsoft Entra ID (formerly Azure Active Directory). Default value: https://login.microsoftonline.com When connecting to a non-public Azure Cloud, the endpoint must be provided, eg:
|
2600
|
+
* Azure China: https://login.chinacloudapi.cn/
|
2601
|
+
* Azure US Government: https://login.microsoftonline.us/
|
2598
2602
|
:param _builtins.str azure_tenant_id: Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f
|
2599
2603
|
:param Sequence['GetConnectionsConnectionCollectionItemBootstrapServerArgs'] bootstrap_servers: Kafka bootstrap. Equivalent of bootstrap.servers configuration property in Kafka: list of KafkaBootstrapServer objects specified by host/port. Used for establishing the initial connection to the Kafka cluster. Example: `"server1.example.com:9092,server2.example.com:9092"`
|
2600
2604
|
:param Sequence['GetConnectionsConnectionCollectionItemCatalogArgs'] catalogs: Represents the catalog of given type used in an Iceberg connection.
|
@@ -2621,6 +2625,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2621
2625
|
:param _builtins.str display_name: A filter to return only the resources that match the entire 'displayName' given.
|
2622
2626
|
:param _builtins.bool does_use_secret_ids: Indicates that sensitive attributes are provided via Secrets.
|
2623
2627
|
:param _builtins.str endpoint: The Azure Blob Storage endpoint where Iceberg data is stored. e.g.: 'https://my-azure-storage-account.blob.core.windows.net'
|
2628
|
+
:param _builtins.str fingerprint: Fingerprint required by TLS security protocol. E.g.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
|
2624
2629
|
:param Mapping[str, _builtins.str] freeform_tags: A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
2625
2630
|
:param _builtins.str host: The name or address of a host.
|
2626
2631
|
In case of Generic connection type it represents the Host and port separated by colon. Example: `"server.example.com:1234"`
|
@@ -2659,7 +2664,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2659
2664
|
:param _builtins.str service_account_key_file_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the content of the service account key file is stored, which contains the credentials required to use Google Cloud Storage.
|
2660
2665
|
:param _builtins.str session_mode: The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
|
2661
2666
|
:param _builtins.bool should_use_jndi: If set to true, Java Naming and Directory Interface (JNDI) properties should be provided.
|
2662
|
-
:param _builtins.bool should_use_resource_principal:
|
2667
|
+
:param _builtins.bool should_use_resource_principal: Specifies that the user intends to authenticate to the instance using a resource principal. Default: false
|
2663
2668
|
:param _builtins.bool should_validate_server_certificate: If set to true, the driver validates the certificate that is sent by the database server.
|
2664
2669
|
:param _builtins.str ssl_ca: Database Certificate - The base64 encoded content of a .pem or .crt file. containing the server public key (for 1-way SSL). The supported file formats are .pem and .crt. In case of MYSQL and POSTGRESQL connections it is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
2665
2670
|
:param _builtins.str ssl_cert: Client Certificate - The base64 encoded content of a .pem or .crt file containing the client public key (for 2-way SSL). It is not included in GET responses if the `view=COMPACT` query parameter is specified.
|
@@ -2701,6 +2706,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2701
2706
|
pulumi.set(__self__, "additional_attributes", additional_attributes)
|
2702
2707
|
pulumi.set(__self__, "authentication_mode", authentication_mode)
|
2703
2708
|
pulumi.set(__self__, "authentication_type", authentication_type)
|
2709
|
+
pulumi.set(__self__, "azure_authority_host", azure_authority_host)
|
2704
2710
|
pulumi.set(__self__, "azure_tenant_id", azure_tenant_id)
|
2705
2711
|
pulumi.set(__self__, "bootstrap_servers", bootstrap_servers)
|
2706
2712
|
pulumi.set(__self__, "catalogs", catalogs)
|
@@ -2867,6 +2873,16 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2867
2873
|
"""
|
2868
2874
|
return pulumi.get(self, "authentication_type")
|
2869
2875
|
|
2876
|
+
@_builtins.property
|
2877
|
+
@pulumi.getter(name="azureAuthorityHost")
|
2878
|
+
def azure_authority_host(self) -> _builtins.str:
|
2879
|
+
"""
|
2880
|
+
The endpoint used for authentication with Microsoft Entra ID (formerly Azure Active Directory). Default value: https://login.microsoftonline.com When connecting to a non-public Azure Cloud, the endpoint must be provided, eg:
|
2881
|
+
* Azure China: https://login.chinacloudapi.cn/
|
2882
|
+
* Azure US Government: https://login.microsoftonline.us/
|
2883
|
+
"""
|
2884
|
+
return pulumi.get(self, "azure_authority_host")
|
2885
|
+
|
2870
2886
|
@_builtins.property
|
2871
2887
|
@pulumi.getter(name="azureTenantId")
|
2872
2888
|
def azure_tenant_id(self) -> _builtins.str:
|
@@ -3048,6 +3064,9 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
3048
3064
|
@_builtins.property
|
3049
3065
|
@pulumi.getter
|
3050
3066
|
def fingerprint(self) -> _builtins.str:
|
3067
|
+
"""
|
3068
|
+
Fingerprint required by TLS security protocol. E.g.: '6152b2dfbff200f973c5074a5b91d06ab3b472c07c09a1ea57bb7fd406cdce9c'
|
3069
|
+
"""
|
3051
3070
|
return pulumi.get(self, "fingerprint")
|
3052
3071
|
|
3053
3072
|
@_builtins.property
|
@@ -3366,7 +3385,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
3366
3385
|
@pulumi.getter(name="shouldUseResourcePrincipal")
|
3367
3386
|
def should_use_resource_principal(self) -> _builtins.bool:
|
3368
3387
|
"""
|
3369
|
-
|
3388
|
+
Specifies that the user intends to authenticate to the instance using a resource principal. Default: false
|
3370
3389
|
"""
|
3371
3390
|
return pulumi.get(self, "should_use_resource_principal")
|
3372
3391
|
|
@@ -5767,6 +5786,7 @@ class GetDeploymentPeersDeploymentPeerCollectionItemResult(dict):
|
|
5767
5786
|
region: _builtins.str,
|
5768
5787
|
state: _builtins.str,
|
5769
5788
|
time_created: _builtins.str,
|
5789
|
+
time_last_synced: _builtins.str,
|
5770
5790
|
time_role_changed: _builtins.str,
|
5771
5791
|
time_updated: _builtins.str):
|
5772
5792
|
"""
|
@@ -5779,6 +5799,7 @@ class GetDeploymentPeersDeploymentPeerCollectionItemResult(dict):
|
|
5779
5799
|
:param _builtins.str region: The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
|
5780
5800
|
:param _builtins.str state: A filter to return only the resources that match the 'lifecycleState' given.
|
5781
5801
|
:param _builtins.str time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5802
|
+
:param _builtins.str time_last_synced: The time of the last data synchronization from the primary to the standby peer. [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5782
5803
|
:param _builtins.str time_role_changed: The time of the last role change. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5783
5804
|
:param _builtins.str time_updated: The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5784
5805
|
"""
|
@@ -5791,6 +5812,7 @@ class GetDeploymentPeersDeploymentPeerCollectionItemResult(dict):
|
|
5791
5812
|
pulumi.set(__self__, "region", region)
|
5792
5813
|
pulumi.set(__self__, "state", state)
|
5793
5814
|
pulumi.set(__self__, "time_created", time_created)
|
5815
|
+
pulumi.set(__self__, "time_last_synced", time_last_synced)
|
5794
5816
|
pulumi.set(__self__, "time_role_changed", time_role_changed)
|
5795
5817
|
pulumi.set(__self__, "time_updated", time_updated)
|
5796
5818
|
|
@@ -5866,6 +5888,14 @@ class GetDeploymentPeersDeploymentPeerCollectionItemResult(dict):
|
|
5866
5888
|
"""
|
5867
5889
|
return pulumi.get(self, "time_created")
|
5868
5890
|
|
5891
|
+
@_builtins.property
|
5892
|
+
@pulumi.getter(name="timeLastSynced")
|
5893
|
+
def time_last_synced(self) -> _builtins.str:
|
5894
|
+
"""
|
5895
|
+
The time of the last data synchronization from the primary to the standby peer. [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5896
|
+
"""
|
5897
|
+
return pulumi.get(self, "time_last_synced")
|
5898
|
+
|
5869
5899
|
@_builtins.property
|
5870
5900
|
@pulumi.getter(name="timeRoleChanged")
|
5871
5901
|
def time_role_changed(self) -> _builtins.str:
|
@@ -6678,6 +6708,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6678
6708
|
def __init__(__self__, *,
|
6679
6709
|
availability_domain: _builtins.str,
|
6680
6710
|
backup_schedules: Sequence['outputs.GetDeploymentsDeploymentCollectionItemBackupScheduleResult'],
|
6711
|
+
byol_cpu_core_count_limit: _builtins.int,
|
6681
6712
|
category: _builtins.str,
|
6682
6713
|
compartment_id: _builtins.str,
|
6683
6714
|
cpu_core_count: _builtins.int,
|
@@ -6696,6 +6727,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6696
6727
|
id: _builtins.str,
|
6697
6728
|
ingress_ips: Sequence['outputs.GetDeploymentsDeploymentCollectionItemIngressIpResult'],
|
6698
6729
|
is_auto_scaling_enabled: _builtins.bool,
|
6730
|
+
is_byol_cpu_core_count_limit_enabled: _builtins.bool,
|
6699
6731
|
is_healthy: _builtins.bool,
|
6700
6732
|
is_latest_version: _builtins.bool,
|
6701
6733
|
is_lock_override: _builtins.bool,
|
@@ -6732,6 +6764,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6732
6764
|
"""
|
6733
6765
|
:param _builtins.str availability_domain: The availability domain of a placement.
|
6734
6766
|
:param Sequence['GetDeploymentsDeploymentCollectionItemBackupScheduleArgs'] backup_schedules: Defines the schedule of the deployment backup.
|
6767
|
+
:param _builtins.int byol_cpu_core_count_limit: The maximum number of CPUs allowed with a 'Bring Your Own License' (BYOL) license type. Any CPU usage above this limit is considered as License Included and billed.
|
6735
6768
|
:param _builtins.str category: The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
|
6736
6769
|
:param _builtins.str compartment_id: The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
|
6737
6770
|
:param _builtins.int cpu_core_count: The Minimum number of OCPUs to be made available for this Deployment.
|
@@ -6739,7 +6772,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6739
6772
|
:param _builtins.str deployment_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup being referenced.
|
6740
6773
|
:param Sequence['GetDeploymentsDeploymentCollectionItemDeploymentDiagnosticDataArgs'] deployment_diagnostic_datas: Information regarding the deployment diagnostic collection
|
6741
6774
|
:param _builtins.str deployment_role: The type of the deployment role.
|
6742
|
-
:param _builtins.str deployment_type:
|
6775
|
+
:param _builtins.str deployment_type: A filter that returns only the resources matching the specified 'deploymentType'.
|
6743
6776
|
:param _builtins.str deployment_url: The URL of a resource.
|
6744
6777
|
:param _builtins.str description: Metadata about this specific object.
|
6745
6778
|
:param _builtins.str display_name: A filter to return only the resources that match the entire 'displayName' given.
|
@@ -6750,6 +6783,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6750
6783
|
:param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
6751
6784
|
:param Sequence['GetDeploymentsDeploymentCollectionItemIngressIpArgs'] ingress_ips: List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
|
6752
6785
|
:param _builtins.bool is_auto_scaling_enabled: Indicates if auto scaling is enabled for the Deployment's CPU core count.
|
6786
|
+
:param _builtins.bool is_byol_cpu_core_count_limit_enabled: Flag to allow to configure the 'Bring Your Own License' (BYOL) license type CPU limit. If enabled, the exact number of CPUs must be provided via byolCpuCoreCountLimit.
|
6753
6787
|
:param _builtins.bool is_healthy: True if all of the aggregate resources are working correctly.
|
6754
6788
|
:param _builtins.bool is_latest_version: Indicates if the resource is the the latest available version.
|
6755
6789
|
:param _builtins.bool is_public: True if this object is publicly available.
|
@@ -6785,6 +6819,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6785
6819
|
"""
|
6786
6820
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
6787
6821
|
pulumi.set(__self__, "backup_schedules", backup_schedules)
|
6822
|
+
pulumi.set(__self__, "byol_cpu_core_count_limit", byol_cpu_core_count_limit)
|
6788
6823
|
pulumi.set(__self__, "category", category)
|
6789
6824
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
6790
6825
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
@@ -6803,6 +6838,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6803
6838
|
pulumi.set(__self__, "id", id)
|
6804
6839
|
pulumi.set(__self__, "ingress_ips", ingress_ips)
|
6805
6840
|
pulumi.set(__self__, "is_auto_scaling_enabled", is_auto_scaling_enabled)
|
6841
|
+
pulumi.set(__self__, "is_byol_cpu_core_count_limit_enabled", is_byol_cpu_core_count_limit_enabled)
|
6806
6842
|
pulumi.set(__self__, "is_healthy", is_healthy)
|
6807
6843
|
pulumi.set(__self__, "is_latest_version", is_latest_version)
|
6808
6844
|
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
@@ -6853,6 +6889,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6853
6889
|
"""
|
6854
6890
|
return pulumi.get(self, "backup_schedules")
|
6855
6891
|
|
6892
|
+
@_builtins.property
|
6893
|
+
@pulumi.getter(name="byolCpuCoreCountLimit")
|
6894
|
+
def byol_cpu_core_count_limit(self) -> _builtins.int:
|
6895
|
+
"""
|
6896
|
+
The maximum number of CPUs allowed with a 'Bring Your Own License' (BYOL) license type. Any CPU usage above this limit is considered as License Included and billed.
|
6897
|
+
"""
|
6898
|
+
return pulumi.get(self, "byol_cpu_core_count_limit")
|
6899
|
+
|
6856
6900
|
@_builtins.property
|
6857
6901
|
@pulumi.getter
|
6858
6902
|
def category(self) -> _builtins.str:
|
@@ -6913,7 +6957,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6913
6957
|
@pulumi.getter(name="deploymentType")
|
6914
6958
|
def deployment_type(self) -> _builtins.str:
|
6915
6959
|
"""
|
6916
|
-
|
6960
|
+
A filter that returns only the resources matching the specified 'deploymentType'.
|
6917
6961
|
"""
|
6918
6962
|
return pulumi.get(self, "deployment_type")
|
6919
6963
|
|
@@ -6997,6 +7041,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6997
7041
|
"""
|
6998
7042
|
return pulumi.get(self, "is_auto_scaling_enabled")
|
6999
7043
|
|
7044
|
+
@_builtins.property
|
7045
|
+
@pulumi.getter(name="isByolCpuCoreCountLimitEnabled")
|
7046
|
+
def is_byol_cpu_core_count_limit_enabled(self) -> _builtins.bool:
|
7047
|
+
"""
|
7048
|
+
Flag to allow to configure the 'Bring Your Own License' (BYOL) license type CPU limit. If enabled, the exact number of CPUs must be provided via byolCpuCoreCountLimit.
|
7049
|
+
"""
|
7050
|
+
return pulumi.get(self, "is_byol_cpu_core_count_limit_enabled")
|
7051
|
+
|
7000
7052
|
@_builtins.property
|
7001
7053
|
@pulumi.getter(name="isHealthy")
|
7002
7054
|
def is_healthy(self) -> _builtins.bool:
|
@@ -8048,7 +8100,7 @@ class GetPipelineProcessOptionResult(dict):
|
|
8048
8100
|
:param Sequence['GetPipelineProcessOptionInitialDataLoadArgs'] initial_data_loads: Options required for the pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
|
8049
8101
|
:param Sequence['GetPipelineProcessOptionReplicateSchemaChangeArgs'] replicate_schema_changes: Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
|
8050
8102
|
:param _builtins.str should_restart_on_failure: If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
|
8051
|
-
:param _builtins.str start_using_default_mapping: If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating
|
8103
|
+
:param _builtins.str start_using_default_mapping: If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option only applies when creating a pipeline and is not applicable while updating a pipeline.
|
8052
8104
|
"""
|
8053
8105
|
pulumi.set(__self__, "initial_data_loads", initial_data_loads)
|
8054
8106
|
pulumi.set(__self__, "replicate_schema_changes", replicate_schema_changes)
|
@@ -8083,7 +8135,7 @@ class GetPipelineProcessOptionResult(dict):
|
|
8083
8135
|
@pulumi.getter(name="startUsingDefaultMapping")
|
8084
8136
|
def start_using_default_mapping(self) -> _builtins.str:
|
8085
8137
|
"""
|
8086
|
-
If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating
|
8138
|
+
If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option only applies when creating a pipeline and is not applicable while updating a pipeline.
|
8087
8139
|
"""
|
8088
8140
|
return pulumi.get(self, "start_using_default_mapping")
|
8089
8141
|
|
@@ -8917,7 +8969,7 @@ class GetPipelinesPipelineCollectionItemProcessOptionResult(dict):
|
|
8917
8969
|
:param Sequence['GetPipelinesPipelineCollectionItemProcessOptionInitialDataLoadArgs'] initial_data_loads: Options required for the pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
|
8918
8970
|
:param Sequence['GetPipelinesPipelineCollectionItemProcessOptionReplicateSchemaChangeArgs'] replicate_schema_changes: Options required for pipeline Initial Data Load. If enabled, copies existing data from source to target before replication.
|
8919
8971
|
:param _builtins.str should_restart_on_failure: If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.
|
8920
|
-
:param _builtins.str start_using_default_mapping: If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating
|
8972
|
+
:param _builtins.str start_using_default_mapping: If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option only applies when creating a pipeline and is not applicable while updating a pipeline.
|
8921
8973
|
"""
|
8922
8974
|
pulumi.set(__self__, "initial_data_loads", initial_data_loads)
|
8923
8975
|
pulumi.set(__self__, "replicate_schema_changes", replicate_schema_changes)
|
@@ -8952,7 +9004,7 @@ class GetPipelinesPipelineCollectionItemProcessOptionResult(dict):
|
|
8952
9004
|
@pulumi.getter(name="startUsingDefaultMapping")
|
8953
9005
|
def start_using_default_mapping(self) -> _builtins.str:
|
8954
9006
|
"""
|
8955
|
-
If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating
|
9007
|
+
If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option only applies when creating a pipeline and is not applicable while updating a pipeline.
|
8956
9008
|
"""
|
8957
9009
|
return pulumi.get(self, "start_using_default_mapping")
|
8958
9010
|
|
@@ -15,11 +15,15 @@ from .get_management_agent_get_auto_upgradable_config import *
|
|
15
15
|
from .get_management_agent_images import *
|
16
16
|
from .get_management_agent_install_key import *
|
17
17
|
from .get_management_agent_install_keys import *
|
18
|
+
from .get_management_agent_named_credentials_metadata import *
|
18
19
|
from .get_management_agent_plugin_count import *
|
19
20
|
from .get_management_agent_plugins import *
|
20
21
|
from .get_management_agents import *
|
22
|
+
from .get_named_credential import *
|
23
|
+
from .get_named_credentials import *
|
21
24
|
from .management_agent import *
|
22
25
|
from .management_agent_data_source import *
|
23
26
|
from .management_agent_install_key import *
|
27
|
+
from .named_credential import *
|
24
28
|
from ._inputs import *
|
25
29
|
from . import outputs
|
@@ -27,6 +27,8 @@ __all__ = [
|
|
27
27
|
'ManagementAgentManagementAgentPropertyArgsDict',
|
28
28
|
'ManagementAgentPluginListArgs',
|
29
29
|
'ManagementAgentPluginListArgsDict',
|
30
|
+
'NamedCredentialPropertyArgs',
|
31
|
+
'NamedCredentialPropertyArgsDict',
|
30
32
|
'GetManagementAgentAvailableHistoriesFilterArgs',
|
31
33
|
'GetManagementAgentAvailableHistoriesFilterArgsDict',
|
32
34
|
'GetManagementAgentDataSourcesFilterArgs',
|
@@ -39,6 +41,8 @@ __all__ = [
|
|
39
41
|
'GetManagementAgentPluginsFilterArgsDict',
|
40
42
|
'GetManagementAgentsFilterArgs',
|
41
43
|
'GetManagementAgentsFilterArgsDict',
|
44
|
+
'GetNamedCredentialsFilterArgs',
|
45
|
+
'GetNamedCredentialsFilterArgsDict',
|
42
46
|
]
|
43
47
|
|
44
48
|
MYPY = False
|
@@ -833,6 +837,75 @@ class ManagementAgentPluginListArgs:
|
|
833
837
|
pulumi.set(self, "plugin_version", value)
|
834
838
|
|
835
839
|
|
840
|
+
if not MYPY:
|
841
|
+
class NamedCredentialPropertyArgsDict(TypedDict):
|
842
|
+
name: pulumi.Input[_builtins.str]
|
843
|
+
"""
|
844
|
+
(Updatable) Name of the property
|
845
|
+
"""
|
846
|
+
value: pulumi.Input[_builtins.str]
|
847
|
+
"""
|
848
|
+
(Updatable) Value of the property
|
849
|
+
"""
|
850
|
+
value_category: pulumi.Input[_builtins.str]
|
851
|
+
"""
|
852
|
+
(Updatable) The category of the Named credential property value. CLEAR_TEXT indicates the value field contains a clear text value. SECRET_IDENTIFIER indicates the value field contains a vault secret ocid identifier. ADB_IDENTIFIER indicates the value field contains an Autonomous database ocid identifier. ALLOWED_VALUE indicates the value should be selected from the options in the allowedValues field.
|
853
|
+
"""
|
854
|
+
elif False:
|
855
|
+
NamedCredentialPropertyArgsDict: TypeAlias = Mapping[str, Any]
|
856
|
+
|
857
|
+
@pulumi.input_type
|
858
|
+
class NamedCredentialPropertyArgs:
|
859
|
+
def __init__(__self__, *,
|
860
|
+
name: pulumi.Input[_builtins.str],
|
861
|
+
value: pulumi.Input[_builtins.str],
|
862
|
+
value_category: pulumi.Input[_builtins.str]):
|
863
|
+
"""
|
864
|
+
:param pulumi.Input[_builtins.str] name: (Updatable) Name of the property
|
865
|
+
:param pulumi.Input[_builtins.str] value: (Updatable) Value of the property
|
866
|
+
:param pulumi.Input[_builtins.str] value_category: (Updatable) The category of the Named credential property value. CLEAR_TEXT indicates the value field contains a clear text value. SECRET_IDENTIFIER indicates the value field contains a vault secret ocid identifier. ADB_IDENTIFIER indicates the value field contains an Autonomous database ocid identifier. ALLOWED_VALUE indicates the value should be selected from the options in the allowedValues field.
|
867
|
+
"""
|
868
|
+
pulumi.set(__self__, "name", name)
|
869
|
+
pulumi.set(__self__, "value", value)
|
870
|
+
pulumi.set(__self__, "value_category", value_category)
|
871
|
+
|
872
|
+
@_builtins.property
|
873
|
+
@pulumi.getter
|
874
|
+
def name(self) -> pulumi.Input[_builtins.str]:
|
875
|
+
"""
|
876
|
+
(Updatable) Name of the property
|
877
|
+
"""
|
878
|
+
return pulumi.get(self, "name")
|
879
|
+
|
880
|
+
@name.setter
|
881
|
+
def name(self, value: pulumi.Input[_builtins.str]):
|
882
|
+
pulumi.set(self, "name", value)
|
883
|
+
|
884
|
+
@_builtins.property
|
885
|
+
@pulumi.getter
|
886
|
+
def value(self) -> pulumi.Input[_builtins.str]:
|
887
|
+
"""
|
888
|
+
(Updatable) Value of the property
|
889
|
+
"""
|
890
|
+
return pulumi.get(self, "value")
|
891
|
+
|
892
|
+
@value.setter
|
893
|
+
def value(self, value: pulumi.Input[_builtins.str]):
|
894
|
+
pulumi.set(self, "value", value)
|
895
|
+
|
896
|
+
@_builtins.property
|
897
|
+
@pulumi.getter(name="valueCategory")
|
898
|
+
def value_category(self) -> pulumi.Input[_builtins.str]:
|
899
|
+
"""
|
900
|
+
(Updatable) The category of the Named credential property value. CLEAR_TEXT indicates the value field contains a clear text value. SECRET_IDENTIFIER indicates the value field contains a vault secret ocid identifier. ADB_IDENTIFIER indicates the value field contains an Autonomous database ocid identifier. ALLOWED_VALUE indicates the value should be selected from the options in the allowedValues field.
|
901
|
+
"""
|
902
|
+
return pulumi.get(self, "value_category")
|
903
|
+
|
904
|
+
@value_category.setter
|
905
|
+
def value_category(self, value: pulumi.Input[_builtins.str]):
|
906
|
+
pulumi.set(self, "value_category", value)
|
907
|
+
|
908
|
+
|
836
909
|
if not MYPY:
|
837
910
|
class GetManagementAgentAvailableHistoriesFilterArgsDict(TypedDict):
|
838
911
|
name: _builtins.str
|
@@ -1158,3 +1231,59 @@ class GetManagementAgentsFilterArgs:
|
|
1158
1231
|
pulumi.set(self, "regex", value)
|
1159
1232
|
|
1160
1233
|
|
1234
|
+
if not MYPY:
|
1235
|
+
class GetNamedCredentialsFilterArgsDict(TypedDict):
|
1236
|
+
name: _builtins.str
|
1237
|
+
"""
|
1238
|
+
Filter list for these name items.
|
1239
|
+
"""
|
1240
|
+
values: Sequence[_builtins.str]
|
1241
|
+
regex: NotRequired[_builtins.bool]
|
1242
|
+
elif False:
|
1243
|
+
GetNamedCredentialsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1244
|
+
|
1245
|
+
@pulumi.input_type
|
1246
|
+
class GetNamedCredentialsFilterArgs:
|
1247
|
+
def __init__(__self__, *,
|
1248
|
+
name: _builtins.str,
|
1249
|
+
values: Sequence[_builtins.str],
|
1250
|
+
regex: Optional[_builtins.bool] = None):
|
1251
|
+
"""
|
1252
|
+
:param _builtins.str name: Filter list for these name items.
|
1253
|
+
"""
|
1254
|
+
pulumi.set(__self__, "name", name)
|
1255
|
+
pulumi.set(__self__, "values", values)
|
1256
|
+
if regex is not None:
|
1257
|
+
pulumi.set(__self__, "regex", regex)
|
1258
|
+
|
1259
|
+
@_builtins.property
|
1260
|
+
@pulumi.getter
|
1261
|
+
def name(self) -> _builtins.str:
|
1262
|
+
"""
|
1263
|
+
Filter list for these name items.
|
1264
|
+
"""
|
1265
|
+
return pulumi.get(self, "name")
|
1266
|
+
|
1267
|
+
@name.setter
|
1268
|
+
def name(self, value: _builtins.str):
|
1269
|
+
pulumi.set(self, "name", value)
|
1270
|
+
|
1271
|
+
@_builtins.property
|
1272
|
+
@pulumi.getter
|
1273
|
+
def values(self) -> Sequence[_builtins.str]:
|
1274
|
+
return pulumi.get(self, "values")
|
1275
|
+
|
1276
|
+
@values.setter
|
1277
|
+
def values(self, value: Sequence[_builtins.str]):
|
1278
|
+
pulumi.set(self, "values", value)
|
1279
|
+
|
1280
|
+
@_builtins.property
|
1281
|
+
@pulumi.getter
|
1282
|
+
def regex(self) -> Optional[_builtins.bool]:
|
1283
|
+
return pulumi.get(self, "regex")
|
1284
|
+
|
1285
|
+
@regex.setter
|
1286
|
+
def regex(self, value: Optional[_builtins.bool]):
|
1287
|
+
pulumi.set(self, "regex", value)
|
1288
|
+
|
1289
|
+
|