pulumi-oci 3.4.0a1755714728__py3-none-any.whl → 3.4.0a1755922408__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.
Files changed (198) hide show
  1. pulumi_oci/__init__.py +168 -43
  2. pulumi_oci/aidocument/__init__.py +1 -0
  3. pulumi_oci/aidocument/_inputs.py +476 -6
  4. pulumi_oci/aidocument/get_model.py +63 -2
  5. pulumi_oci/aidocument/get_model_type.py +179 -0
  6. pulumi_oci/aidocument/get_models.py +1 -1
  7. pulumi_oci/aidocument/get_project.py +17 -2
  8. pulumi_oci/aidocument/get_projects.py +1 -1
  9. pulumi_oci/aidocument/model.py +188 -0
  10. pulumi_oci/aidocument/outputs.py +883 -8
  11. pulumi_oci/aidocument/processor_job.py +22 -4
  12. pulumi_oci/aidocument/project.py +50 -1
  13. pulumi_oci/apigateway/_inputs.py +608 -12
  14. pulumi_oci/apigateway/api.py +127 -38
  15. pulumi_oci/apigateway/certificate.py +122 -3
  16. pulumi_oci/apigateway/deployment.py +120 -3
  17. pulumi_oci/apigateway/gateway.py +124 -7
  18. pulumi_oci/apigateway/get_api.py +40 -1
  19. pulumi_oci/apigateway/get_certificate.py +41 -1
  20. pulumi_oci/apigateway/get_deployment.py +40 -1
  21. pulumi_oci/apigateway/get_gateway.py +40 -1
  22. pulumi_oci/apigateway/get_subscriber.py +40 -1
  23. pulumi_oci/apigateway/get_usage_plan.py +40 -1
  24. pulumi_oci/apigateway/outputs.py +1413 -39
  25. pulumi_oci/apigateway/subscriber.py +120 -3
  26. pulumi_oci/apigateway/usage_plan.py +127 -38
  27. pulumi_oci/apmconfig/_inputs.py +199 -15
  28. pulumi_oci/apmconfig/config.py +535 -17
  29. pulumi_oci/apmconfig/get_config.py +141 -1
  30. pulumi_oci/apmconfig/get_configs.py +2 -2
  31. pulumi_oci/apmconfig/outputs.py +509 -13
  32. pulumi_oci/apmtraces/__init__.py +5 -0
  33. pulumi_oci/apmtraces/_inputs.py +413 -0
  34. pulumi_oci/apmtraces/get_attribute_auto_activate_status.py +160 -0
  35. pulumi_oci/apmtraces/get_log.py +356 -0
  36. pulumi_oci/apmtraces/get_scheduled_queries.py +163 -0
  37. pulumi_oci/apmtraces/get_scheduled_query.py +368 -0
  38. pulumi_oci/apmtraces/get_trace.py +4 -4
  39. pulumi_oci/apmtraces/outputs.py +971 -0
  40. pulumi_oci/apmtraces/scheduled_query.py +925 -0
  41. pulumi_oci/autoscaling/_inputs.py +177 -13
  42. pulumi_oci/autoscaling/auto_scaling_configuration.py +12 -0
  43. pulumi_oci/autoscaling/outputs.py +269 -23
  44. pulumi_oci/core/_inputs.py +184 -0
  45. pulumi_oci/core/get_ipv6.py +15 -1
  46. pulumi_oci/core/ipv6.py +49 -0
  47. pulumi_oci/core/outputs.py +365 -0
  48. pulumi_oci/database/__init__.py +3 -0
  49. pulumi_oci/database/_inputs.py +139 -7
  50. pulumi_oci/database/autonomous_container_database.py +94 -0
  51. pulumi_oci/database/autonomous_container_database_add_standby.py +28 -0
  52. pulumi_oci/database/autonomous_database.py +578 -568
  53. pulumi_oci/database/autonomous_database_saas_admin_user.py +43 -60
  54. pulumi_oci/database/get_autonomous_container_database.py +29 -1
  55. pulumi_oci/database/get_autonomous_database.py +65 -1
  56. pulumi_oci/database/get_autonomous_databases.py +6 -1
  57. pulumi_oci/database/get_pluggable_database_snapshot.py +253 -0
  58. pulumi_oci/database/get_pluggable_database_snapshots.py +235 -0
  59. pulumi_oci/database/outputs.py +470 -75
  60. pulumi_oci/database/pluggable_database.py +0 -14
  61. pulumi_oci/database/pluggable_database_snapshot.py +539 -0
  62. pulumi_oci/databasemanagement/__init__.py +37 -0
  63. pulumi_oci/databasemanagement/_inputs.py +9516 -3414
  64. pulumi_oci/databasemanagement/cloud_asm.py +791 -0
  65. pulumi_oci/databasemanagement/cloud_asm_instance.py +686 -0
  66. pulumi_oci/databasemanagement/cloud_cluster.py +847 -0
  67. pulumi_oci/databasemanagement/cloud_cluster_instance.py +789 -0
  68. pulumi_oci/databasemanagement/cloud_db_home.py +630 -0
  69. pulumi_oci/databasemanagement/cloud_db_node.py +761 -0
  70. pulumi_oci/databasemanagement/cloud_db_system.py +789 -0
  71. pulumi_oci/databasemanagement/cloud_db_system_cloud_database_managements_management.py +354 -0
  72. pulumi_oci/databasemanagement/cloud_db_system_cloud_stack_monitorings_management.py +354 -0
  73. pulumi_oci/databasemanagement/cloud_db_system_connector.py +761 -0
  74. pulumi_oci/databasemanagement/cloud_db_system_discovery.py +754 -0
  75. pulumi_oci/databasemanagement/cloud_listener.py +1043 -0
  76. pulumi_oci/databasemanagement/get_cloud_asm.py +380 -0
  77. pulumi_oci/databasemanagement/get_cloud_asm_configuration.py +147 -0
  78. pulumi_oci/databasemanagement/get_cloud_asm_disk_groups.py +163 -0
  79. pulumi_oci/databasemanagement/get_cloud_asm_instance.py +337 -0
  80. pulumi_oci/databasemanagement/get_cloud_asm_instances.py +191 -0
  81. pulumi_oci/databasemanagement/get_cloud_asm_users.py +163 -0
  82. pulumi_oci/databasemanagement/get_cloud_asms.py +191 -0
  83. pulumi_oci/databasemanagement/get_cloud_cluster.py +408 -0
  84. pulumi_oci/databasemanagement/get_cloud_cluster_instance.py +379 -0
  85. pulumi_oci/databasemanagement/get_cloud_cluster_instances.py +191 -0
  86. pulumi_oci/databasemanagement/get_cloud_clusters.py +191 -0
  87. pulumi_oci/databasemanagement/get_cloud_databases.py +188 -0
  88. pulumi_oci/databasemanagement/get_cloud_db_home.py +309 -0
  89. pulumi_oci/databasemanagement/get_cloud_db_homes.py +191 -0
  90. pulumi_oci/databasemanagement/get_cloud_db_node.py +365 -0
  91. pulumi_oci/databasemanagement/get_cloud_db_nodes.py +191 -0
  92. pulumi_oci/databasemanagement/get_cloud_db_system.py +352 -0
  93. pulumi_oci/databasemanagement/get_cloud_db_system_connector.py +338 -0
  94. pulumi_oci/databasemanagement/get_cloud_db_system_connectors.py +191 -0
  95. pulumi_oci/databasemanagement/get_cloud_db_system_discoveries.py +169 -0
  96. pulumi_oci/databasemanagement/get_cloud_db_system_discovery.py +335 -0
  97. pulumi_oci/databasemanagement/get_cloud_db_systems.py +235 -0
  98. pulumi_oci/databasemanagement/get_cloud_listener.py +506 -0
  99. pulumi_oci/databasemanagement/get_cloud_listener_services.py +187 -0
  100. pulumi_oci/databasemanagement/get_cloud_listeners.py +191 -0
  101. pulumi_oci/databasemanagement/get_managed_database.py +2 -2
  102. pulumi_oci/databasemanagement/get_managed_database_group.py +2 -2
  103. pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +6 -6
  104. pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +5 -5
  105. pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +2 -2
  106. pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +2 -2
  107. pulumi_oci/databasemanagement/outputs.py +18049 -4222
  108. pulumi_oci/datasafe/get_security_assessment_finding_analytics.py +22 -1
  109. pulumi_oci/datasafe/get_security_assessment_findings.py +2 -2
  110. pulumi_oci/datasafe/get_security_assessments.py +2 -2
  111. pulumi_oci/datasafe/outputs.py +192 -2
  112. pulumi_oci/datascience/__init__.py +10 -0
  113. pulumi_oci/datascience/_inputs.py +6760 -2206
  114. pulumi_oci/datascience/get_job.py +15 -1
  115. pulumi_oci/datascience/get_job_run.py +44 -2
  116. pulumi_oci/datascience/get_model_deployment_model_states.py +251 -0
  117. pulumi_oci/datascience/get_model_group.py +405 -0
  118. pulumi_oci/datascience/get_model_group_artifact_content.py +132 -0
  119. pulumi_oci/datascience/get_model_group_models.py +240 -0
  120. pulumi_oci/datascience/get_model_group_version_histories.py +243 -0
  121. pulumi_oci/{aianomalydetection/get_detection_model.py → datascience/get_model_group_version_history.py} +73 -74
  122. pulumi_oci/datascience/get_model_groups.py +265 -0
  123. pulumi_oci/datascience/get_pipeline_run.py +15 -1
  124. pulumi_oci/datascience/job.py +81 -154
  125. pulumi_oci/datascience/job_run.py +250 -4
  126. pulumi_oci/datascience/model_group.py +1111 -0
  127. pulumi_oci/datascience/model_group_artifact.py +369 -0
  128. pulumi_oci/{aianomalydetection/model.py → datascience/model_group_version_history.py} +172 -187
  129. pulumi_oci/datascience/notebook_session.py +4 -0
  130. pulumi_oci/datascience/outputs.py +17168 -8021
  131. pulumi_oci/datascience/pipeline_run.py +87 -0
  132. pulumi_oci/goldengate/_inputs.py +3 -3
  133. pulumi_oci/goldengate/connection.py +175 -56
  134. pulumi_oci/goldengate/get_connection.py +20 -4
  135. pulumi_oci/goldengate/outputs.py +27 -8
  136. pulumi_oci/managementagent/__init__.py +4 -0
  137. pulumi_oci/managementagent/_inputs.py +129 -0
  138. pulumi_oci/managementagent/get_management_agent.py +26 -1
  139. pulumi_oci/managementagent/get_management_agent_install_key.py +43 -1
  140. pulumi_oci/managementagent/get_management_agent_named_credentials_metadata.py +147 -0
  141. pulumi_oci/managementagent/get_named_credential.py +268 -0
  142. pulumi_oci/managementagent/get_named_credentials.py +221 -0
  143. pulumi_oci/managementagent/management_agent.py +48 -0
  144. pulumi_oci/managementagent/management_agent_install_key.py +84 -0
  145. pulumi_oci/managementagent/named_credential.py +706 -0
  146. pulumi_oci/managementagent/outputs.py +515 -0
  147. pulumi_oci/managementdashboard/management_dashboards_import.py +178 -20
  148. pulumi_oci/oci/__init__.py +3 -0
  149. pulumi_oci/oci/_inputs.py +146 -0
  150. pulumi_oci/{aianomalydetection/project.py → oci/api_platform_api_platform_instance.py} +204 -118
  151. pulumi_oci/oci/get_api_platform_api_platform_instance.py +282 -0
  152. pulumi_oci/oci/get_api_platform_api_platform_instances.py +199 -0
  153. pulumi_oci/oci/outputs.py +367 -0
  154. pulumi_oci/opsi/_inputs.py +1001 -149
  155. pulumi_oci/opsi/database_insight.py +22 -3
  156. pulumi_oci/opsi/exadata_insight.py +86 -6
  157. pulumi_oci/opsi/outputs.py +1438 -178
  158. pulumi_oci/psql/configuration.py +109 -19
  159. pulumi_oci/psql/db_system.py +7 -7
  160. pulumi_oci/psql/get_configuration.py +30 -2
  161. pulumi_oci/psql/get_configurations.py +49 -5
  162. pulumi_oci/psql/get_db_system.py +1 -1
  163. pulumi_oci/psql/get_default_configuration.py +30 -4
  164. pulumi_oci/psql/get_default_configurations.py +49 -5
  165. pulumi_oci/psql/outputs.py +47 -14
  166. pulumi_oci/pulumi-plugin.json +1 -1
  167. pulumi_oci/redis/__init__.py +6 -0
  168. pulumi_oci/redis/_inputs.py +217 -0
  169. pulumi_oci/{aianomalydetection/get_detection_data_asset.py → redis/get_oci_cache_config_set.py} +74 -74
  170. pulumi_oci/redis/get_oci_cache_config_sets.py +221 -0
  171. pulumi_oci/redis/get_oci_cache_default_config_set.py +217 -0
  172. pulumi_oci/redis/get_oci_cache_default_config_sets.py +218 -0
  173. pulumi_oci/redis/get_redis_cluster.py +15 -1
  174. pulumi_oci/{aianomalydetection/data_asset.py → redis/oci_cache_config_set.py} +190 -254
  175. pulumi_oci/redis/oci_cache_config_setlist_associated_oci_cache_cluster.py +240 -0
  176. pulumi_oci/redis/outputs.py +713 -0
  177. pulumi_oci/redis/redis_cluster.py +49 -0
  178. pulumi_oci/vault/_inputs.py +198 -0
  179. pulumi_oci/vault/get_secret.py +43 -1
  180. pulumi_oci/vault/outputs.py +434 -0
  181. pulumi_oci/vault/secret.py +103 -0
  182. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/METADATA +1 -1
  183. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/RECORD +185 -134
  184. pulumi_oci/aianomalydetection/__init__.py +0 -25
  185. pulumi_oci/aianomalydetection/_inputs.py +0 -1742
  186. pulumi_oci/aianomalydetection/ai_private_endpoint.py +0 -643
  187. pulumi_oci/aianomalydetection/detect_anomaly_job.py +0 -739
  188. pulumi_oci/aianomalydetection/get_ai_private_endpoint.py +0 -281
  189. pulumi_oci/aianomalydetection/get_ai_private_endpoints.py +0 -199
  190. pulumi_oci/aianomalydetection/get_detect_anomaly_job.py +0 -338
  191. pulumi_oci/aianomalydetection/get_detect_anomaly_jobs.py +0 -254
  192. pulumi_oci/aianomalydetection/get_detection_data_assets.py +0 -213
  193. pulumi_oci/aianomalydetection/get_detection_models.py +0 -213
  194. pulumi_oci/aianomalydetection/get_detection_project.py +0 -239
  195. pulumi_oci/aianomalydetection/get_detection_projects.py +0 -191
  196. pulumi_oci/aianomalydetection/outputs.py +0 -3699
  197. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/WHEEL +0 -0
  198. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,7 @@ class GetConnectionResult:
