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
@@ -0,0 +1,706 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins as _builtins
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+ from . import outputs
17
+ from ._inputs import *
18
+
19
+ __all__ = ['NamedCredentialArgs', 'NamedCredential']
20
+
21
+ @pulumi.input_type
22
+ class NamedCredentialArgs:
23
+ def __init__(__self__, *,
24
+ management_agent_id: pulumi.Input[_builtins.str],
25
+ properties: pulumi.Input[Sequence[pulumi.Input['NamedCredentialPropertyArgs']]],
26
+ type: pulumi.Input[_builtins.str],
27
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
28
+ description: Optional[pulumi.Input[_builtins.str]] = None,
29
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
30
+ name: Optional[pulumi.Input[_builtins.str]] = None):
31
+ """
32
+ The set of arguments for constructing a NamedCredential resource.
33
+ :param pulumi.Input[_builtins.str] management_agent_id: The Management Agent parent resource to associate this named credential with. This is the ManagementAgent resource OCID.
34
+ :param pulumi.Input[Sequence[pulumi.Input['NamedCredentialPropertyArgs']]] properties: (Updatable) Properties for the named credential
35
+ :param pulumi.Input[_builtins.str] type: The type of the Named Credential.
36
+
37
+
38
+ ** IMPORTANT **
39
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
40
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
41
+ :param pulumi.Input[_builtins.str] description: (Updatable) Description of the Named Credential.
42
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
43
+ :param pulumi.Input[_builtins.str] name: Identifier for Named Credential. This is unique for the Management Agent.
44
+ """
45
+ pulumi.set(__self__, "management_agent_id", management_agent_id)
46
+ pulumi.set(__self__, "properties", properties)
47
+ pulumi.set(__self__, "type", type)
48
+ if defined_tags is not None:
49
+ pulumi.set(__self__, "defined_tags", defined_tags)
50
+ if description is not None:
51
+ pulumi.set(__self__, "description", description)
52
+ if freeform_tags is not None:
53
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
54
+ if name is not None:
55
+ pulumi.set(__self__, "name", name)
56
+
57
+ @_builtins.property
58
+ @pulumi.getter(name="managementAgentId")
59
+ def management_agent_id(self) -> pulumi.Input[_builtins.str]:
60
+ """
61
+ The Management Agent parent resource to associate this named credential with. This is the ManagementAgent resource OCID.
62
+ """
63
+ return pulumi.get(self, "management_agent_id")
64
+
65
+ @management_agent_id.setter
66
+ def management_agent_id(self, value: pulumi.Input[_builtins.str]):
67
+ pulumi.set(self, "management_agent_id", value)
68
+
69
+ @_builtins.property
70
+ @pulumi.getter
71
+ def properties(self) -> pulumi.Input[Sequence[pulumi.Input['NamedCredentialPropertyArgs']]]:
72
+ """
73
+ (Updatable) Properties for the named credential
74
+ """
75
+ return pulumi.get(self, "properties")
76
+
77
+ @properties.setter
78
+ def properties(self, value: pulumi.Input[Sequence[pulumi.Input['NamedCredentialPropertyArgs']]]):
79
+ pulumi.set(self, "properties", value)
80
+
81
+ @_builtins.property
82
+ @pulumi.getter
83
+ def type(self) -> pulumi.Input[_builtins.str]:
84
+ """
85
+ The type of the Named Credential.
86
+
87
+
88
+ ** IMPORTANT **
89
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
90
+ """
91
+ return pulumi.get(self, "type")
92
+
93
+ @type.setter
94
+ def type(self, value: pulumi.Input[_builtins.str]):
95
+ pulumi.set(self, "type", value)
96
+
97
+ @_builtins.property
98
+ @pulumi.getter(name="definedTags")
99
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
100
+ """
101
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
102
+ """
103
+ return pulumi.get(self, "defined_tags")
104
+
105
+ @defined_tags.setter
106
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
107
+ pulumi.set(self, "defined_tags", value)
108
+
109
+ @_builtins.property
110
+ @pulumi.getter
111
+ def description(self) -> Optional[pulumi.Input[_builtins.str]]:
112
+ """
113
+ (Updatable) Description of the Named Credential.
114
+ """
115
+ return pulumi.get(self, "description")
116
+
117
+ @description.setter
118
+ def description(self, value: Optional[pulumi.Input[_builtins.str]]):
119
+ pulumi.set(self, "description", value)
120
+
121
+ @_builtins.property
122
+ @pulumi.getter(name="freeformTags")
123
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
124
+ """
125
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
126
+ """
127
+ return pulumi.get(self, "freeform_tags")
128
+
129
+ @freeform_tags.setter
130
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
131
+ pulumi.set(self, "freeform_tags", value)
132
+
133
+ @_builtins.property
134
+ @pulumi.getter
135
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
136
+ """
137
+ Identifier for Named Credential. This is unique for the Management Agent.
138
+ """
139
+ return pulumi.get(self, "name")
140
+
141
+ @name.setter
142
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
143
+ pulumi.set(self, "name", value)
144
+
145
+
146
+ @pulumi.input_type
147
+ class _NamedCredentialState:
148
+ def __init__(__self__, *,
149
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
150
+ description: Optional[pulumi.Input[_builtins.str]] = None,
151
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
152
+ management_agent_id: Optional[pulumi.Input[_builtins.str]] = None,
153
+ name: Optional[pulumi.Input[_builtins.str]] = None,
154
+ properties: Optional[pulumi.Input[Sequence[pulumi.Input['NamedCredentialPropertyArgs']]]] = None,
155
+ state: Optional[pulumi.Input[_builtins.str]] = None,
156
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
157
+ time_created: Optional[pulumi.Input[_builtins.str]] = None,
158
+ time_updated: Optional[pulumi.Input[_builtins.str]] = None,
159
+ type: Optional[pulumi.Input[_builtins.str]] = None):
160
+ """
161
+ Input properties used for looking up and filtering NamedCredential resources.
162
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
163
+ :param pulumi.Input[_builtins.str] description: (Updatable) Description of the Named Credential.
164
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
165
+ :param pulumi.Input[_builtins.str] management_agent_id: The Management Agent parent resource to associate this named credential with. This is the ManagementAgent resource OCID.
166
+ :param pulumi.Input[_builtins.str] name: Identifier for Named Credential. This is unique for the Management Agent.
167
+ :param pulumi.Input[Sequence[pulumi.Input['NamedCredentialPropertyArgs']]] properties: (Updatable) Properties for the named credential
168
+ :param pulumi.Input[_builtins.str] state: The current state of the named credential
169
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
170
+ :param pulumi.Input[_builtins.str] time_created: The time the Named Credential was created. An RFC3339 formatted datetime string
171
+ :param pulumi.Input[_builtins.str] time_updated: The time the Named Credential data was last updated. An RFC3339 formatted datetime string
172
+ :param pulumi.Input[_builtins.str] type: The type of the Named Credential.
173
+
174
+
175
+ ** IMPORTANT **
176
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
177
+ """
178
+ if defined_tags is not None:
179
+ pulumi.set(__self__, "defined_tags", defined_tags)
180
+ if description is not None:
181
+ pulumi.set(__self__, "description", description)
182
+ if freeform_tags is not None:
183
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
184
+ if management_agent_id is not None:
185
+ pulumi.set(__self__, "management_agent_id", management_agent_id)
186
+ if name is not None:
187
+ pulumi.set(__self__, "name", name)
188
+ if properties is not None:
189
+ pulumi.set(__self__, "properties", properties)
190
+ if state is not None:
191
+ pulumi.set(__self__, "state", state)
192
+ if system_tags is not None:
193
+ pulumi.set(__self__, "system_tags", system_tags)
194
+ if time_created is not None:
195
+ pulumi.set(__self__, "time_created", time_created)
196
+ if time_updated is not None:
197
+ pulumi.set(__self__, "time_updated", time_updated)
198
+ if type is not None:
199
+ pulumi.set(__self__, "type", type)
200
+
201
+ @_builtins.property
202
+ @pulumi.getter(name="definedTags")
203
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
204
+ """
205
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
206
+ """
207
+ return pulumi.get(self, "defined_tags")
208
+
209
+ @defined_tags.setter
210
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
211
+ pulumi.set(self, "defined_tags", value)
212
+
213
+ @_builtins.property
214
+ @pulumi.getter
215
+ def description(self) -> Optional[pulumi.Input[_builtins.str]]:
216
+ """
217
+ (Updatable) Description of the Named Credential.
218
+ """
219
+ return pulumi.get(self, "description")
220
+
221
+ @description.setter
222
+ def description(self, value: Optional[pulumi.Input[_builtins.str]]):
223
+ pulumi.set(self, "description", value)
224
+
225
+ @_builtins.property
226
+ @pulumi.getter(name="freeformTags")
227
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
228
+ """
229
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
230
+ """
231
+ return pulumi.get(self, "freeform_tags")
232
+
233
+ @freeform_tags.setter
234
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
235
+ pulumi.set(self, "freeform_tags", value)
236
+
237
+ @_builtins.property
238
+ @pulumi.getter(name="managementAgentId")
239
+ def management_agent_id(self) -> Optional[pulumi.Input[_builtins.str]]:
240
+ """
241
+ The Management Agent parent resource to associate this named credential with. This is the ManagementAgent resource OCID.
242
+ """
243
+ return pulumi.get(self, "management_agent_id")
244
+
245
+ @management_agent_id.setter
246
+ def management_agent_id(self, value: Optional[pulumi.Input[_builtins.str]]):
247
+ pulumi.set(self, "management_agent_id", value)
248
+
249
+ @_builtins.property
250
+ @pulumi.getter
251
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
252
+ """
253
+ Identifier for Named Credential. This is unique for the Management Agent.
254
+ """
255
+ return pulumi.get(self, "name")
256
+
257
+ @name.setter
258
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
259
+ pulumi.set(self, "name", value)
260
+
261
+ @_builtins.property
262
+ @pulumi.getter
263
+ def properties(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NamedCredentialPropertyArgs']]]]:
264
+ """
265
+ (Updatable) Properties for the named credential
266
+ """
267
+ return pulumi.get(self, "properties")
268
+
269
+ @properties.setter
270
+ def properties(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['NamedCredentialPropertyArgs']]]]):
271
+ pulumi.set(self, "properties", value)
272
+
273
+ @_builtins.property
274
+ @pulumi.getter
275
+ def state(self) -> Optional[pulumi.Input[_builtins.str]]:
276
+ """
277
+ The current state of the named credential
278
+ """
279
+ return pulumi.get(self, "state")
280
+
281
+ @state.setter
282
+ def state(self, value: Optional[pulumi.Input[_builtins.str]]):
283
+ pulumi.set(self, "state", value)
284
+
285
+ @_builtins.property
286
+ @pulumi.getter(name="systemTags")
287
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
288
+ """
289
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
290
+ """
291
+ return pulumi.get(self, "system_tags")
292
+
293
+ @system_tags.setter
294
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
295
+ pulumi.set(self, "system_tags", value)
296
+
297
+ @_builtins.property
298
+ @pulumi.getter(name="timeCreated")
299
+ def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
300
+ """
301
+ The time the Named Credential was created. An RFC3339 formatted datetime string
302
+ """
303
+ return pulumi.get(self, "time_created")
304
+
305
+ @time_created.setter
306
+ def time_created(self, value: Optional[pulumi.Input[_builtins.str]]):
307
+ pulumi.set(self, "time_created", value)
308
+
309
+ @_builtins.property
310
+ @pulumi.getter(name="timeUpdated")
311
+ def time_updated(self) -> Optional[pulumi.Input[_builtins.str]]:
312
+ """
313
+ The time the Named Credential data was last updated. An RFC3339 formatted datetime string
314
+ """
315
+ return pulumi.get(self, "time_updated")
316
+
317
+ @time_updated.setter
318
+ def time_updated(self, value: Optional[pulumi.Input[_builtins.str]]):
319
+ pulumi.set(self, "time_updated", value)
320
+
321
+ @_builtins.property
322
+ @pulumi.getter
323
+ def type(self) -> Optional[pulumi.Input[_builtins.str]]:
324
+ """
325
+ The type of the Named Credential.
326
+
327
+
328
+ ** IMPORTANT **
329
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
330
+ """
331
+ return pulumi.get(self, "type")
332
+
333
+ @type.setter
334
+ def type(self, value: Optional[pulumi.Input[_builtins.str]]):
335
+ pulumi.set(self, "type", value)
336
+
337
+
338
+ @pulumi.type_token("oci:ManagementAgent/namedCredential:NamedCredential")
339
+ class NamedCredential(pulumi.CustomResource):
340
+ @overload
341
+ def __init__(__self__,
342
+ resource_name: str,
343
+ opts: Optional[pulumi.ResourceOptions] = None,
344
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
345
+ description: Optional[pulumi.Input[_builtins.str]] = None,
346
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
347
+ management_agent_id: Optional[pulumi.Input[_builtins.str]] = None,
348
+ name: Optional[pulumi.Input[_builtins.str]] = None,
349
+ properties: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NamedCredentialPropertyArgs', 'NamedCredentialPropertyArgsDict']]]]] = None,
350
+ type: Optional[pulumi.Input[_builtins.str]] = None,
351
+ __props__=None):
352
+ """
353
+ This resource provides the Named Credential resource in Oracle Cloud Infrastructure Management Agent service.
354
+
355
+ Named credential creation request to given Management Agent.
356
+
357
+ ## Example Usage
358
+
359
+ ```python
360
+ import pulumi
361
+ import pulumi_oci as oci
362
+
363
+ test_named_credential = oci.managementagent.NamedCredential("test_named_credential",
364
+ management_agent_id=test_management_agent["id"],
365
+ name=named_credential_name,
366
+ properties=[
367
+ {
368
+ "name": named_credential_properties_name,
369
+ "value": named_credential_properties_value,
370
+ "value_category": named_credential_properties_value_category,
371
+ },
372
+ {
373
+ "name": named_credential_properties_name2,
374
+ "value": named_credential_properties_value2,
375
+ "value_category": named_credential_properties_value_category2,
376
+ },
377
+ ],
378
+ type=named_credential_type,
379
+ defined_tags={
380
+ "foo-namespace.bar-key": "value",
381
+ },
382
+ description=named_credential_description,
383
+ freeform_tags={
384
+ "bar-key": "value",
385
+ })
386
+ example_named_credential = oci.managementagent.NamedCredential("example_named_credential",
387
+ management_agent_id=test_management_agent["id"],
388
+ name="Example1",
389
+ properties=[
390
+ {
391
+ "name": "DBUserName",
392
+ "value": vault_secret_id,
393
+ "value_category": "SECRET_IDENTIFIER",
394
+ },
395
+ {
396
+ "name": "DBPassword",
397
+ "value": vault_secret2_id,
398
+ "value_category": "SECRET_IDENTIFIER",
399
+ },
400
+ ],
401
+ type="DBCREDS",
402
+ defined_tags={
403
+ "foo-namespace.bar-key": "value",
404
+ },
405
+ description="Example DBCREDS named credential for management agent",
406
+ freeform_tags={
407
+ "bar-key": "value",
408
+ })
409
+ ```
410
+
411
+ ## Import
412
+
413
+ NamedCredentials can be imported using the `id`, e.g.
414
+
415
+ ```sh
416
+ $ pulumi import oci:ManagementAgent/namedCredential:NamedCredential test_named_credential "id"
417
+ ```
418
+
419
+ :param str resource_name: The name of the resource.
420
+ :param pulumi.ResourceOptions opts: Options for the resource.
421
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
422
+ :param pulumi.Input[_builtins.str] description: (Updatable) Description of the Named Credential.
423
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
424
+ :param pulumi.Input[_builtins.str] management_agent_id: The Management Agent parent resource to associate this named credential with. This is the ManagementAgent resource OCID.
425
+ :param pulumi.Input[_builtins.str] name: Identifier for Named Credential. This is unique for the Management Agent.
426
+ :param pulumi.Input[Sequence[pulumi.Input[Union['NamedCredentialPropertyArgs', 'NamedCredentialPropertyArgsDict']]]] properties: (Updatable) Properties for the named credential
427
+ :param pulumi.Input[_builtins.str] type: The type of the Named Credential.
428
+
429
+
430
+ ** IMPORTANT **
431
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
432
+ """
433
+ ...
434
+ @overload
435
+ def __init__(__self__,
436
+ resource_name: str,
437
+ args: NamedCredentialArgs,
438
+ opts: Optional[pulumi.ResourceOptions] = None):
439
+ """
440
+ This resource provides the Named Credential resource in Oracle Cloud Infrastructure Management Agent service.
441
+
442
+ Named credential creation request to given Management Agent.
443
+
444
+ ## Example Usage
445
+
446
+ ```python
447
+ import pulumi
448
+ import pulumi_oci as oci
449
+
450
+ test_named_credential = oci.managementagent.NamedCredential("test_named_credential",
451
+ management_agent_id=test_management_agent["id"],
452
+ name=named_credential_name,
453
+ properties=[
454
+ {
455
+ "name": named_credential_properties_name,
456
+ "value": named_credential_properties_value,
457
+ "value_category": named_credential_properties_value_category,
458
+ },
459
+ {
460
+ "name": named_credential_properties_name2,
461
+ "value": named_credential_properties_value2,
462
+ "value_category": named_credential_properties_value_category2,
463
+ },
464
+ ],
465
+ type=named_credential_type,
466
+ defined_tags={
467
+ "foo-namespace.bar-key": "value",
468
+ },
469
+ description=named_credential_description,
470
+ freeform_tags={
471
+ "bar-key": "value",
472
+ })
473
+ example_named_credential = oci.managementagent.NamedCredential("example_named_credential",
474
+ management_agent_id=test_management_agent["id"],
475
+ name="Example1",
476
+ properties=[
477
+ {
478
+ "name": "DBUserName",
479
+ "value": vault_secret_id,
480
+ "value_category": "SECRET_IDENTIFIER",
481
+ },
482
+ {
483
+ "name": "DBPassword",
484
+ "value": vault_secret2_id,
485
+ "value_category": "SECRET_IDENTIFIER",
486
+ },
487
+ ],
488
+ type="DBCREDS",
489
+ defined_tags={
490
+ "foo-namespace.bar-key": "value",
491
+ },
492
+ description="Example DBCREDS named credential for management agent",
493
+ freeform_tags={
494
+ "bar-key": "value",
495
+ })
496
+ ```
497
+
498
+ ## Import
499
+
500
+ NamedCredentials can be imported using the `id`, e.g.
501
+
502
+ ```sh
503
+ $ pulumi import oci:ManagementAgent/namedCredential:NamedCredential test_named_credential "id"
504
+ ```
505
+
506
+ :param str resource_name: The name of the resource.
507
+ :param NamedCredentialArgs args: The arguments to use to populate this resource's properties.
508
+ :param pulumi.ResourceOptions opts: Options for the resource.
509
+ """
510
+ ...
511
+ def __init__(__self__, resource_name: str, *args, **kwargs):
512
+ resource_args, opts = _utilities.get_resource_args_opts(NamedCredentialArgs, pulumi.ResourceOptions, *args, **kwargs)
513
+ if resource_args is not None:
514
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
515
+ else:
516
+ __self__._internal_init(resource_name, *args, **kwargs)
517
+
518
+ def _internal_init(__self__,
519
+ resource_name: str,
520
+ opts: Optional[pulumi.ResourceOptions] = None,
521
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
522
+ description: Optional[pulumi.Input[_builtins.str]] = None,
523
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
524
+ management_agent_id: Optional[pulumi.Input[_builtins.str]] = None,
525
+ name: Optional[pulumi.Input[_builtins.str]] = None,
526
+ properties: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NamedCredentialPropertyArgs', 'NamedCredentialPropertyArgsDict']]]]] = None,
527
+ type: Optional[pulumi.Input[_builtins.str]] = None,
528
+ __props__=None):
529
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
530
+ if not isinstance(opts, pulumi.ResourceOptions):
531
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
532
+ if opts.id is None:
533
+ if __props__ is not None:
534
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
535
+ __props__ = NamedCredentialArgs.__new__(NamedCredentialArgs)
536
+
537
+ __props__.__dict__["defined_tags"] = defined_tags
538
+ __props__.__dict__["description"] = description
539
+ __props__.__dict__["freeform_tags"] = freeform_tags
540
+ if management_agent_id is None and not opts.urn:
541
+ raise TypeError("Missing required property 'management_agent_id'")
542
+ __props__.__dict__["management_agent_id"] = management_agent_id
543
+ __props__.__dict__["name"] = name
544
+ if properties is None and not opts.urn:
545
+ raise TypeError("Missing required property 'properties'")
546
+ __props__.__dict__["properties"] = properties
547
+ if type is None and not opts.urn:
548
+ raise TypeError("Missing required property 'type'")
549
+ __props__.__dict__["type"] = type
550
+ __props__.__dict__["state"] = None
551
+ __props__.__dict__["system_tags"] = None
552
+ __props__.__dict__["time_created"] = None
553
+ __props__.__dict__["time_updated"] = None
554
+ super(NamedCredential, __self__).__init__(
555
+ 'oci:ManagementAgent/namedCredential:NamedCredential',
556
+ resource_name,
557
+ __props__,
558
+ opts)
559
+
560
+ @staticmethod
561
+ def get(resource_name: str,
562
+ id: pulumi.Input[str],
563
+ opts: Optional[pulumi.ResourceOptions] = None,
564
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
565
+ description: Optional[pulumi.Input[_builtins.str]] = None,
566
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
567
+ management_agent_id: Optional[pulumi.Input[_builtins.str]] = None,
568
+ name: Optional[pulumi.Input[_builtins.str]] = None,
569
+ properties: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NamedCredentialPropertyArgs', 'NamedCredentialPropertyArgsDict']]]]] = None,
570
+ state: Optional[pulumi.Input[_builtins.str]] = None,
571
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
572
+ time_created: Optional[pulumi.Input[_builtins.str]] = None,
573
+ time_updated: Optional[pulumi.Input[_builtins.str]] = None,
574
+ type: Optional[pulumi.Input[_builtins.str]] = None) -> 'NamedCredential':
575
+ """
576
+ Get an existing NamedCredential resource's state with the given name, id, and optional extra
577
+ properties used to qualify the lookup.
578
+
579
+ :param str resource_name: The unique name of the resulting resource.
580
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
581
+ :param pulumi.ResourceOptions opts: Options for the resource.
582
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
583
+ :param pulumi.Input[_builtins.str] description: (Updatable) Description of the Named Credential.
584
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
585
+ :param pulumi.Input[_builtins.str] management_agent_id: The Management Agent parent resource to associate this named credential with. This is the ManagementAgent resource OCID.
586
+ :param pulumi.Input[_builtins.str] name: Identifier for Named Credential. This is unique for the Management Agent.
587
+ :param pulumi.Input[Sequence[pulumi.Input[Union['NamedCredentialPropertyArgs', 'NamedCredentialPropertyArgsDict']]]] properties: (Updatable) Properties for the named credential
588
+ :param pulumi.Input[_builtins.str] state: The current state of the named credential
589
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
590
+ :param pulumi.Input[_builtins.str] time_created: The time the Named Credential was created. An RFC3339 formatted datetime string
591
+ :param pulumi.Input[_builtins.str] time_updated: The time the Named Credential data was last updated. An RFC3339 formatted datetime string
592
+ :param pulumi.Input[_builtins.str] type: The type of the Named Credential.
593
+
594
+
595
+ ** IMPORTANT **
596
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
597
+ """
598
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
599
+
600
+ __props__ = _NamedCredentialState.__new__(_NamedCredentialState)
601
+
602
+ __props__.__dict__["defined_tags"] = defined_tags
603
+ __props__.__dict__["description"] = description
604
+ __props__.__dict__["freeform_tags"] = freeform_tags
605
+ __props__.__dict__["management_agent_id"] = management_agent_id
606
+ __props__.__dict__["name"] = name
607
+ __props__.__dict__["properties"] = properties
608
+ __props__.__dict__["state"] = state
609
+ __props__.__dict__["system_tags"] = system_tags
610
+ __props__.__dict__["time_created"] = time_created
611
+ __props__.__dict__["time_updated"] = time_updated
612
+ __props__.__dict__["type"] = type
613
+ return NamedCredential(resource_name, opts=opts, __props__=__props__)
614
+
615
+ @_builtins.property
616
+ @pulumi.getter(name="definedTags")
617
+ def defined_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
618
+ """
619
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
620
+ """
621
+ return pulumi.get(self, "defined_tags")
622
+
623
+ @_builtins.property
624
+ @pulumi.getter
625
+ def description(self) -> pulumi.Output[_builtins.str]:
626
+ """
627
+ (Updatable) Description of the Named Credential.
628
+ """
629
+ return pulumi.get(self, "description")
630
+
631
+ @_builtins.property
632
+ @pulumi.getter(name="freeformTags")
633
+ def freeform_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
634
+ """
635
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
636
+ """
637
+ return pulumi.get(self, "freeform_tags")
638
+
639
+ @_builtins.property
640
+ @pulumi.getter(name="managementAgentId")
641
+ def management_agent_id(self) -> pulumi.Output[_builtins.str]:
642
+ """
643
+ The Management Agent parent resource to associate this named credential with. This is the ManagementAgent resource OCID.
644
+ """
645
+ return pulumi.get(self, "management_agent_id")
646
+
647
+ @_builtins.property
648
+ @pulumi.getter
649
+ def name(self) -> pulumi.Output[_builtins.str]:
650
+ """
651
+ Identifier for Named Credential. This is unique for the Management Agent.
652
+ """
653
+ return pulumi.get(self, "name")
654
+
655
+ @_builtins.property
656
+ @pulumi.getter
657
+ def properties(self) -> pulumi.Output[Sequence['outputs.NamedCredentialProperty']]:
658
+ """
659
+ (Updatable) Properties for the named credential
660
+ """
661
+ return pulumi.get(self, "properties")
662
+
663
+ @_builtins.property
664
+ @pulumi.getter
665
+ def state(self) -> pulumi.Output[_builtins.str]:
666
+ """
667
+ The current state of the named credential
668
+ """
669
+ return pulumi.get(self, "state")
670
+
671
+ @_builtins.property
672
+ @pulumi.getter(name="systemTags")
673
+ def system_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
674
+ """
675
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
676
+ """
677
+ return pulumi.get(self, "system_tags")
678
+
679
+ @_builtins.property
680
+ @pulumi.getter(name="timeCreated")
681
+ def time_created(self) -> pulumi.Output[_builtins.str]:
682
+ """
683
+ The time the Named Credential was created. An RFC3339 formatted datetime string
684
+ """
685
+ return pulumi.get(self, "time_created")
686
+
687
+ @_builtins.property
688
+ @pulumi.getter(name="timeUpdated")
689
+ def time_updated(self) -> pulumi.Output[_builtins.str]:
690
+ """
691
+ The time the Named Credential data was last updated. An RFC3339 formatted datetime string
692
+ """
693
+ return pulumi.get(self, "time_updated")
694
+
695
+ @_builtins.property
696
+ @pulumi.getter
697
+ def type(self) -> pulumi.Output[_builtins.str]:
698
+ """
699
+ The type of the Named Credential.
700
+
701
+
702
+ ** IMPORTANT **
703
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
704
+ """
705
+ return pulumi.get(self, "type")
706
+