pulumi-oci 3.4.0a1755585924__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.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/METADATA +1 -1
  183. {pulumi_oci-3.4.0a1755585924.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.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/WHEEL +0 -0
  198. {pulumi_oci-3.4.0a1755585924.dist-info → pulumi_oci-3.4.0a1755922408.dist-info}/top_level.txt +0 -0
@@ -17,6 +17,8 @@ from .. import _utilities
17
17
  __all__ = [
18
18
  'ModelComponentModelArgs',
19
19
  'ModelComponentModelArgsDict',
20
+ 'ModelLockArgs',
21
+ 'ModelLockArgsDict',
20
22
  'ModelMetricArgs',
21
23
  'ModelMetricArgsDict',
22
24
  'ModelMetricDatasetSummaryArgs',
@@ -29,6 +31,8 @@ __all__ = [
29
31
  'ModelMetricOverallMetricsReportArgsDict',
30
32
  'ModelMetricOverallMetricsReportConfidenceEntryArgs',
31
33
  'ModelMetricOverallMetricsReportConfidenceEntryArgsDict',
34
+ 'ModelModelSubTypeArgs',
35
+ 'ModelModelSubTypeArgsDict',
32
36
  'ModelTestingDatasetArgs',
33
37
  'ModelTestingDatasetArgsDict',
34
38
  'ModelTrainingDatasetArgs',
@@ -45,6 +49,12 @@ __all__ = [
45
49
  'ProcessorJobProcessorConfigArgsDict',
46
50
  'ProcessorJobProcessorConfigFeatureArgs',
47
51
  'ProcessorJobProcessorConfigFeatureArgsDict',
52
+ 'ProcessorJobProcessorConfigNormalizationFieldArgs',
53
+ 'ProcessorJobProcessorConfigNormalizationFieldArgsDict',
54
+ 'ProcessorJobProcessorConfigNormalizationFieldMapArgs',
55
+ 'ProcessorJobProcessorConfigNormalizationFieldMapArgsDict',
56
+ 'ProjectLockArgs',
57
+ 'ProjectLockArgsDict',
48
58
  'GetModelsFilterArgs',
49
59
  'GetModelsFilterArgsDict',
50
60
  'GetProjectsFilterArgs',
@@ -85,6 +95,117 @@ class ModelComponentModelArgs:
85
95
  pulumi.set(self, "model_id", value)
86
96
 
87
97
 
98
+ if not MYPY:
99
+ class ModelLockArgsDict(TypedDict):
100
+ type: pulumi.Input[_builtins.str]
101
+ """
102
+ Lock type.
103
+ """
104
+ compartment_id: NotRequired[pulumi.Input[_builtins.str]]
105
+ """
106
+ (Updatable) The compartment identifier.
107
+ """
108
+ message: NotRequired[pulumi.Input[_builtins.str]]
109
+ """
110
+ A message added by the lock creator. The message typically gives an indication of why the resource is locked.
111
+ """
112
+ related_resource_id: NotRequired[pulumi.Input[_builtins.str]]
113
+ """
114
+ The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
115
+ """
116
+ time_created: NotRequired[pulumi.Input[_builtins.str]]
117
+ """
118
+ When the model was created, as an RFC3339 datetime string.
119
+ """
120
+ elif False:
121
+ ModelLockArgsDict: TypeAlias = Mapping[str, Any]
122
+
123
+ @pulumi.input_type
124
+ class ModelLockArgs:
125
+ def __init__(__self__, *,
126
+ type: pulumi.Input[_builtins.str],
127
+ compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
128
+ message: Optional[pulumi.Input[_builtins.str]] = None,
129
+ related_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
130
+ time_created: Optional[pulumi.Input[_builtins.str]] = None):
131
+ """
132
+ :param pulumi.Input[_builtins.str] type: Lock type.
133
+ :param pulumi.Input[_builtins.str] compartment_id: (Updatable) The compartment identifier.
134
+ :param pulumi.Input[_builtins.str] message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
135
+ :param pulumi.Input[_builtins.str] related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
136
+ :param pulumi.Input[_builtins.str] time_created: When the model was created, as an RFC3339 datetime string.
137
+ """
138
+ pulumi.set(__self__, "type", type)
139
+ if compartment_id is not None:
140
+ pulumi.set(__self__, "compartment_id", compartment_id)
141
+ if message is not None:
142
+ pulumi.set(__self__, "message", message)
143
+ if related_resource_id is not None:
144
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
145
+ if time_created is not None:
146
+ pulumi.set(__self__, "time_created", time_created)
147
+
148
+ @_builtins.property
149
+ @pulumi.getter
150
+ def type(self) -> pulumi.Input[_builtins.str]:
151
+ """
152
+ Lock type.
153
+ """
154
+ return pulumi.get(self, "type")
155
+
156
+ @type.setter
157
+ def type(self, value: pulumi.Input[_builtins.str]):
158
+ pulumi.set(self, "type", value)
159
+
160
+ @_builtins.property
161
+ @pulumi.getter(name="compartmentId")
162
+ def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
163
+ """
164
+ (Updatable) The compartment identifier.
165
+ """
166
+ return pulumi.get(self, "compartment_id")
167
+
168
+ @compartment_id.setter
169
+ def compartment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
170
+ pulumi.set(self, "compartment_id", value)
171
+
172
+ @_builtins.property
173
+ @pulumi.getter
174
+ def message(self) -> Optional[pulumi.Input[_builtins.str]]:
175
+ """
176
+ A message added by the lock creator. The message typically gives an indication of why the resource is locked.
177
+ """
178
+ return pulumi.get(self, "message")
179
+
180
+ @message.setter
181
+ def message(self, value: Optional[pulumi.Input[_builtins.str]]):
182
+ pulumi.set(self, "message", value)
183
+
184
+ @_builtins.property
185
+ @pulumi.getter(name="relatedResourceId")
186
+ def related_resource_id(self) -> Optional[pulumi.Input[_builtins.str]]:
187
+ """
188
+ The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
189
+ """
190
+ return pulumi.get(self, "related_resource_id")
191
+
192
+ @related_resource_id.setter
193
+ def related_resource_id(self, value: Optional[pulumi.Input[_builtins.str]]):
194
+ pulumi.set(self, "related_resource_id", value)
195
+
196
+ @_builtins.property
197
+ @pulumi.getter(name="timeCreated")
198
+ def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
199
+ """
200
+ When the model was created, as an RFC3339 datetime string.
201
+ """
202
+ return pulumi.get(self, "time_created")
203
+
204
+ @time_created.setter
205
+ def time_created(self, value: Optional[pulumi.Input[_builtins.str]]):
206
+ pulumi.set(self, "time_created", value)
207
+
208
+
88
209
  if not MYPY:
89
210
  class ModelMetricArgsDict(TypedDict):
90
211
  dataset_summaries: NotRequired[pulumi.Input[Sequence[pulumi.Input['ModelMetricDatasetSummaryArgsDict']]]]
@@ -637,6 +758,77 @@ class ModelMetricOverallMetricsReportConfidenceEntryArgs:
637
758
  pulumi.set(self, "threshold", value)
638
759
 
639
760
 
761
+ if not MYPY:
762
+ class ModelModelSubTypeArgsDict(TypedDict):
763
+ model_sub_type: pulumi.Input[_builtins.str]
764
+ """
765
+ The model sub type for PRE_TRAINED_KEY_VALUE_EXTRACTION The allowed values are:
766
+ * `RECEIPT`
767
+ * `INVOICE`
768
+ * `PASSPORT`
769
+ * `DRIVER_LICENSE`
770
+ * `HEALTH_INSURANCE_ID`
771
+ """
772
+ model_type: pulumi.Input[_builtins.str]
773
+ """
774
+ Sub type model based on the model type. The allowed values are:
775
+ * `PRE_TRAINED_KEY_VALUE_EXTRACTION`
776
+ * `PRE_TRAINED_DOCUMENT_ELEMENTS_EXTRACTION`
777
+ """
778
+ elif False:
779
+ ModelModelSubTypeArgsDict: TypeAlias = Mapping[str, Any]
780
+
781
+ @pulumi.input_type
782
+ class ModelModelSubTypeArgs:
783
+ def __init__(__self__, *,
784
+ model_sub_type: pulumi.Input[_builtins.str],
785
+ model_type: pulumi.Input[_builtins.str]):
786
+ """
787
+ :param pulumi.Input[_builtins.str] model_sub_type: The model sub type for PRE_TRAINED_KEY_VALUE_EXTRACTION The allowed values are:
788
+ * `RECEIPT`
789
+ * `INVOICE`
790
+ * `PASSPORT`
791
+ * `DRIVER_LICENSE`
792
+ * `HEALTH_INSURANCE_ID`
793
+ :param pulumi.Input[_builtins.str] model_type: Sub type model based on the model type. The allowed values are:
794
+ * `PRE_TRAINED_KEY_VALUE_EXTRACTION`
795
+ * `PRE_TRAINED_DOCUMENT_ELEMENTS_EXTRACTION`
796
+ """
797
+ pulumi.set(__self__, "model_sub_type", model_sub_type)
798
+ pulumi.set(__self__, "model_type", model_type)
799
+
800
+ @_builtins.property
801
+ @pulumi.getter(name="modelSubType")
802
+ def model_sub_type(self) -> pulumi.Input[_builtins.str]:
803
+ """
804
+ The model sub type for PRE_TRAINED_KEY_VALUE_EXTRACTION The allowed values are:
805
+ * `RECEIPT`
806
+ * `INVOICE`
807
+ * `PASSPORT`
808
+ * `DRIVER_LICENSE`
809
+ * `HEALTH_INSURANCE_ID`
810
+ """
811
+ return pulumi.get(self, "model_sub_type")
812
+
813
+ @model_sub_type.setter
814
+ def model_sub_type(self, value: pulumi.Input[_builtins.str]):
815
+ pulumi.set(self, "model_sub_type", value)
816
+
817
+ @_builtins.property
818
+ @pulumi.getter(name="modelType")
819
+ def model_type(self) -> pulumi.Input[_builtins.str]:
820
+ """
821
+ Sub type model based on the model type. The allowed values are:
822
+ * `PRE_TRAINED_KEY_VALUE_EXTRACTION`
823
+ * `PRE_TRAINED_DOCUMENT_ELEMENTS_EXTRACTION`
824
+ """
825
+ return pulumi.get(self, "model_type")
826
+
827
+ @model_type.setter
828
+ def model_type(self, value: pulumi.Input[_builtins.str]):
829
+ pulumi.set(self, "model_type", value)
830
+
831
+
640
832
  if not MYPY:
641
833
  class ModelTestingDatasetArgsDict(TypedDict):
642
834
  dataset_type: pulumi.Input[_builtins.str]
@@ -998,6 +1190,10 @@ if not MYPY:
998
1190
  """
999
1191
  The list of ObjectLocations.
1000
1192
  """
1193
+ page_ranges: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
1194
+ """
1195
+ The page ranges to be analysed.
1196
+ """
1001
1197
  elif False:
1002
1198
  ProcessorJobInputLocationArgsDict: TypeAlias = Mapping[str, Any]
1003
1199
 
@@ -1006,19 +1202,23 @@ class ProcessorJobInputLocationArgs:
1006
1202
  def __init__(__self__, *,
1007
1203
  source_type: pulumi.Input[_builtins.str],
1008
1204
  data: Optional[pulumi.Input[_builtins.str]] = None,
1009
- object_locations: Optional[pulumi.Input[Sequence[pulumi.Input['ProcessorJobInputLocationObjectLocationArgs']]]] = None):
1205
+ object_locations: Optional[pulumi.Input[Sequence[pulumi.Input['ProcessorJobInputLocationObjectLocationArgs']]]] = None,
1206
+ page_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
1010
1207
  """
1011
1208
  :param pulumi.Input[_builtins.str] source_type: The type of input location. The allowed values are:
1012
1209
  * `OBJECT_STORAGE_LOCATIONS`: A list of object locations in Object Storage.
1013
1210
  * `INLINE_DOCUMENT_CONTENT`: The content of an inline document.
1014
1211
  :param pulumi.Input[_builtins.str] data: Raw document data with Base64 encoding.
1015
1212
  :param pulumi.Input[Sequence[pulumi.Input['ProcessorJobInputLocationObjectLocationArgs']]] object_locations: The list of ObjectLocations.
1213
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] page_ranges: The page ranges to be analysed.
1016
1214
  """
1017
1215
  pulumi.set(__self__, "source_type", source_type)
1018
1216
  if data is not None:
1019
1217
  pulumi.set(__self__, "data", data)
1020
1218
  if object_locations is not None:
1021
1219
  pulumi.set(__self__, "object_locations", object_locations)
1220
+ if page_ranges is not None:
1221
+ pulumi.set(__self__, "page_ranges", page_ranges)
1022
1222
 
1023
1223
  @_builtins.property
1024
1224
  @pulumi.getter(name="sourceType")
@@ -1058,6 +1258,18 @@ class ProcessorJobInputLocationArgs:
1058
1258
  def object_locations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ProcessorJobInputLocationObjectLocationArgs']]]]):
1059
1259
  pulumi.set(self, "object_locations", value)
1060
1260
 
1261
+ @_builtins.property
1262
+ @pulumi.getter(name="pageRanges")
1263
+ def page_ranges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
1264
+ """
1265
+ The page ranges to be analysed.
1266
+ """
1267
+ return pulumi.get(self, "page_ranges")
1268
+
1269
+ @page_ranges.setter
1270
+ def page_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
1271
+ pulumi.set(self, "page_ranges", value)
1272
+
1061
1273
 
1062
1274
  if not MYPY:
1063
1275
  class ProcessorJobInputLocationObjectLocationArgsDict(TypedDict):
@@ -1073,6 +1285,10 @@ if not MYPY:
1073
1285
  """
1074
1286
  The Object Storage object name.
1075
1287
  """
1288
+ page_ranges: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
1289
+ """
1290
+ The page ranges to be analysed.
1291
+ """
1076
1292
  elif False:
1077
1293
  ProcessorJobInputLocationObjectLocationArgsDict: TypeAlias = Mapping[str, Any]
1078
1294
 
@@ -1081,11 +1297,13 @@ class ProcessorJobInputLocationObjectLocationArgs:
1081
1297
  def __init__(__self__, *,
1082
1298
  bucket: Optional[pulumi.Input[_builtins.str]] = None,
1083
1299
  namespace: Optional[pulumi.Input[_builtins.str]] = None,
1084
- object: Optional[pulumi.Input[_builtins.str]] = None):
1300
+ object: Optional[pulumi.Input[_builtins.str]] = None,
1301
+ page_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
1085
1302
  """
1086
1303
  :param pulumi.Input[_builtins.str] bucket: The Object Storage bucket name.
1087
1304
  :param pulumi.Input[_builtins.str] namespace: The Object Storage namespace name.
1088
1305
  :param pulumi.Input[_builtins.str] object: The Object Storage object name.
1306
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] page_ranges: The page ranges to be analysed.
1089
1307
  """
1090
1308
  if bucket is not None:
1091
1309
  pulumi.set(__self__, "bucket", bucket)
@@ -1093,6 +1311,8 @@ class ProcessorJobInputLocationObjectLocationArgs:
1093
1311
  pulumi.set(__self__, "namespace", namespace)
1094
1312
  if object is not None:
1095
1313
  pulumi.set(__self__, "object", object)
1314
+ if page_ranges is not None:
1315
+ pulumi.set(__self__, "page_ranges", page_ranges)
1096
1316
 
1097
1317
  @_builtins.property
1098
1318
  @pulumi.getter
@@ -1130,6 +1350,18 @@ class ProcessorJobInputLocationObjectLocationArgs:
1130
1350
  def object(self, value: Optional[pulumi.Input[_builtins.str]]):
1131
1351
  pulumi.set(self, "object", value)
1132
1352
 
1353
+ @_builtins.property
1354
+ @pulumi.getter(name="pageRanges")
1355
+ def page_ranges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
1356
+ """
1357
+ The page ranges to be analysed.
1358
+ """
1359
+ return pulumi.get(self, "page_ranges")
1360
+
1361
+ @page_ranges.setter
1362
+ def page_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
1363
+ pulumi.set(self, "page_ranges", value)
1364
+
1133
1365
 
1134
1366
  if not MYPY:
1135
1367
  class ProcessorJobOutputLocationArgsDict(TypedDict):
@@ -1226,6 +1458,14 @@ if not MYPY:
1226
1458
  """
1227
1459
  The document language, abbreviated according to the BCP 47 Language-Tag syntax.
1228
1460
  """
1461
+ model_id: NotRequired[pulumi.Input[_builtins.str]]
1462
+ """
1463
+ Unique identifier custom model OCID that should be used for inference.
1464
+ """
1465
+ normalization_fields: NotRequired[pulumi.Input[Sequence[pulumi.Input['ProcessorJobProcessorConfigNormalizationFieldArgsDict']]]]
1466
+ """
1467
+ A string-to-object map where the key is the normalization field and the object contains information about the field.
1468
+ """
1229
1469
  elif False:
1230
1470
  ProcessorJobProcessorConfigArgsDict: TypeAlias = Mapping[str, Any]
1231
1471
 
@@ -1236,7 +1476,9 @@ class ProcessorJobProcessorConfigArgs:
1236
1476
  processor_type: pulumi.Input[_builtins.str],
1237
1477
  document_type: Optional[pulumi.Input[_builtins.str]] = None,
1238
1478
  is_zip_output_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
1239
- language: Optional[pulumi.Input[_builtins.str]] = None):
1479
+ language: Optional[pulumi.Input[_builtins.str]] = None,
1480
+ model_id: Optional[pulumi.Input[_builtins.str]] = None,
1481
+ normalization_fields: Optional[pulumi.Input[Sequence[pulumi.Input['ProcessorJobProcessorConfigNormalizationFieldArgs']]]] = None):
1240
1482
  """
1241
1483
  :param pulumi.Input[Sequence[pulumi.Input['ProcessorJobProcessorConfigFeatureArgs']]] features: The types of document analysis requested.
1242
1484
  :param pulumi.Input[_builtins.str] processor_type: The type of the processor.
@@ -1247,6 +1489,8 @@ class ProcessorJobProcessorConfigArgs:
1247
1489
  :param pulumi.Input[_builtins.str] document_type: The document type.
1248
1490
  :param pulumi.Input[_builtins.bool] is_zip_output_enabled: Whether or not to generate a ZIP file containing the results.
1249
1491
  :param pulumi.Input[_builtins.str] language: The document language, abbreviated according to the BCP 47 Language-Tag syntax.
1492
+ :param pulumi.Input[_builtins.str] model_id: Unique identifier custom model OCID that should be used for inference.
1493
+ :param pulumi.Input[Sequence[pulumi.Input['ProcessorJobProcessorConfigNormalizationFieldArgs']]] normalization_fields: A string-to-object map where the key is the normalization field and the object contains information about the field.
1250
1494
  """
1251
1495
  pulumi.set(__self__, "features", features)
1252
1496
  pulumi.set(__self__, "processor_type", processor_type)
@@ -1256,6 +1500,10 @@ class ProcessorJobProcessorConfigArgs:
1256
1500
  pulumi.set(__self__, "is_zip_output_enabled", is_zip_output_enabled)
1257
1501
  if language is not None:
1258
1502
  pulumi.set(__self__, "language", language)
1503
+ if model_id is not None:
1504
+ pulumi.set(__self__, "model_id", model_id)
1505
+ if normalization_fields is not None:
1506
+ pulumi.set(__self__, "normalization_fields", normalization_fields)
1259
1507
 
1260
1508
  @_builtins.property
1261
1509
  @pulumi.getter
@@ -1321,6 +1569,30 @@ class ProcessorJobProcessorConfigArgs:
1321
1569
  def language(self, value: Optional[pulumi.Input[_builtins.str]]):
1322
1570
  pulumi.set(self, "language", value)
1323
1571
 
1572
+ @_builtins.property
1573
+ @pulumi.getter(name="modelId")
1574
+ def model_id(self) -> Optional[pulumi.Input[_builtins.str]]:
1575
+ """
1576
+ Unique identifier custom model OCID that should be used for inference.
1577
+ """
1578
+ return pulumi.get(self, "model_id")
1579
+
1580
+ @model_id.setter
1581
+ def model_id(self, value: Optional[pulumi.Input[_builtins.str]]):
1582
+ pulumi.set(self, "model_id", value)
1583
+
1584
+ @_builtins.property
1585
+ @pulumi.getter(name="normalizationFields")
1586
+ def normalization_fields(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ProcessorJobProcessorConfigNormalizationFieldArgs']]]]:
1587
+ """
1588
+ A string-to-object map where the key is the normalization field and the object contains information about the field.
1589
+ """
1590
+ return pulumi.get(self, "normalization_fields")
1591
+
1592
+ @normalization_fields.setter
1593
+ def normalization_fields(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ProcessorJobProcessorConfigNormalizationFieldArgs']]]]):
1594
+ pulumi.set(self, "normalization_fields", value)
1595
+
1324
1596
 
1325
1597
  if not MYPY:
1326
1598
  class ProcessorJobProcessorConfigFeatureArgsDict(TypedDict):
@@ -1332,6 +1604,7 @@ if not MYPY:
1332
1604
  * `TABLE_EXTRACTION`: Detect and extract data in tables.
1333
1605
  * `KEY_VALUE_EXTRACTION`: Extract form fields.
1334
1606
  * `DOCUMENT_CLASSIFICATION`: Identify the type of document.
1607
+ * `DOCUMENT_ELEMENTS_EXTRACTION`: Extract information from bar code
1335
1608
  """
1336
1609
  generate_searchable_pdf: NotRequired[pulumi.Input[_builtins.bool]]
1337
1610
  """
@@ -1343,7 +1616,11 @@ if not MYPY:
1343
1616
  """
1344
1617
  model_id: NotRequired[pulumi.Input[_builtins.str]]
1345
1618
  """
1346
- The custom model ID.
1619
+ Unique identifier custom model OCID that should be used for inference.
1620
+ """
1621
+ selection_mark_detection: NotRequired[pulumi.Input[_builtins.bool]]
1622
+ """
1623
+ Whether checkbox detection feature is enabled or disabled.
1347
1624
  """
1348
1625
  tenancy_id: NotRequired[pulumi.Input[_builtins.str]]
1349
1626
  """
@@ -1359,6 +1636,7 @@ class ProcessorJobProcessorConfigFeatureArgs:
1359
1636
  generate_searchable_pdf: Optional[pulumi.Input[_builtins.bool]] = None,
1360
1637
  max_results: Optional[pulumi.Input[_builtins.int]] = None,
1361
1638
  model_id: Optional[pulumi.Input[_builtins.str]] = None,
1639
+ selection_mark_detection: Optional[pulumi.Input[_builtins.bool]] = None,
1362
1640
  tenancy_id: Optional[pulumi.Input[_builtins.str]] = None):
1363
1641
  """
1364
1642
  :param pulumi.Input[_builtins.str] feature_type: The type of document analysis requested. The allowed values are:
@@ -1367,9 +1645,11 @@ class ProcessorJobProcessorConfigFeatureArgs:
1367
1645
  * `TABLE_EXTRACTION`: Detect and extract data in tables.
1368
1646
  * `KEY_VALUE_EXTRACTION`: Extract form fields.
1369
1647
  * `DOCUMENT_CLASSIFICATION`: Identify the type of document.
1648
+ * `DOCUMENT_ELEMENTS_EXTRACTION`: Extract information from bar code
1370
1649
  :param pulumi.Input[_builtins.bool] generate_searchable_pdf: Whether or not to generate a searchable PDF file.
1371
1650
  :param pulumi.Input[_builtins.int] max_results: The maximum number of results to return.
1372
- :param pulumi.Input[_builtins.str] model_id: The custom model ID.
1651
+ :param pulumi.Input[_builtins.str] model_id: Unique identifier custom model OCID that should be used for inference.
1652
+ :param pulumi.Input[_builtins.bool] selection_mark_detection: Whether checkbox detection feature is enabled or disabled.
1373
1653
  :param pulumi.Input[_builtins.str] tenancy_id: The custom model tenancy ID when modelId represents aliasName.
1374
1654
  """
1375
1655
  pulumi.set(__self__, "feature_type", feature_type)
@@ -1379,6 +1659,8 @@ class ProcessorJobProcessorConfigFeatureArgs:
1379
1659
  pulumi.set(__self__, "max_results", max_results)
1380
1660
  if model_id is not None:
1381
1661
  pulumi.set(__self__, "model_id", model_id)
1662
+ if selection_mark_detection is not None:
1663
+ pulumi.set(__self__, "selection_mark_detection", selection_mark_detection)
1382
1664
  if tenancy_id is not None:
1383
1665
  pulumi.set(__self__, "tenancy_id", tenancy_id)
1384
1666
 
@@ -1392,6 +1674,7 @@ class ProcessorJobProcessorConfigFeatureArgs:
1392
1674
  * `TABLE_EXTRACTION`: Detect and extract data in tables.
1393
1675
  * `KEY_VALUE_EXTRACTION`: Extract form fields.
1394
1676
  * `DOCUMENT_CLASSIFICATION`: Identify the type of document.
1677
+ * `DOCUMENT_ELEMENTS_EXTRACTION`: Extract information from bar code
1395
1678
  """
1396
1679
  return pulumi.get(self, "feature_type")
1397
1680
 
@@ -1427,7 +1710,7 @@ class ProcessorJobProcessorConfigFeatureArgs:
1427
1710
  @pulumi.getter(name="modelId")
1428
1711
  def model_id(self) -> Optional[pulumi.Input[_builtins.str]]:
1429
1712
  """
1430
- The custom model ID.
1713
+ Unique identifier custom model OCID that should be used for inference.
1431
1714
  """
1432
1715
  return pulumi.get(self, "model_id")
1433
1716
 
@@ -1435,6 +1718,18 @@ class ProcessorJobProcessorConfigFeatureArgs:
1435
1718
  def model_id(self, value: Optional[pulumi.Input[_builtins.str]]):
1436
1719
  pulumi.set(self, "model_id", value)
1437
1720
 
1721
+ @_builtins.property
1722
+ @pulumi.getter(name="selectionMarkDetection")
1723
+ def selection_mark_detection(self) -> Optional[pulumi.Input[_builtins.bool]]:
1724
+ """
1725
+ Whether checkbox detection feature is enabled or disabled.
1726
+ """
1727
+ return pulumi.get(self, "selection_mark_detection")
1728
+
1729
+ @selection_mark_detection.setter
1730
+ def selection_mark_detection(self, value: Optional[pulumi.Input[_builtins.bool]]):
1731
+ pulumi.set(self, "selection_mark_detection", value)
1732
+
1438
1733
  @_builtins.property
1439
1734
  @pulumi.getter(name="tenancyId")
1440
1735
  def tenancy_id(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -1448,6 +1743,181 @@ class ProcessorJobProcessorConfigFeatureArgs:
1448
1743
  pulumi.set(self, "tenancy_id", value)
1449
1744
 
1450
1745
 
1746
+ if not MYPY:
1747
+ class ProcessorJobProcessorConfigNormalizationFieldArgsDict(TypedDict):
1748
+ maps: NotRequired[pulumi.Input[Sequence[pulumi.Input['ProcessorJobProcessorConfigNormalizationFieldMapArgsDict']]]]
1749
+ """
1750
+ A wrapped map.
1751
+ """
1752
+ elif False:
1753
+ ProcessorJobProcessorConfigNormalizationFieldArgsDict: TypeAlias = Mapping[str, Any]
1754
+
1755
+ @pulumi.input_type
1756
+ class ProcessorJobProcessorConfigNormalizationFieldArgs:
1757
+ def __init__(__self__, *,
1758
+ maps: Optional[pulumi.Input[Sequence[pulumi.Input['ProcessorJobProcessorConfigNormalizationFieldMapArgs']]]] = None):
1759
+ """
1760
+ :param pulumi.Input[Sequence[pulumi.Input['ProcessorJobProcessorConfigNormalizationFieldMapArgs']]] maps: A wrapped map.
1761
+ """
1762
+ if maps is not None:
1763
+ pulumi.set(__self__, "maps", maps)
1764
+
1765
+ @_builtins.property
1766
+ @pulumi.getter
1767
+ def maps(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ProcessorJobProcessorConfigNormalizationFieldMapArgs']]]]:
1768
+ """
1769
+ A wrapped map.
1770
+ """
1771
+ return pulumi.get(self, "maps")
1772
+
1773
+ @maps.setter
1774
+ def maps(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ProcessorJobProcessorConfigNormalizationFieldMapArgs']]]]):
1775
+ pulumi.set(self, "maps", value)
1776
+
1777
+
1778
+ if not MYPY:
1779
+ class ProcessorJobProcessorConfigNormalizationFieldMapArgsDict(TypedDict):
1780
+ normalization_type: NotRequired[pulumi.Input[_builtins.str]]
1781
+ """
1782
+ A string mapping to the normalization type.
1783
+ """
1784
+ elif False:
1785
+ ProcessorJobProcessorConfigNormalizationFieldMapArgsDict: TypeAlias = Mapping[str, Any]
1786
+
1787
+ @pulumi.input_type
1788
+ class ProcessorJobProcessorConfigNormalizationFieldMapArgs:
1789
+ def __init__(__self__, *,
1790
+ normalization_type: Optional[pulumi.Input[_builtins.str]] = None):
1791
+ """
1792
+ :param pulumi.Input[_builtins.str] normalization_type: A string mapping to the normalization type.
1793
+ """
1794
+ if normalization_type is not None:
1795
+ pulumi.set(__self__, "normalization_type", normalization_type)
1796
+
1797
+ @_builtins.property
1798
+ @pulumi.getter(name="normalizationType")
1799
+ def normalization_type(self) -> Optional[pulumi.Input[_builtins.str]]:
1800
+ """
1801
+ A string mapping to the normalization type.
1802
+ """
1803
+ return pulumi.get(self, "normalization_type")
1804
+
1805
+ @normalization_type.setter
1806
+ def normalization_type(self, value: Optional[pulumi.Input[_builtins.str]]):
1807
+ pulumi.set(self, "normalization_type", value)
1808
+
1809
+
1810
+ if not MYPY:
1811
+ class ProjectLockArgsDict(TypedDict):
1812
+ type: pulumi.Input[_builtins.str]
1813
+ """
1814
+ Lock type.
1815
+ """
1816
+ compartment_id: NotRequired[pulumi.Input[_builtins.str]]
1817
+ """
1818
+ (Updatable) The compartment identifier.
1819
+ """
1820
+ message: NotRequired[pulumi.Input[_builtins.str]]
1821
+ """
1822
+ A message added by the lock creator. The message typically gives an indication of why the resource is locked.
1823
+ """
1824
+ related_resource_id: NotRequired[pulumi.Input[_builtins.str]]
1825
+ """
1826
+ The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
1827
+ """
1828
+ time_created: NotRequired[pulumi.Input[_builtins.str]]
1829
+ """
1830
+ When the project was created, as an RFC3339 datetime string.
1831
+ """
1832
+ elif False:
1833
+ ProjectLockArgsDict: TypeAlias = Mapping[str, Any]
1834
+
1835
+ @pulumi.input_type
1836
+ class ProjectLockArgs:
1837
+ def __init__(__self__, *,
1838
+ type: pulumi.Input[_builtins.str],
1839
+ compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
1840
+ message: Optional[pulumi.Input[_builtins.str]] = None,
1841
+ related_resource_id: Optional[pulumi.Input[_builtins.str]] = None,
1842
+ time_created: Optional[pulumi.Input[_builtins.str]] = None):
1843
+ """
1844
+ :param pulumi.Input[_builtins.str] type: Lock type.
1845
+ :param pulumi.Input[_builtins.str] compartment_id: (Updatable) The compartment identifier.
1846
+ :param pulumi.Input[_builtins.str] message: A message added by the lock creator. The message typically gives an indication of why the resource is locked.
1847
+ :param pulumi.Input[_builtins.str] related_resource_id: The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
1848
+ :param pulumi.Input[_builtins.str] time_created: When the project was created, as an RFC3339 datetime string.
1849
+ """
1850
+ pulumi.set(__self__, "type", type)
1851
+ if compartment_id is not None:
1852
+ pulumi.set(__self__, "compartment_id", compartment_id)
1853
+ if message is not None:
1854
+ pulumi.set(__self__, "message", message)
1855
+ if related_resource_id is not None:
1856
+ pulumi.set(__self__, "related_resource_id", related_resource_id)
1857
+ if time_created is not None:
1858
+ pulumi.set(__self__, "time_created", time_created)
1859
+
1860
+ @_builtins.property
1861
+ @pulumi.getter
1862
+ def type(self) -> pulumi.Input[_builtins.str]:
1863
+ """
1864
+ Lock type.
1865
+ """
1866
+ return pulumi.get(self, "type")
1867
+
1868
+ @type.setter
1869
+ def type(self, value: pulumi.Input[_builtins.str]):
1870
+ pulumi.set(self, "type", value)
1871
+
1872
+ @_builtins.property
1873
+ @pulumi.getter(name="compartmentId")
1874
+ def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
1875
+ """
1876
+ (Updatable) The compartment identifier.
1877
+ """
1878
+ return pulumi.get(self, "compartment_id")
1879
+
1880
+ @compartment_id.setter
1881
+ def compartment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
1882
+ pulumi.set(self, "compartment_id", value)
1883
+
1884
+ @_builtins.property
1885
+ @pulumi.getter
1886
+ def message(self) -> Optional[pulumi.Input[_builtins.str]]:
1887
+ """
1888
+ A message added by the lock creator. The message typically gives an indication of why the resource is locked.
1889
+ """
1890
+ return pulumi.get(self, "message")
1891
+
1892
+ @message.setter
1893
+ def message(self, value: Optional[pulumi.Input[_builtins.str]]):
1894
+ pulumi.set(self, "message", value)
1895
+
1896
+ @_builtins.property
1897
+ @pulumi.getter(name="relatedResourceId")
1898
+ def related_resource_id(self) -> Optional[pulumi.Input[_builtins.str]]:
1899
+ """
1900
+ The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
1901
+ """
1902
+ return pulumi.get(self, "related_resource_id")
1903
+
1904
+ @related_resource_id.setter
1905
+ def related_resource_id(self, value: Optional[pulumi.Input[_builtins.str]]):
1906
+ pulumi.set(self, "related_resource_id", value)
1907
+
1908
+ @_builtins.property
1909
+ @pulumi.getter(name="timeCreated")
1910
+ def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
1911
+ """
1912
+ When the project was created, as an RFC3339 datetime string.
1913
+ """
1914
+ return pulumi.get(self, "time_created")
1915
+
1916
+ @time_created.setter
1917
+ def time_created(self, value: Optional[pulumi.Input[_builtins.str]]):
1918
+ pulumi.set(self, "time_created", value)
1919
+
1920
+
1451
1921
  if not MYPY:
1452
1922
  class GetModelsFilterArgsDict(TypedDict):
1453
1923
  name: _builtins.str