27
27
  """
28
28
  A collection of values returned by getConnection.
29
29
  """
30
- def __init__(__self__, access_key_id=None, account_key=None, account_key_secret_id=None, account_name=None, additional_attributes=None, authentication_mode=None, authentication_type=None, azure_tenant_id=None, bootstrap_servers=None, catalogs=None, client_id=None, client_secret=None, client_secret_secret_id=None, compartment_id=None, connection_factory=None, connection_id=None, connection_string=None, connection_type=None, connection_url=None, consumer_properties=None, core_site_xml=None, database_id=None, database_name=None, db_system_id=None, defined_tags=None, deployment_id=None, description=None, display_name=None, does_use_secret_ids=None, endpoint=None, fingerprint=None, freeform_tags=None, host=None, id=None, ingress_ips=None, is_lock_override=None, jndi_connection_factory=None, jndi_initial_context_factory=None, jndi_provider_url=None, jndi_security_credentials=None, jndi_security_credentials_secret_id=None, jndi_security_principal=None, key_id=None, key_store=None, key_store_password=None, key_store_password_secret_id=None, key_store_secret_id=None, lifecycle_details=None, locks=None, nsg_ids=None, password=None, password_secret_id=None, port=None, private_ip=None, private_key_file=None, private_key_file_secret_id=None, private_key_passphrase=None, private_key_passphrase_secret_id=None, producer_properties=None, public_key_fingerprint=None, redis_cluster_id=None, region=None, routing_method=None, sas_token=None, sas_token_secret_id=None, secret_access_key=None, secret_access_key_secret_id=None, security_protocol=None, servers=None, service_account_key_file=None, service_account_key_file_secret_id=None, session_mode=None, should_use_jndi=None, should_use_resource_principal=None, should_validate_server_certificate=None, ssl_ca=None, ssl_cert=None, ssl_client_keystash=None, ssl_client_keystash_secret_id=None, ssl_client_keystoredb=None, ssl_client_keystoredb_secret_id=None, ssl_crl=None, ssl_key=None, ssl_key_password=None, ssl_key_password_secret_id=None, ssl_key_secret_id=None, ssl_mode=None, ssl_server_certificate=None, state=None, storage_credential_name=None, storages=None, stream_pool_id=None, subnet_id=None, system_tags=None, technology_type=None, tenancy_id=None, tenant_id=None, time_created=None, time_updated=None, tls_ca_file=None, tls_certificate_key_file=None, tls_certificate_key_file_password=None, tls_certificate_key_file_password_secret_id=None, tls_certificate_key_file_secret_id=None, trigger_refresh=None, trust_store=None, trust_store_password=None, trust_store_password_secret_id=None, trust_store_secret_id=None, url=None, user_id=None, username=None, vault_id=None, wallet=None, wallet_secret_id=None):
30
+ def __init__(__self__, access_key_id=None, account_key=None, account_key_secret_id=None, account_name=None, additional_attributes=None, authentication_mode=None, authentication_type=None, azure_authority_host=None, azure_tenant_id=None, bootstrap_servers=None, catalogs=None, client_id=None, client_secret=None, client_secret_secret_id=None, compartment_id=None, connection_factory=None, connection_id=None, connection_string=None, connection_type=None, connection_url=None, consumer_properties=None, core_site_xml=None, database_id=None, database_name=None, db_system_id=None, defined_tags=None, deployment_id=None, description=None, display_name=None, does_use_secret_ids=None, endpoint=None, fingerprint=None, freeform_tags=None, host=None, id=None, ingress_ips=None, is_lock_override=None, jndi_connection_factory=None, jndi_initial_context_factory=None, jndi_provider_url=None, jndi_security_credentials=None, jndi_security_credentials_secret_id=None, jndi_security_principal=None, key_id=None, key_store=None, key_store_password=None, key_store_password_secret_id=None, key_store_secret_id=None, lifecycle_details=None, locks=None, nsg_ids=None, password=None, password_secret_id=None, port=None, private_ip=None, private_key_file=None, private_key_file_secret_id=None, private_key_passphrase=None, private_key_passphrase_secret_id=None, producer_properties=None, public_key_fingerprint=None, redis_cluster_id=None, region=None, routing_method=None, sas_token=None, sas_token_secret_id=None, secret_access_key=None, secret_access_key_secret_id=None, security_protocol=None, servers=None, service_account_key_file=None, service_account_key_file_secret_id=None, session_mode=None, should_use_jndi=None, should_use_resource_principal=None, should_validate_server_certificate=None, ssl_ca=None, ssl_cert=None, ssl_client_keystash=None, ssl_client_keystash_secret_id=None, ssl_client_keystoredb=None, ssl_client_keystoredb_secret_id=None, ssl_crl=None, ssl_key=None, ssl_key_password=None, ssl_key_password_secret_id=None, ssl_key_secret_id=None, ssl_mode=None, ssl_server_certificate=None, state=None, storage_credential_name=None, storages=None, stream_pool_id=None, subnet_id=None, system_tags=None, technology_type=None, tenancy_id=None, tenant_id=None, time_created=None, time_updated=None, tls_ca_file=None, tls_certificate_key_file=None, tls_certificate_key_file_password=None, tls_certificate_key_file_password_secret_id=None, tls_certificate_key_file_secret_id=None, trigger_refresh=None, trust_store=None, trust_store_password=None, trust_store_password_secret_id=None, trust_store_secret_id=None, url=None, user_id=None, username=None, vault_id=None, wallet=None, wallet_secret_id=None):
31
31
  if access_key_id and not isinstance(access_key_id, str):
