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
@@ -22,6 +22,7 @@ __all__ = [
22
22
  'ManagementAgentDataSourceSummaryList',
23
23
  'ManagementAgentManagementAgentProperty',
24
24
  'ManagementAgentPluginList',
25
+ 'NamedCredentialProperty',
25
26
  'GetManagementAgentAvailableHistoriesAvailabilityHistoryResult',
26
27
  'GetManagementAgentAvailableHistoriesFilterResult',
27
28
  'GetManagementAgentCountItemResult',
@@ -38,6 +39,8 @@ __all__ = [
38
39
  'GetManagementAgentInstallKeysFilterResult',
39
40
  'GetManagementAgentInstallKeysManagementAgentInstallKeyResult',
40
41
  'GetManagementAgentManagementAgentPropertyResult',
42
+ 'GetManagementAgentNamedCredentialsMetadataMetadataResult',
43
+ 'GetManagementAgentNamedCredentialsMetadataMetadataPropertyResult',
41
44
  'GetManagementAgentPluginCountItemResult',
42
45
  'GetManagementAgentPluginCountItemDimensionResult',
43
46
  'GetManagementAgentPluginListResult',
@@ -50,6 +53,11 @@ __all__ = [
50
53
  'GetManagementAgentsManagementAgentDataSourceSummaryListResult',
51
54
  'GetManagementAgentsManagementAgentManagementAgentPropertyResult',
52
55
  'GetManagementAgentsManagementAgentPluginListResult',
56
+ 'GetNamedCredentialPropertyResult',
57
+ 'GetNamedCredentialsFilterResult',
58
+ 'GetNamedCredentialsNamedCredentialCollectionResult',
59
+ 'GetNamedCredentialsNamedCredentialCollectionItemResult',
60
+ 'GetNamedCredentialsNamedCredentialCollectionItemPropertyResult',
53
61
  ]
54
62
 
55
63
  @pulumi.output_type
@@ -609,6 +617,63 @@ class ManagementAgentPluginList(dict):
609
617
  return pulumi.get(self, "plugin_version")
610
618
 
611
619
 
620
+ @pulumi.output_type
621
+ class NamedCredentialProperty(dict):
622
+ @staticmethod
623
+ def __key_warning(key: str):
624
+ suggest = None
625
+ if key == "valueCategory":
626
+ suggest = "value_category"
627
+
628
+ if suggest:
629
+ pulumi.log.warn(f"Key '{key}' not found in NamedCredentialProperty. Access the value via the '{suggest}' property getter instead.")
630
+
631
+ def __getitem__(self, key: str) -> Any:
632
+ NamedCredentialProperty.__key_warning(key)
633
+ return super().__getitem__(key)
634
+
635
+ def get(self, key: str, default = None) -> Any:
636
+ NamedCredentialProperty.__key_warning(key)
637
+ return super().get(key, default)
638
+
639
+ def __init__(__self__, *,
640
+ name: _builtins.str,
641
+ value: _builtins.str,
642
+ value_category: _builtins.str):
643
+ """
644
+ :param _builtins.str name: (Updatable) Name of the property
645
+ :param _builtins.str value: (Updatable) Value of the property
646
+ :param _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.
647
+ """
648
+ pulumi.set(__self__, "name", name)
649
+ pulumi.set(__self__, "value", value)
650
+ pulumi.set(__self__, "value_category", value_category)
651
+
652
+ @_builtins.property
653
+ @pulumi.getter
654
+ def name(self) -> _builtins.str:
655
+ """
656
+ (Updatable) Name of the property
657
+ """
658
+ return pulumi.get(self, "name")
659
+
660
+ @_builtins.property
661
+ @pulumi.getter
662
+ def value(self) -> _builtins.str:
663
+ """
664
+ (Updatable) Value of the property
665
+ """
666
+ return pulumi.get(self, "value")
667
+
668
+ @_builtins.property
669
+ @pulumi.getter(name="valueCategory")
670
+ def value_category(self) -> _builtins.str:
671
+ """
672
+ (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.
673
+ """
674
+ return pulumi.get(self, "value_category")
675
+
676
+
612
677
  @pulumi.output_type
613
678
  class GetManagementAgentAvailableHistoriesAvailabilityHistoryResult(dict):
614
679
  def __init__(__self__, *,
@@ -1423,12 +1488,15 @@ class GetManagementAgentInstallKeysManagementAgentInstallKeyResult(dict):
1423
1488
  compartment_id: _builtins.str,
1424
1489
  created_by_principal_id: _builtins.str,
1425
1490
  current_key_install_count: _builtins.int,
1491
+ defined_tags: Mapping[str, _builtins.str],
1426
1492
  display_name: _builtins.str,
1493
+ freeform_tags: Mapping[str, _builtins.str],
1427
1494
  id: _builtins.str,
1428
1495
  is_unlimited: _builtins.bool,
1429
1496
  key: _builtins.str,
1430
1497
  lifecycle_details: _builtins.str,
1431
1498
  state: _builtins.str,
1499
+ system_tags: Mapping[str, _builtins.str],
1432
1500
  time_created: _builtins.str,
1433
1501
  time_expires: _builtins.str,
1434
1502
  time_updated: _builtins.str):
@@ -1437,12 +1505,15 @@ class GetManagementAgentInstallKeysManagementAgentInstallKeyResult(dict):
1437
1505
  :param _builtins.str compartment_id: The OCID of the compartment to which a request will be scoped.
1438
1506
  :param _builtins.str created_by_principal_id: Principal id of user who created the Agent Install key
1439
1507
  :param _builtins.int current_key_install_count: Total number of install for this keys
1508
+ :param Mapping[str, _builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
1440
1509
  :param _builtins.str display_name: The display name for which the Key needs to be listed.
1510
+ :param Mapping[str, _builtins.str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
1441
1511
  :param _builtins.str id: Agent install Key identifier
1442
1512
  :param _builtins.bool is_unlimited: If set to true, the install key has no expiration date or usage limit. Properties allowedKeyInstallCount and timeExpires are ignored if set to true. Defaults to false.
1443
1513
  :param _builtins.str key: Management Agent Install Key
1444
1514
  :param _builtins.str lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
1445
1515
  :param _builtins.str state: Filter to return only Management Agents in the particular lifecycle state.
1516
+ :param Mapping[str, _builtins.str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1446
1517
  :param _builtins.str time_created: The time when Management Agent install Key was created. An RFC3339 formatted date time string
1447
1518
  :param _builtins.str time_expires: date after which key would expire after creation
1448
1519
  :param _builtins.str time_updated: The time when Management Agent install Key was updated. An RFC3339 formatted date time string
@@ -1451,12 +1522,15 @@ class GetManagementAgentInstallKeysManagementAgentInstallKeyResult(dict):
1451
1522
  pulumi.set(__self__, "compartment_id", compartment_id)
1452
1523
  pulumi.set(__self__, "created_by_principal_id", created_by_principal_id)
1453
1524
  pulumi.set(__self__, "current_key_install_count", current_key_install_count)
1525
+ pulumi.set(__self__, "defined_tags", defined_tags)
1454
1526
  pulumi.set(__self__, "display_name", display_name)
1527
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
1455
1528
  pulumi.set(__self__, "id", id)
1456
1529
  pulumi.set(__self__, "is_unlimited", is_unlimited)
1457
1530
  pulumi.set(__self__, "key", key)
1458
1531
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
1459
1532
  pulumi.set(__self__, "state", state)
1533
+ pulumi.set(__self__, "system_tags", system_tags)
1460
1534
  pulumi.set(__self__, "time_created", time_created)
1461
1535
  pulumi.set(__self__, "time_expires", time_expires)
1462
1536
  pulumi.set(__self__, "time_updated", time_updated)
@@ -1493,6 +1567,14 @@ class GetManagementAgentInstallKeysManagementAgentInstallKeyResult(dict):
1493
1567
  """
1494
1568
  return pulumi.get(self, "current_key_install_count")
1495
1569
 
1570
+ @_builtins.property
1571
+ @pulumi.getter(name="definedTags")
1572
+ def defined_tags(self) -> Mapping[str, _builtins.str]:
1573
+ """
1574
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
1575
+ """
1576
+ return pulumi.get(self, "defined_tags")
1577
+
1496
1578
  @_builtins.property
1497
1579
  @pulumi.getter(name="displayName")
1498
1580
  def display_name(self) -> _builtins.str:
@@ -1501,6 +1583,14 @@ class GetManagementAgentInstallKeysManagementAgentInstallKeyResult(dict):
1501
1583
  """
1502
1584
  return pulumi.get(self, "display_name")
1503
1585
 
1586
+ @_builtins.property
1587
+ @pulumi.getter(name="freeformTags")
1588
+ def freeform_tags(self) -> Mapping[str, _builtins.str]:
1589
+ """
1590
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
1591
+ """
1592
+ return pulumi.get(self, "freeform_tags")
1593
+
1504
1594
  @_builtins.property
1505
1595
  @pulumi.getter
1506
1596
  def id(self) -> _builtins.str:
@@ -1541,6 +1631,14 @@ class GetManagementAgentInstallKeysManagementAgentInstallKeyResult(dict):
1541
1631
  """
1542
1632
  return pulumi.get(self, "state")
1543
1633
 
1634
+ @_builtins.property
1635
+ @pulumi.getter(name="systemTags")
1636
+ def system_tags(self) -> Mapping[str, _builtins.str]:
1637
+ """
1638
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1639
+ """
1640
+ return pulumi.get(self, "system_tags")
1641
+
1544
1642
  @_builtins.property
1545
1643
  @pulumi.getter(name="timeCreated")
1546
1644
  def time_created(self) -> _builtins.str:
@@ -1606,6 +1704,141 @@ class GetManagementAgentManagementAgentPropertyResult(dict):
1606
1704
  return pulumi.get(self, "values")
1607
1705
 
1608
1706
 
1707
+ @pulumi.output_type
1708
+ class GetManagementAgentNamedCredentialsMetadataMetadataResult(dict):
1709
+ def __init__(__self__, *,
1710
+ display_name: _builtins.str,
1711
+ minimum_agent_version: _builtins.str,
1712
+ properties: Sequence['outputs.GetManagementAgentNamedCredentialsMetadataMetadataPropertyResult'],
1713
+ type: _builtins.str):
1714
+ """
1715
+ :param _builtins.str display_name: The field display name
1716
+ :param _builtins.str minimum_agent_version: This Named Credential type is supported on management agents at this version or above.
1717
+ :param Sequence['GetManagementAgentNamedCredentialsMetadataMetadataPropertyArgs'] properties: The property definitions for this named credential metadata
1718
+ :param _builtins.str type: The type of the Named Credential.
1719
+ """
1720
+ pulumi.set(__self__, "display_name", display_name)
1721
+ pulumi.set(__self__, "minimum_agent_version", minimum_agent_version)
1722
+ pulumi.set(__self__, "properties", properties)
1723
+ pulumi.set(__self__, "type", type)
1724
+
1725
+ @_builtins.property
1726
+ @pulumi.getter(name="displayName")
1727
+ def display_name(self) -> _builtins.str:
1728
+ """
1729
+ The field display name
1730
+ """
1731
+ return pulumi.get(self, "display_name")
1732
+
1733
+ @_builtins.property
1734
+ @pulumi.getter(name="minimumAgentVersion")
1735
+ def minimum_agent_version(self) -> _builtins.str:
1736
+ """
1737
+ This Named Credential type is supported on management agents at this version or above.
1738
+ """
1739
+ return pulumi.get(self, "minimum_agent_version")
1740
+
1741
+ @_builtins.property
1742
+ @pulumi.getter
1743
+ def properties(self) -> Sequence['outputs.GetManagementAgentNamedCredentialsMetadataMetadataPropertyResult']:
1744
+ """
1745
+ The property definitions for this named credential metadata
1746
+ """
1747
+ return pulumi.get(self, "properties")
1748
+
1749
+ @_builtins.property
1750
+ @pulumi.getter
1751
+ def type(self) -> _builtins.str:
1752
+ """
1753
+ The type of the Named Credential.
1754
+ """
1755
+ return pulumi.get(self, "type")
1756
+
1757
+
1758
+ @pulumi.output_type
1759
+ class GetManagementAgentNamedCredentialsMetadataMetadataPropertyResult(dict):
1760
+ def __init__(__self__, *,
1761
+ allowed_values: Sequence[_builtins.str],
1762
+ default_value: _builtins.str,
1763
+ display_name: _builtins.str,
1764
+ is_required: _builtins.bool,
1765
+ name: _builtins.str,
1766
+ regex: _builtins.str,
1767
+ value_categories: Sequence[_builtins.str]):
1768
+ """
1769
+ :param Sequence[_builtins.str] allowed_values: List of values which can be applied to the value when valueCategory is ALLOWED_VALUES
1770
+ :param _builtins.str default_value: The default value which will be used if no value is set. If defaultValue is empty, then no default will be set.
1771
+ :param _builtins.str display_name: The field display name
1772
+ :param _builtins.bool is_required: Set to true if the field must be defined
1773
+ :param _builtins.str name: The field name
1774
+ :param _builtins.str regex: Optional regular expression definition which will be applied to the value when valueCategory is CLEAR_TEXT
1775
+ :param Sequence[_builtins.str] value_categories: List of value categories of field allowed for this property
1776
+ """
1777
+ pulumi.set(__self__, "allowed_values", allowed_values)
1778
+ pulumi.set(__self__, "default_value", default_value)
1779
+ pulumi.set(__self__, "display_name", display_name)
1780
+ pulumi.set(__self__, "is_required", is_required)
1781
+ pulumi.set(__self__, "name", name)
1782
+ pulumi.set(__self__, "regex", regex)
1783
+ pulumi.set(__self__, "value_categories", value_categories)
1784
+
1785
+ @_builtins.property
1786
+ @pulumi.getter(name="allowedValues")
1787
+ def allowed_values(self) -> Sequence[_builtins.str]:
1788
+ """
1789
+ List of values which can be applied to the value when valueCategory is ALLOWED_VALUES
1790
+ """
1791
+ return pulumi.get(self, "allowed_values")
1792
+
1793
+ @_builtins.property
1794
+ @pulumi.getter(name="defaultValue")
1795
+ def default_value(self) -> _builtins.str:
1796
+ """
1797
+ The default value which will be used if no value is set. If defaultValue is empty, then no default will be set.
1798
+ """
1799
+ return pulumi.get(self, "default_value")
1800
+
1801
+ @_builtins.property
1802
+ @pulumi.getter(name="displayName")
1803
+ def display_name(self) -> _builtins.str:
1804
+ """
1805
+ The field display name
1806
+ """
1807
+ return pulumi.get(self, "display_name")
1808
+
1809
+ @_builtins.property
1810
+ @pulumi.getter(name="isRequired")
1811
+ def is_required(self) -> _builtins.bool:
1812
+ """
1813
+ Set to true if the field must be defined
1814
+ """
1815
+ return pulumi.get(self, "is_required")
1816
+
1817
+ @_builtins.property
1818
+ @pulumi.getter
1819
+ def name(self) -> _builtins.str:
1820
+ """
1821
+ The field name
1822
+ """
1823
+ return pulumi.get(self, "name")
1824
+
1825
+ @_builtins.property
1826
+ @pulumi.getter
1827
+ def regex(self) -> _builtins.str:
1828
+ """
1829
+ Optional regular expression definition which will be applied to the value when valueCategory is CLEAR_TEXT
1830
+ """
1831
+ return pulumi.get(self, "regex")
1832
+
1833
+ @_builtins.property
1834
+ @pulumi.getter(name="valueCategories")
1835
+ def value_categories(self) -> Sequence[_builtins.str]:
1836
+ """
1837
+ List of value categories of field allowed for this property
1838
+ """
1839
+ return pulumi.get(self, "value_categories")
1840
+
1841
+
1609
1842
  @pulumi.output_type
1610
1843
  class GetManagementAgentPluginCountItemResult(dict):
1611
1844
  def __init__(__self__, *,
@@ -1932,6 +2165,7 @@ class GetManagementAgentsManagementAgentResult(dict):
1932
2165
  install_type: _builtins.str,
1933
2166
  is_agent_auto_upgradable: _builtins.bool,
1934
2167
  is_customer_deployed: _builtins.bool,
2168
+ latest_supported_version: _builtins.str,
1935
2169
  lifecycle_details: _builtins.str,
1936
2170
  managed_agent_id: _builtins.str,
1937
2171
  management_agent_properties: Sequence['outputs.GetManagementAgentsManagementAgentManagementAgentPropertyResult'],
@@ -1941,6 +2175,7 @@ class GetManagementAgentsManagementAgentResult(dict):
1941
2175
  plugin_lists: Sequence['outputs.GetManagementAgentsManagementAgentPluginListResult'],
1942
2176
  resource_artifact_version: _builtins.str,
1943
2177
  state: _builtins.str,
2178
+ system_tags: Mapping[str, _builtins.str],
1944
2179
  time_created: _builtins.str,
1945
2180
  time_last_heartbeat: _builtins.str,
1946
2181
  time_updated: _builtins.str,
@@ -1968,6 +2203,7 @@ class GetManagementAgentsManagementAgentResult(dict):
1968
2203
  :param Sequence['GetManagementAgentsManagementAgentPluginListArgs'] plugin_lists: list of managementAgentPlugins associated with the agent
1969
2204
  :param _builtins.str resource_artifact_version: Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
1970
2205
  :param _builtins.str state: Filter to return only Management Agents in the particular lifecycle state.
2206
+ :param Mapping[str, _builtins.str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1971
2207
  :param _builtins.str time_created: The time the Management Agent was created. An RFC3339 formatted datetime string
1972
2208
  :param _builtins.str time_last_heartbeat: The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
1973
2209
  :param _builtins.str time_updated: The time the Management Agent was last updated. An RFC3339 formatted datetime string
@@ -1989,6 +2225,7 @@ class GetManagementAgentsManagementAgentResult(dict):
1989
2225
  pulumi.set(__self__, "install_type", install_type)
1990
2226
  pulumi.set(__self__, "is_agent_auto_upgradable", is_agent_auto_upgradable)
1991
2227
  pulumi.set(__self__, "is_customer_deployed", is_customer_deployed)
2228
+ pulumi.set(__self__, "latest_supported_version", latest_supported_version)
1992
2229
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
1993
2230
  pulumi.set(__self__, "managed_agent_id", managed_agent_id)
1994
2231
  pulumi.set(__self__, "management_agent_properties", management_agent_properties)
@@ -1998,6 +2235,7 @@ class GetManagementAgentsManagementAgentResult(dict):
1998
2235
  pulumi.set(__self__, "plugin_lists", plugin_lists)
1999
2236
  pulumi.set(__self__, "resource_artifact_version", resource_artifact_version)
2000
2237
  pulumi.set(__self__, "state", state)
2238
+ pulumi.set(__self__, "system_tags", system_tags)
2001
2239
  pulumi.set(__self__, "time_created", time_created)
2002
2240
  pulumi.set(__self__, "time_last_heartbeat", time_last_heartbeat)
2003
2241
  pulumi.set(__self__, "time_updated", time_updated)
@@ -2125,6 +2363,11 @@ class GetManagementAgentsManagementAgentResult(dict):
2125
2363
  """
2126
2364
  return pulumi.get(self, "is_customer_deployed")
2127
2365
 
2366
+ @_builtins.property
2367
+ @pulumi.getter(name="latestSupportedVersion")
2368
+ def latest_supported_version(self) -> _builtins.str:
2369
+ return pulumi.get(self, "latest_supported_version")
2370
+
2128
2371
  @_builtins.property
2129
2372
  @pulumi.getter(name="lifecycleDetails")
2130
2373
  def lifecycle_details(self) -> _builtins.str:
@@ -2194,6 +2437,14 @@ class GetManagementAgentsManagementAgentResult(dict):
2194
2437
  """
2195
2438
  return pulumi.get(self, "state")
2196
2439
 
2440
+ @_builtins.property
2441
+ @pulumi.getter(name="systemTags")
2442
+ def system_tags(self) -> Mapping[str, _builtins.str]:
2443
+ """
2444
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
2445
+ """
2446
+ return pulumi.get(self, "system_tags")
2447
+
2197
2448
  @_builtins.property
2198
2449
  @pulumi.getter(name="timeCreated")
2199
2450
  def time_created(self) -> _builtins.str:
@@ -2592,3 +2843,267 @@ class GetManagementAgentsManagementAgentPluginListResult(dict):
2592
2843
  return pulumi.get(self, "plugin_version")
2593
2844
 
2594
2845
 
2846
+ @pulumi.output_type
2847
+ class GetNamedCredentialPropertyResult(dict):
2848
+ def __init__(__self__, *,
2849
+ name: _builtins.str,
2850
+ value: _builtins.str,
2851
+ value_category: _builtins.str):
2852
+ """
2853
+ :param _builtins.str name: Name of the property
2854
+ :param _builtins.str value: Value of the property
2855
+ :param _builtins.str value_category: 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.
2856
+ """
2857
+ pulumi.set(__self__, "name", name)
2858
+ pulumi.set(__self__, "value", value)
2859
+ pulumi.set(__self__, "value_category", value_category)
2860
+
2861
+ @_builtins.property
2862
+ @pulumi.getter
2863
+ def name(self) -> _builtins.str:
2864
+ """
2865
+ Name of the property
2866
+ """
2867
+ return pulumi.get(self, "name")
2868
+
2869
+ @_builtins.property
2870
+ @pulumi.getter
2871
+ def value(self) -> _builtins.str:
2872
+ """
2873
+ Value of the property
2874
+ """
2875
+ return pulumi.get(self, "value")
2876
+
2877
+ @_builtins.property
2878
+ @pulumi.getter(name="valueCategory")
2879
+ def value_category(self) -> _builtins.str:
2880
+ """
2881
+ 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.
2882
+ """
2883
+ return pulumi.get(self, "value_category")
2884
+
2885
+
2886
+ @pulumi.output_type
2887
+ class GetNamedCredentialsFilterResult(dict):
2888
+ def __init__(__self__, *,
2889
+ name: _builtins.str,
2890
+ values: Sequence[_builtins.str],
2891
+ regex: Optional[_builtins.bool] = None):
2892
+ """
2893
+ :param _builtins.str name: Filter list for these name items.
2894
+ """
2895
+ pulumi.set(__self__, "name", name)
2896
+ pulumi.set(__self__, "values", values)
2897
+ if regex is not None:
2898
+ pulumi.set(__self__, "regex", regex)
2899
+
2900
+ @_builtins.property
2901
+ @pulumi.getter
2902
+ def name(self) -> _builtins.str:
2903
+ """
2904
+ Filter list for these name items.
2905
+ """
2906
+ return pulumi.get(self, "name")
2907
+
2908
+ @_builtins.property
2909
+ @pulumi.getter
2910
+ def values(self) -> Sequence[_builtins.str]:
2911
+ return pulumi.get(self, "values")
2912
+
2913
+ @_builtins.property
2914
+ @pulumi.getter
2915
+ def regex(self) -> Optional[_builtins.bool]:
2916
+ return pulumi.get(self, "regex")
2917
+
2918
+
2919
+ @pulumi.output_type
2920
+ class GetNamedCredentialsNamedCredentialCollectionResult(dict):
2921
+ def __init__(__self__, *,
2922
+ items: Sequence['outputs.GetNamedCredentialsNamedCredentialCollectionItemResult']):
2923
+ pulumi.set(__self__, "items", items)
2924
+
2925
+ @_builtins.property
2926
+ @pulumi.getter
2927
+ def items(self) -> Sequence['outputs.GetNamedCredentialsNamedCredentialCollectionItemResult']:
2928
+ return pulumi.get(self, "items")
2929
+
2930
+
2931
+ @pulumi.output_type
2932
+ class GetNamedCredentialsNamedCredentialCollectionItemResult(dict):
2933
+ def __init__(__self__, *,
2934
+ defined_tags: Mapping[str, _builtins.str],
2935
+ description: _builtins.str,
2936
+ freeform_tags: Mapping[str, _builtins.str],
2937
+ id: _builtins.str,
2938
+ management_agent_id: _builtins.str,
2939
+ name: _builtins.str,
2940
+ properties: Sequence['outputs.GetNamedCredentialsNamedCredentialCollectionItemPropertyResult'],
2941
+ state: _builtins.str,
2942
+ system_tags: Mapping[str, _builtins.str],
2943
+ time_created: _builtins.str,
2944
+ time_updated: _builtins.str,
2945
+ type: _builtins.str):
2946
+ """
2947
+ :param Mapping[str, _builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
2948
+ :param _builtins.str description: Description of the Named Credential.
2949
+ :param Mapping[str, _builtins.str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
2950
+ :param _builtins.str id: Filter list for these Named credentials identifiers (ocid) values.
2951
+ :param _builtins.str management_agent_id: The ManagementAgentID of the agent from which the named credentials are associated.
2952
+ :param _builtins.str name: Filter list for these name items.
2953
+ :param Sequence['GetNamedCredentialsNamedCredentialCollectionItemPropertyArgs'] properties: Properties for the named credential
2954
+ :param _builtins.str state: Filter list to return only Management Agents in the particular lifecycle state.
2955
+ :param Mapping[str, _builtins.str] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
2956
+ :param _builtins.str time_created: The time the Named Credential was created. An RFC3339 formatted datetime string
2957
+ :param _builtins.str time_updated: The time the Named Credential data was last updated. An RFC3339 formatted datetime string
2958
+ :param _builtins.str type: Filter list for these type values.
2959
+ """
2960
+ pulumi.set(__self__, "defined_tags", defined_tags)
2961
+ pulumi.set(__self__, "description", description)
2962
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
2963
+ pulumi.set(__self__, "id", id)
2964
+ pulumi.set(__self__, "management_agent_id", management_agent_id)
2965
+ pulumi.set(__self__, "name", name)
2966
+ pulumi.set(__self__, "properties", properties)
2967
+ pulumi.set(__self__, "state", state)
2968
+ pulumi.set(__self__, "system_tags", system_tags)
2969
+ pulumi.set(__self__, "time_created", time_created)
2970
+ pulumi.set(__self__, "time_updated", time_updated)
2971
+ pulumi.set(__self__, "type", type)
2972
+
2973
+ @_builtins.property
2974
+ @pulumi.getter(name="definedTags")
2975
+ def defined_tags(self) -> Mapping[str, _builtins.str]:
2976
+ """
2977
+ Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
2978
+ """
2979
+ return pulumi.get(self, "defined_tags")
2980
+
2981
+ @_builtins.property
2982
+ @pulumi.getter
2983
+ def description(self) -> _builtins.str:
2984
+ """
2985
+ Description of the Named Credential.
2986
+ """
2987
+ return pulumi.get(self, "description")
2988
+
2989
+ @_builtins.property
2990
+ @pulumi.getter(name="freeformTags")
2991
+ def freeform_tags(self) -> Mapping[str, _builtins.str]:
2992
+ """
2993
+ Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
2994
+ """
2995
+ return pulumi.get(self, "freeform_tags")
2996
+
2997
+ @_builtins.property
2998
+ @pulumi.getter
2999
+ def id(self) -> _builtins.str:
3000
+ """
3001
+ Filter list for these Named credentials identifiers (ocid) values.
3002
+ """
3003
+ return pulumi.get(self, "id")
3004
+
3005
+ @_builtins.property
3006
+ @pulumi.getter(name="managementAgentId")
3007
+ def management_agent_id(self) -> _builtins.str:
3008
+ """
3009
+ The ManagementAgentID of the agent from which the named credentials are associated.
3010
+ """
3011
+ return pulumi.get(self, "management_agent_id")
3012
+
3013
+ @_builtins.property
3014
+ @pulumi.getter
3015
+ def name(self) -> _builtins.str:
3016
+ """
3017
+ Filter list for these name items.
3018
+ """
3019
+ return pulumi.get(self, "name")
3020
+
3021
+ @_builtins.property
3022
+ @pulumi.getter
3023
+ def properties(self) -> Sequence['outputs.GetNamedCredentialsNamedCredentialCollectionItemPropertyResult']:
3024
+ """
3025
+ Properties for the named credential
3026
+ """
3027
+ return pulumi.get(self, "properties")
3028
+
3029
+ @_builtins.property
3030
+ @pulumi.getter
3031
+ def state(self) -> _builtins.str:
3032
+ """
3033
+ Filter list to return only Management Agents in the particular lifecycle state.
3034
+ """
3035
+ return pulumi.get(self, "state")
3036
+
3037
+ @_builtins.property
3038
+ @pulumi.getter(name="systemTags")
3039
+ def system_tags(self) -> Mapping[str, _builtins.str]:
3040
+ """
3041
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
3042
+ """
3043
+ return pulumi.get(self, "system_tags")
3044
+
3045
+ @_builtins.property
3046
+ @pulumi.getter(name="timeCreated")
3047
+ def time_created(self) -> _builtins.str:
3048
+ """
3049
+ The time the Named Credential was created. An RFC3339 formatted datetime string
3050
+ """
3051
+ return pulumi.get(self, "time_created")
3052
+
3053
+ @_builtins.property
3054
+ @pulumi.getter(name="timeUpdated")
3055
+ def time_updated(self) -> _builtins.str:
3056
+ """
3057
+ The time the Named Credential data was last updated. An RFC3339 formatted datetime string
3058
+ """
3059
+ return pulumi.get(self, "time_updated")
3060
+
3061
+ @_builtins.property
3062
+ @pulumi.getter
3063
+ def type(self) -> _builtins.str:
3064
+ """
3065
+ Filter list for these type values.
3066
+ """
3067
+ return pulumi.get(self, "type")
3068
+
3069
+
3070
+ @pulumi.output_type
3071
+ class GetNamedCredentialsNamedCredentialCollectionItemPropertyResult(dict):
3072
+ def __init__(__self__, *,
3073
+ name: _builtins.str,
3074
+ value: _builtins.str,
3075
+ value_category: _builtins.str):
3076
+ """
3077
+ :param _builtins.str name: Filter list for these name items.
3078
+ :param _builtins.str value: Value of the property
3079
+ :param _builtins.str value_category: 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.
3080
+ """
3081
+ pulumi.set(__self__, "name", name)
3082
+ pulumi.set(__self__, "value", value)
3083
+ pulumi.set(__self__, "value_category", value_category)
3084
+
3085
+ @_builtins.property
3086
+ @pulumi.getter
3087
+ def name(self) -> _builtins.str:
3088
+ """
3089
+ Filter list for these name items.
3090
+ """
3091
+ return pulumi.get(self, "name")
3092
+
3093
+ @_builtins.property
3094
+ @pulumi.getter
3095
+ def value(self) -> _builtins.str:
3096
+ """
3097
+ Value of the property
3098
+ """
3099
+ return pulumi.get(self, "value")
3100
+
3101
+ @_builtins.property
3102
+ @pulumi.getter(name="valueCategory")
3103
+ def value_category(self) -> _builtins.str:
3104
+ """
3105
+ 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.
3106
+ """
3107
+ return pulumi.get(self, "value_category")
3108
+
3109
+