32
32
  raise TypeError("Expected argument 'access_key_id' to be a str")
33
33
  pulumi.set(__self__, "access_key_id", access_key_id)
@@ -49,6 +49,9 @@ class GetConnectionResult:
49
49
  if authentication_type and not isinstance(authentication_type, str):
50
50
  raise TypeError("Expected argument 'authentication_type' to be a str")
51
51
  pulumi.set(__self__, "authentication_type", authentication_type)
52
+ if azure_authority_host and not isinstance(azure_authority_host, str):
53
+ raise TypeError("Expected argument 'azure_authority_host' to be a str")
54
+ pulumi.set(__self__, "azure_authority_host", azure_authority_host)
52
55
  if azure_tenant_id and not isinstance(azure_tenant_id, str):
53
56
  raise TypeError("Expected argument 'azure_tenant_id' to be a str")
54
57
  pulumi.set(__self__, "azure_tenant_id", azure_tenant_id)
@@ -432,6 +435,16 @@ class GetConnectionResult:
432
435
  """
433
436
  return pulumi.get(self, "authentication_type")
434
437
 
438
+ @_builtins.property
439
+ @pulumi.getter(name="azureAuthorityHost")
440
+ def azure_authority_host(self) -> _builtins.str:
441
+ """
442
+ 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:
443
+ * Azure China: https://login.chinacloudapi.cn/
444
+ * Azure US Government: https://login.microsoftonline.us/
445
+ """
446
+ return pulumi.get(self, "azure_authority_host")
447
+
435
448
  @_builtins.property
436
449
  @pulumi.getter(name="azureTenantId")
437
450
  def azure_tenant_id(self) -> _builtins.str:
@@ -939,7 +952,7 @@ class GetConnectionResult:
939
952
  @pulumi.getter(name="shouldUseResourcePrincipal")
940
953
  def should_use_resource_principal(self) -> _builtins.bool:
941
954
  """
942
- Indicates that the user intents to connect to the instance through resource principal.
955
+ Specifies that the user intends to authenticate to the instance using a resource principal. Default: false
943
956
  """
944
957
  return pulumi.get(self, "should_use_resource_principal")
945
958
 
@@ -976,7 +989,7 @@ class GetConnectionResult:
976
989
  @pulumi.getter(name="sslClientKeystashSecretId")
977
990
  def ssl_client_keystash_secret_id(self) -> _builtins.str:
978
991
  """
979
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. Note: When provided, 'sslClientKeystash' field must not be provided.
992
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystash file is stored, which contains the encrypted password to the key database file. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
980
993
  """
981
994
  return pulumi.get(self, "ssl_client_keystash_secret_id")
982
995
 
@@ -989,7 +1002,7 @@ class GetConnectionResult:
989
1002
  @pulumi.getter(name="sslClientKeystoredbSecretId")
990
1003
  def ssl_client_keystoredb_secret_id(self) -> _builtins.str:
991
1004
  """
992
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. Note: When provided, 'sslClientKeystoredb' field must not be provided.
1005
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the keystore file stored, which created at the client containing the server certificate / CA root certificate. This property is not supported for IBM Db2 for i, as client TLS mode is not available.
993
1006
  """
994
1007
  return pulumi.get(self, "ssl_client_keystoredb_secret_id")
995
1008
 
@@ -1257,6 +1270,7 @@ class AwaitableGetConnectionResult(GetConnectionResult):
1257
1270
  additional_attributes=self.additional_attributes,
1258
1271
  authentication_mode=self.authentication_mode,
1259
1272
  authentication_type=self.authentication_type,
1273
+ azure_authority_host=self.azure_authority_host,
1260
1274
  azure_tenant_id=self.azure_tenant_id,
1261
1275
  bootstrap_servers=self.bootstrap_servers,
1262
1276
  catalogs=self.catalogs,
@@ -1390,6 +1404,7 @@ def get_connection(connection_id: Optional[_builtins.str] = None,
1390
1404
  additional_attributes=pulumi.get(__ret__, 'additional_attributes'),
1391
1405
  authentication_mode=pulumi.get(__ret__, 'authentication_mode'),
1392
1406
  authentication_type=pulumi.get(__ret__, 'authentication_type'),
1407
+ azure_authority_host=pulumi.get(__ret__, 'azure_authority_host'),
1393
1408
  azure_tenant_id=pulumi.get(__ret__, 'azure_tenant_id'),
1394
1409
  bootstrap_servers=pulumi.get(__ret__, 'bootstrap_servers'),
1395
1410
  catalogs=pulumi.get(__ret__, 'catalogs'),
@@ -1520,6 +1535,7 @@ def get_connection_output(connection_id: Optional[pulumi.Input[_builtins.str]] =
1520
1535
  additional_attributes=pulumi.get(__response__, 'additional_attributes'),
1521
1536
  authentication_mode=pulumi.get(__response__, 'authentication_mode'),
1522
1537
  authentication_type=pulumi.get(__response__, 'authentication_type'),
1538
+ azure_authority_host=pulumi.get(__response__, 'azure_authority_host'),
1523
1539
  azure_tenant_id=pulumi.get(__response__, 'azure_tenant_id'),
1524
1540
  bootstrap_servers=pulumi.get(__response__, 'bootstrap_servers'),
1525
1541
  catalogs=pulumi.get(__response__, 'catalogs'),
@@ -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 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 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 or updating a pipeline.
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: Indicates that the user intents to connect to the instance through 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
- Indicates that the user intents to connect to the instance through resource principal.
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
 
@@ -8048,7 +8067,7 @@ class GetPipelineProcessOptionResult(dict):
8048
8067
  :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
8068
  :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
8069
  :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 or updating a pipeline.
8070
+ :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
8071
  """
8053
8072
  pulumi.set(__self__, "initial_data_loads", initial_data_loads)
8054
8073
  pulumi.set(__self__, "replicate_schema_changes", replicate_schema_changes)
@@ -8083,7 +8102,7 @@ class GetPipelineProcessOptionResult(dict):
8083
8102
  @pulumi.getter(name="startUsingDefaultMapping")
8084
8103
  def start_using_default_mapping(self) -> _builtins.str:
8085
8104
  """
8086
- If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating or updating a pipeline.
8105
+ 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
8106
  """
8088
8107
  return pulumi.get(self, "start_using_default_mapping")
8089
8108
 
@@ -8917,7 +8936,7 @@ class GetPipelinesPipelineCollectionItemProcessOptionResult(dict):
8917
8936
  :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
8937
  :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
8938
  :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 or updating a pipeline.
8939
+ :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
8940
  """
8922
8941
  pulumi.set(__self__, "initial_data_loads", initial_data_loads)
8923
8942
  pulumi.set(__self__, "replicate_schema_changes", replicate_schema_changes)
@@ -8952,7 +8971,7 @@ class GetPipelinesPipelineCollectionItemProcessOptionResult(dict):
8952
8971
  @pulumi.getter(name="startUsingDefaultMapping")
8953
8972
  def start_using_default_mapping(self) -> _builtins.str:
8954
8973
  """
8955
- If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating or updating a pipeline.
8974
+ 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
8975
  """
8957
8976
  return pulumi.get(self, "start_using_default_mapping")
8958
8977
 
@@ -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
+
@@ -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')))