pulumi-oci 3.4.0a1755714728__py3-none-any.whl → 3.5.0a1756190604__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.5.0a1756190604.dist-info}/METADATA +1 -1
  183. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0a1756190604.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.5.0a1756190604.dist-info}/WHEEL +0 -0
  198. {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0a1756190604.dist-info}/top_level.txt +0 -0
@@ -20,22 +20,34 @@ __all__ = ['ManagementDashboardsImportArgs', 'ManagementDashboardsImport']
20
20
  class ManagementDashboardsImportArgs:
21
21
  def __init__(__self__, *,
22
22
  import_details: Optional[pulumi.Input[_builtins.str]] = None,
23
- import_details_file: Optional[pulumi.Input[_builtins.str]] = None):
23
+ import_details_file: Optional[pulumi.Input[_builtins.str]] = None,
24
+ override_dashboard_compartment_ocid: Optional[pulumi.Input[_builtins.str]] = None,
25
+ override_same_name: Optional[pulumi.Input[_builtins.str]] = None,
26
+ override_saved_search_compartment_ocid: Optional[pulumi.Input[_builtins.str]] = None):
24
27
  """
25
28
  The set of arguments for constructing a ManagementDashboardsImport resource.
26
- :param pulumi.Input[_builtins.str] import_details: Array of Dashboards to import. The `import_details` is mandatory if `import_details_path` is not passed. Value should be stringified JSON of [ManagementDashboardImportDetails](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/managementdashboard/20200901/ManagementDashboardImportDetails/)
29
+ :param pulumi.Input[_builtins.str] override_dashboard_compartment_ocid: If this attribute is set, the dashboard resources are created or updated in the compartment specified by OCID. If this attribute is not set, the compartment specified in the JSON metadata is used.
30
+ :param pulumi.Input[_builtins.str] override_same_name: By default, if a resource with the same OCID exists in the target compartment, it is updated during the import process, otherwise, a new resource is created. However, if this attribute is set to true, then during the import process if a resource with the same displayName exists in the compartment, then it is updated even if the OCIDs are different. This is useful when importing the same resource multiple times. If the compartment and displayName remain the same, the resource is only updated and multiple copies of a resource are not created.
31
+ :param pulumi.Input[_builtins.str] override_saved_search_compartment_ocid: If this attribute is set, the saved search resources are created or updated in the compartment specified by OCID. If this attribute is not set, the compartment specified in the JSON metadata is used.
32
+
33
+
34
+ ** IMPORTANT **
35
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
27
36
  """
28
37
  if import_details is not None:
29
38
  pulumi.set(__self__, "import_details", import_details)
30
39
  if import_details_file is not None:
31
40
  pulumi.set(__self__, "import_details_file", import_details_file)
41
+ if override_dashboard_compartment_ocid is not None:
42
+ pulumi.set(__self__, "override_dashboard_compartment_ocid", override_dashboard_compartment_ocid)
43
+ if override_same_name is not None:
44
+ pulumi.set(__self__, "override_same_name", override_same_name)
45
+ if override_saved_search_compartment_ocid is not None:
46
+ pulumi.set(__self__, "override_saved_search_compartment_ocid", override_saved_search_compartment_ocid)
32
47
 
33
48
  @_builtins.property
34
49
  @pulumi.getter(name="importDetails")
35
50
  def import_details(self) -> Optional[pulumi.Input[_builtins.str]]:
36
- """
37
- Array of Dashboards to import. The `import_details` is mandatory if `import_details_path` is not passed. Value should be stringified JSON of [ManagementDashboardImportDetails](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/managementdashboard/20200901/ManagementDashboardImportDetails/)
38
- """
39
51
  return pulumi.get(self, "import_details")
40
52
 
41
53
  @import_details.setter
@@ -51,27 +63,79 @@ class ManagementDashboardsImportArgs:
51
63
  def import_details_file(self, value: Optional[pulumi.Input[_builtins.str]]):
52
64
  pulumi.set(self, "import_details_file", value)
53
65
 
66
+ @_builtins.property
67
+ @pulumi.getter(name="overrideDashboardCompartmentOcid")
68
+ def override_dashboard_compartment_ocid(self) -> Optional[pulumi.Input[_builtins.str]]:
69
+ """
70
+ If this attribute is set, the dashboard resources are created or updated in the compartment specified by OCID. If this attribute is not set, the compartment specified in the JSON metadata is used.
71
+ """
72
+ return pulumi.get(self, "override_dashboard_compartment_ocid")
73
+
74
+ @override_dashboard_compartment_ocid.setter
75
+ def override_dashboard_compartment_ocid(self, value: Optional[pulumi.Input[_builtins.str]]):
76
+ pulumi.set(self, "override_dashboard_compartment_ocid", value)
77
+
78
+ @_builtins.property
79
+ @pulumi.getter(name="overrideSameName")
80
+ def override_same_name(self) -> Optional[pulumi.Input[_builtins.str]]:
81
+ """
82
+ By default, if a resource with the same OCID exists in the target compartment, it is updated during the import process, otherwise, a new resource is created. However, if this attribute is set to true, then during the import process if a resource with the same displayName exists in the compartment, then it is updated even if the OCIDs are different. This is useful when importing the same resource multiple times. If the compartment and displayName remain the same, the resource is only updated and multiple copies of a resource are not created.
83
+ """
84
+ return pulumi.get(self, "override_same_name")
85
+
86
+ @override_same_name.setter
87
+ def override_same_name(self, value: Optional[pulumi.Input[_builtins.str]]):
88
+ pulumi.set(self, "override_same_name", value)
89
+
90
+ @_builtins.property
91
+ @pulumi.getter(name="overrideSavedSearchCompartmentOcid")
92
+ def override_saved_search_compartment_ocid(self) -> Optional[pulumi.Input[_builtins.str]]:
93
+ """
94
+ If this attribute is set, the saved search resources are created or updated in the compartment specified by OCID. If this attribute is not set, the compartment specified in the JSON metadata is used.
95
+
96
+
97
+ ** IMPORTANT **
98
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
99
+ """
100
+ return pulumi.get(self, "override_saved_search_compartment_ocid")
101
+
102
+ @override_saved_search_compartment_ocid.setter
103
+ def override_saved_search_compartment_ocid(self, value: Optional[pulumi.Input[_builtins.str]]):
104
+ pulumi.set(self, "override_saved_search_compartment_ocid", value)
105
+
54
106
 
55
107
  @pulumi.input_type
56
108
  class _ManagementDashboardsImportState:
57
109
  def __init__(__self__, *,
58
110
  import_details: Optional[pulumi.Input[_builtins.str]] = None,
59
- import_details_file: Optional[pulumi.Input[_builtins.str]] = None):
111
+ import_details_file: Optional[pulumi.Input[_builtins.str]] = None,
112
+ override_dashboard_compartment_ocid: Optional[pulumi.Input[_builtins.str]] = None,
113
+ override_same_name: Optional[pulumi.Input[_builtins.str]] = None,
114
+ override_saved_search_compartment_ocid: Optional[pulumi.Input[_builtins.str]] = None):
60
115
  """
61
116
  Input properties used for looking up and filtering ManagementDashboardsImport resources.
62
- :param pulumi.Input[_builtins.str] import_details: Array of Dashboards to import. The `import_details` is mandatory if `import_details_path` is not passed. Value should be stringified JSON of [ManagementDashboardImportDetails](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/managementdashboard/20200901/ManagementDashboardImportDetails/)
117
+ :param pulumi.Input[_builtins.str] override_dashboard_compartment_ocid: If this attribute is set, the dashboard resources are created or updated in the compartment specified by OCID. If this attribute is not set, the compartment specified in the JSON metadata is used.
118
+ :param pulumi.Input[_builtins.str] override_same_name: By default, if a resource with the same OCID exists in the target compartment, it is updated during the import process, otherwise, a new resource is created. However, if this attribute is set to true, then during the import process if a resource with the same displayName exists in the compartment, then it is updated even if the OCIDs are different. This is useful when importing the same resource multiple times. If the compartment and displayName remain the same, the resource is only updated and multiple copies of a resource are not created.
119
+ :param pulumi.Input[_builtins.str] override_saved_search_compartment_ocid: If this attribute is set, the saved search resources are created or updated in the compartment specified by OCID. If this attribute is not set, the compartment specified in the JSON metadata is used.
120
+
121
+
122
+ ** IMPORTANT **
123
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
63
124
  """
64
125
  if import_details is not None:
65
126
  pulumi.set(__self__, "import_details", import_details)
66
127
  if import_details_file is not None:
67
128
  pulumi.set(__self__, "import_details_file", import_details_file)
129
+ if override_dashboard_compartment_ocid is not None:
130
+ pulumi.set(__self__, "override_dashboard_compartment_ocid", override_dashboard_compartment_ocid)
131
+ if override_same_name is not None:
132
+ pulumi.set(__self__, "override_same_name", override_same_name)
133
+ if override_saved_search_compartment_ocid is not None:
134
+ pulumi.set(__self__, "override_saved_search_compartment_ocid", override_saved_search_compartment_ocid)
68
135
 
69
136
  @_builtins.property
70
137
  @pulumi.getter(name="importDetails")
71
138
  def import_details(self) -> Optional[pulumi.Input[_builtins.str]]:
72
- """
73
- Array of Dashboards to import. The `import_details` is mandatory if `import_details_path` is not passed. Value should be stringified JSON of [ManagementDashboardImportDetails](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/managementdashboard/20200901/ManagementDashboardImportDetails/)
74
- """
75
139
  return pulumi.get(self, "import_details")
76
140
 
77
141
  @import_details.setter
@@ -87,6 +151,46 @@ class _ManagementDashboardsImportState:
87
151
  def import_details_file(self, value: Optional[pulumi.Input[_builtins.str]]):
88
152
  pulumi.set(self, "import_details_file", value)
89
153
 
154
+ @_builtins.property
155
+ @pulumi.getter(name="overrideDashboardCompartmentOcid")
156
+ def override_dashboard_compartment_ocid(self) -> Optional[pulumi.Input[_builtins.str]]:
157
+ """
158
+ If this attribute is set, the dashboard resources are created or updated in the compartment specified by OCID. If this attribute is not set, the compartment specified in the JSON metadata is used.
159
+ """
160
+ return pulumi.get(self, "override_dashboard_compartment_ocid")
161
+
162
+ @override_dashboard_compartment_ocid.setter
163
+ def override_dashboard_compartment_ocid(self, value: Optional[pulumi.Input[_builtins.str]]):
164
+ pulumi.set(self, "override_dashboard_compartment_ocid", value)
165
+
166
+ @_builtins.property
167
+ @pulumi.getter(name="overrideSameName")
168
+ def override_same_name(self) -> Optional[pulumi.Input[_builtins.str]]:
169
+ """
170
+ By default, if a resource with the same OCID exists in the target compartment, it is updated during the import process, otherwise, a new resource is created. However, if this attribute is set to true, then during the import process if a resource with the same displayName exists in the compartment, then it is updated even if the OCIDs are different. This is useful when importing the same resource multiple times. If the compartment and displayName remain the same, the resource is only updated and multiple copies of a resource are not created.
171
+ """
172
+ return pulumi.get(self, "override_same_name")
173
+
174
+ @override_same_name.setter
175
+ def override_same_name(self, value: Optional[pulumi.Input[_builtins.str]]):
176
+ pulumi.set(self, "override_same_name", value)
177
+
178
+ @_builtins.property
179
+ @pulumi.getter(name="overrideSavedSearchCompartmentOcid")
180
+ def override_saved_search_compartment_ocid(self) -> Optional[pulumi.Input[_builtins.str]]:
181
+ """
182
+ If this attribute is set, the saved search resources are created or updated in the compartment specified by OCID. If this attribute is not set, the compartment specified in the JSON metadata is used.
183
+
184
+
185
+ ** IMPORTANT **
186
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
187
+ """
188
+ return pulumi.get(self, "override_saved_search_compartment_ocid")
189
+
190
+ @override_saved_search_compartment_ocid.setter
191
+ def override_saved_search_compartment_ocid(self, value: Optional[pulumi.Input[_builtins.str]]):
192
+ pulumi.set(self, "override_saved_search_compartment_ocid", value)
193
+
90
194
 
91
195
  @pulumi.type_token("oci:ManagementDashboard/managementDashboardsImport:ManagementDashboardsImport")
92
196
  class ManagementDashboardsImport(pulumi.CustomResource):
@@ -96,6 +200,9 @@ class ManagementDashboardsImport(pulumi.CustomResource):
96
200
  opts: Optional[pulumi.ResourceOptions] = None,
97
201
  import_details: Optional[pulumi.Input[_builtins.str]] = None,
98
202
  import_details_file: Optional[pulumi.Input[_builtins.str]] = None,
203
+ override_dashboard_compartment_ocid: Optional[pulumi.Input[_builtins.str]] = None,
204
+ override_same_name: Optional[pulumi.Input[_builtins.str]] = None,
205
+ override_saved_search_compartment_ocid: Optional[pulumi.Input[_builtins.str]] = None,
99
206
  __props__=None):
100
207
  """
101
208
  This resource provides the Management Dashboards Import resource in Oracle Cloud Infrastructure Management Dashboard service.
@@ -114,8 +221,9 @@ class ManagementDashboardsImport(pulumi.CustomResource):
114
221
  import pulumi_oci as oci
115
222
 
116
223
  test_management_dashboards_import = oci.managementdashboard.ManagementDashboardsImport("test_management_dashboards_import",
117
- import_details=sample_import_details,
118
- import_details_file=sample_import_details_file_path)
224
+ override_dashboard_compartment_ocid=management_dashboards_import_override_dashboard_compartment_ocid,
225
+ override_same_name=management_dashboards_import_override_same_name,
226
+ override_saved_search_compartment_ocid=management_dashboards_import_override_saved_search_compartment_ocid)
119
227
  ```
120
228
 
121
229
  ## Import
@@ -128,7 +236,13 @@ class ManagementDashboardsImport(pulumi.CustomResource):
128
236
 
129
237
  :param str resource_name: The name of the resource.
130
238
  :param pulumi.ResourceOptions opts: Options for the resource.
131
- :param pulumi.Input[_builtins.str] import_details: Array of Dashboards to import. The `import_details` is mandatory if `import_details_path` is not passed. Value should be stringified JSON of [ManagementDashboardImportDetails](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/managementdashboard/20200901/ManagementDashboardImportDetails/)
239
+ :param pulumi.Input[_builtins.str] override_dashboard_compartment_ocid: If this attribute is set, the dashboard resources are created or updated in the compartment specified by OCID. If this attribute is not set, the compartment specified in the JSON metadata is used.
240
+ :param pulumi.Input[_builtins.str] override_same_name: By default, if a resource with the same OCID exists in the target compartment, it is updated during the import process, otherwise, a new resource is created. However, if this attribute is set to true, then during the import process if a resource with the same displayName exists in the compartment, then it is updated even if the OCIDs are different. This is useful when importing the same resource multiple times. If the compartment and displayName remain the same, the resource is only updated and multiple copies of a resource are not created.
241
+ :param pulumi.Input[_builtins.str] override_saved_search_compartment_ocid: If this attribute is set, the saved search resources are created or updated in the compartment specified by OCID. If this attribute is not set, the compartment specified in the JSON metadata is used.
242
+
243
+
244
+ ** IMPORTANT **
245
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
132
246
  """
133
247
  ...
134
248
  @overload
@@ -153,8 +267,9 @@ class ManagementDashboardsImport(pulumi.CustomResource):
153
267
  import pulumi_oci as oci
154
268
 
155
269
  test_management_dashboards_import = oci.managementdashboard.ManagementDashboardsImport("test_management_dashboards_import",
156
- import_details=sample_import_details,
157
- import_details_file=sample_import_details_file_path)
270
+ override_dashboard_compartment_ocid=management_dashboards_import_override_dashboard_compartment_ocid,
271
+ override_same_name=management_dashboards_import_override_same_name,
272
+ override_saved_search_compartment_ocid=management_dashboards_import_override_saved_search_compartment_ocid)
158
273
  ```
159
274
 
160
275
  ## Import
@@ -182,6 +297,9 @@ class ManagementDashboardsImport(pulumi.CustomResource):
182
297
  opts: Optional[pulumi.ResourceOptions] = None,
183
298
  import_details: Optional[pulumi.Input[_builtins.str]] = None,
184
299
  import_details_file: Optional[pulumi.Input[_builtins.str]] = None,
300
+ override_dashboard_compartment_ocid: Optional[pulumi.Input[_builtins.str]] = None,
301
+ override_same_name: Optional[pulumi.Input[_builtins.str]] = None,
302
+ override_saved_search_compartment_ocid: Optional[pulumi.Input[_builtins.str]] = None,
185
303
  __props__=None):
186
304
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
187
305
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -193,6 +311,9 @@ class ManagementDashboardsImport(pulumi.CustomResource):
193
311
 
194
312
  __props__.__dict__["import_details"] = import_details
195
313
  __props__.__dict__["import_details_file"] = import_details_file
314
+ __props__.__dict__["override_dashboard_compartment_ocid"] = override_dashboard_compartment_ocid
315
+ __props__.__dict__["override_same_name"] = override_same_name
316
+ __props__.__dict__["override_saved_search_compartment_ocid"] = override_saved_search_compartment_ocid
196
317
  super(ManagementDashboardsImport, __self__).__init__(
197
318
  'oci:ManagementDashboard/managementDashboardsImport:ManagementDashboardsImport',
198
319
  resource_name,
@@ -204,7 +325,10 @@ class ManagementDashboardsImport(pulumi.CustomResource):
204
325
  id: pulumi.Input[str],
205
326
  opts: Optional[pulumi.ResourceOptions] = None,
206
327
  import_details: Optional[pulumi.Input[_builtins.str]] = None,
207
- import_details_file: Optional[pulumi.Input[_builtins.str]] = None) -> 'ManagementDashboardsImport':
328
+ import_details_file: Optional[pulumi.Input[_builtins.str]] = None,
329
+ override_dashboard_compartment_ocid: Optional[pulumi.Input[_builtins.str]] = None,
330
+ override_same_name: Optional[pulumi.Input[_builtins.str]] = None,
331
+ override_saved_search_compartment_ocid: Optional[pulumi.Input[_builtins.str]] = None) -> 'ManagementDashboardsImport':
208
332
  """
209
333
  Get an existing ManagementDashboardsImport resource's state with the given name, id, and optional extra
210
334
  properties used to qualify the lookup.
@@ -212,7 +336,13 @@ class ManagementDashboardsImport(pulumi.CustomResource):
212
336
  :param str resource_name: The unique name of the resulting resource.
213
337
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
214
338
  :param pulumi.ResourceOptions opts: Options for the resource.
215
- :param pulumi.Input[_builtins.str] import_details: Array of Dashboards to import. The `import_details` is mandatory if `import_details_path` is not passed. Value should be stringified JSON of [ManagementDashboardImportDetails](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/managementdashboard/20200901/ManagementDashboardImportDetails/)
339
+ :param pulumi.Input[_builtins.str] override_dashboard_compartment_ocid: If this attribute is set, the dashboard resources are created or updated in the compartment specified by OCID. If this attribute is not set, the compartment specified in the JSON metadata is used.
340
+ :param pulumi.Input[_builtins.str] override_same_name: By default, if a resource with the same OCID exists in the target compartment, it is updated during the import process, otherwise, a new resource is created. However, if this attribute is set to true, then during the import process if a resource with the same displayName exists in the compartment, then it is updated even if the OCIDs are different. This is useful when importing the same resource multiple times. If the compartment and displayName remain the same, the resource is only updated and multiple copies of a resource are not created.
341
+ :param pulumi.Input[_builtins.str] override_saved_search_compartment_ocid: If this attribute is set, the saved search resources are created or updated in the compartment specified by OCID. If this attribute is not set, the compartment specified in the JSON metadata is used.
342
+
343
+
344
+ ** IMPORTANT **
345
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
216
346
  """
217
347
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
218
348
 
@@ -220,14 +350,14 @@ class ManagementDashboardsImport(pulumi.CustomResource):
220
350
 
221
351
  __props__.__dict__["import_details"] = import_details
222
352
  __props__.__dict__["import_details_file"] = import_details_file
353
+ __props__.__dict__["override_dashboard_compartment_ocid"] = override_dashboard_compartment_ocid
354
+ __props__.__dict__["override_same_name"] = override_same_name
355
+ __props__.__dict__["override_saved_search_compartment_ocid"] = override_saved_search_compartment_ocid
223
356
  return ManagementDashboardsImport(resource_name, opts=opts, __props__=__props__)
224
357
 
225
358
  @_builtins.property
226
359
  @pulumi.getter(name="importDetails")
227
360
  def import_details(self) -> pulumi.Output[Optional[_builtins.str]]:
228
- """
229
- Array of Dashboards to import. The `import_details` is mandatory if `import_details_path` is not passed. Value should be stringified JSON of [ManagementDashboardImportDetails](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/managementdashboard/20200901/ManagementDashboardImportDetails/)
230
- """
231
361
  return pulumi.get(self, "import_details")
232
362
 
233
363
  @_builtins.property
@@ -235,3 +365,31 @@ class ManagementDashboardsImport(pulumi.CustomResource):
235
365
  def import_details_file(self) -> pulumi.Output[Optional[_builtins.str]]:
236
366
  return pulumi.get(self, "import_details_file")
237
367
 
368
+ @_builtins.property
369
+ @pulumi.getter(name="overrideDashboardCompartmentOcid")
370
+ def override_dashboard_compartment_ocid(self) -> pulumi.Output[_builtins.str]:
371
+ """
372
+ If this attribute is set, the dashboard resources are created or updated in the compartment specified by OCID. If this attribute is not set, the compartment specified in the JSON metadata is used.
373
+ """
374
+ return pulumi.get(self, "override_dashboard_compartment_ocid")
375
+
376
+ @_builtins.property
377
+ @pulumi.getter(name="overrideSameName")
378
+ def override_same_name(self) -> pulumi.Output[_builtins.str]:
379
+ """
380
+ By default, if a resource with the same OCID exists in the target compartment, it is updated during the import process, otherwise, a new resource is created. However, if this attribute is set to true, then during the import process if a resource with the same displayName exists in the compartment, then it is updated even if the OCIDs are different. This is useful when importing the same resource multiple times. If the compartment and displayName remain the same, the resource is only updated and multiple copies of a resource are not created.
381
+ """
382
+ return pulumi.get(self, "override_same_name")
383
+
384
+ @_builtins.property
385
+ @pulumi.getter(name="overrideSavedSearchCompartmentOcid")
386
+ def override_saved_search_compartment_ocid(self) -> pulumi.Output[_builtins.str]:
387
+ """
388
+ If this attribute is set, the saved search resources are created or updated in the compartment specified by OCID. If this attribute is not set, the compartment specified in the JSON metadata is used.
389
+
390
+
391
+ ** IMPORTANT **
392
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
393
+ """
394
+ return pulumi.get(self, "override_saved_search_compartment_ocid")
395
+
@@ -6,6 +6,7 @@ import builtins as _builtins
6
6
  from .. import _utilities
7
7
  import typing
8
8
  # Export this package's modules as members:
9
+ from .api_platform_api_platform_instance import *
9
10
  from .apiaccesscontrol_privileged_api_control import *
10
11
  from .apiaccesscontrol_privileged_api_request import *
11
12
  from .dbmulticloud_multi_cloud_resource_discovery import *
@@ -14,6 +15,8 @@ from .dbmulticloud_oracle_db_azure_blob_mount import *
14
15
  from .dbmulticloud_oracle_db_azure_connector import *
15
16
  from .dbmulticloud_oracle_db_azure_vault import *
16
17
  from .dbmulticloud_oracle_db_azure_vault_association import *
18
+ from .get_api_platform_api_platform_instance import *
19
+ from .get_api_platform_api_platform_instances import *
17
20
  from .get_apiaccesscontrol_api_metadata import *
18
21
  from .get_apiaccesscontrol_api_metadata_by_entity_types import *
19
22
  from .get_apiaccesscontrol_api_metadatas import *
pulumi_oci/oci/_inputs.py CHANGED
@@ -15,6 +15,10 @@ else:
15
15
  from .. import _utilities
16
16
 
17
17
  __all__ = [
18
+ 'ApiPlatformApiPlatformInstanceIdcsAppArgs',
19
+ 'ApiPlatformApiPlatformInstanceIdcsAppArgsDict',
20
+ 'ApiPlatformApiPlatformInstanceUriArgs',
21
+ 'ApiPlatformApiPlatformInstanceUriArgsDict',
18
22
  'ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgs',
19
23
  'ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgsDict',
20
24
  'ApiaccesscontrolPrivilegedApiRequestApproverDetailArgs',
@@ -25,6 +29,8 @@ __all__ = [
25
29
  'DbmulticloudMultiCloudResourceDiscoveryResourceArgsDict',
26
30
  'DbmulticloudOracleDbAzureConnectorArcAgentNodeArgs',
27
31
  'DbmulticloudOracleDbAzureConnectorArcAgentNodeArgsDict',
32
+ 'GetApiPlatformApiPlatformInstancesFilterArgs',
33
+ 'GetApiPlatformApiPlatformInstancesFilterArgsDict',
28
34
  'GetApiaccesscontrolApiMetadataByEntityTypesFilterArgs',
29
35
  'GetApiaccesscontrolApiMetadataByEntityTypesFilterArgsDict',
30
36
  'GetApiaccesscontrolApiMetadatasFilterArgs',
@@ -73,6 +79,90 @@ __all__ = [
73
79
 
74
80
  MYPY = False
75
81
 
82
+ if not MYPY:
83
+ class ApiPlatformApiPlatformInstanceIdcsAppArgsDict(TypedDict):
84
+ url: NotRequired[pulumi.Input[_builtins.str]]
85
+ """
86
+ IDCS URL of the app
87
+ """
88
+ elif False:
89
+ ApiPlatformApiPlatformInstanceIdcsAppArgsDict: TypeAlias = Mapping[str, Any]
90
+
91
+ @pulumi.input_type
92
+ class ApiPlatformApiPlatformInstanceIdcsAppArgs:
93
+ def __init__(__self__, *,
94
+ url: Optional[pulumi.Input[_builtins.str]] = None):
95
+ """
96
+ :param pulumi.Input[_builtins.str] url: IDCS URL of the app
97
+ """
98
+ if url is not None:
99
+ pulumi.set(__self__, "url", url)
100
+
101
+ @_builtins.property
102
+ @pulumi.getter
103
+ def url(self) -> Optional[pulumi.Input[_builtins.str]]:
104
+ """
105
+ IDCS URL of the app
106
+ """
107
+ return pulumi.get(self, "url")
108
+
109
+ @url.setter
110
+ def url(self, value: Optional[pulumi.Input[_builtins.str]]):
111
+ pulumi.set(self, "url", value)
112
+
113
+
114
+ if not MYPY:
115
+ class ApiPlatformApiPlatformInstanceUriArgsDict(TypedDict):
116
+ developers_portal_uri: NotRequired[pulumi.Input[_builtins.str]]
117
+ """
118
+ Developer's Portal URI of the instance (/developers)
119
+ """
120
+ management_portal_uri: NotRequired[pulumi.Input[_builtins.str]]
121
+ """
122
+ Management Portal URI of the instance (/apiplatform)
123
+ """
124
+ elif False:
125
+ ApiPlatformApiPlatformInstanceUriArgsDict: TypeAlias = Mapping[str, Any]
126
+
127
+ @pulumi.input_type
128
+ class ApiPlatformApiPlatformInstanceUriArgs:
129
+ def __init__(__self__, *,
130
+ developers_portal_uri: Optional[pulumi.Input[_builtins.str]] = None,
131
+ management_portal_uri: Optional[pulumi.Input[_builtins.str]] = None):
132
+ """
133
+ :param pulumi.Input[_builtins.str] developers_portal_uri: Developer's Portal URI of the instance (/developers)
134
+ :param pulumi.Input[_builtins.str] management_portal_uri: Management Portal URI of the instance (/apiplatform)
135
+ """
136
+ if developers_portal_uri is not None:
137
+ pulumi.set(__self__, "developers_portal_uri", developers_portal_uri)
138
+ if management_portal_uri is not None:
139
+ pulumi.set(__self__, "management_portal_uri", management_portal_uri)
140
+
141
+ @_builtins.property
142
+ @pulumi.getter(name="developersPortalUri")
143
+ def developers_portal_uri(self) -> Optional[pulumi.Input[_builtins.str]]:
144
+ """
145
+ Developer's Portal URI of the instance (/developers)
146
+ """
147
+ return pulumi.get(self, "developers_portal_uri")
148
+
149
+ @developers_portal_uri.setter
150
+ def developers_portal_uri(self, value: Optional[pulumi.Input[_builtins.str]]):
151
+ pulumi.set(self, "developers_portal_uri", value)
152
+
153
+ @_builtins.property
154
+ @pulumi.getter(name="managementPortalUri")
155
+ def management_portal_uri(self) -> Optional[pulumi.Input[_builtins.str]]:
156
+ """
157
+ Management Portal URI of the instance (/apiplatform)
158
+ """
159
+ return pulumi.get(self, "management_portal_uri")
160
+
161
+ @management_portal_uri.setter
162
+ def management_portal_uri(self, value: Optional[pulumi.Input[_builtins.str]]):
163
+ pulumi.set(self, "management_portal_uri", value)
164
+
165
+
76
166
  if not MYPY:
77
167
  class ApiaccesscontrolPrivilegedApiControlPrivilegedOperationListArgsDict(TypedDict):
78
168
  api_name: pulumi.Input[_builtins.str]
@@ -551,6 +641,62 @@ class DbmulticloudOracleDbAzureConnectorArcAgentNodeArgs:
551
641
  pulumi.set(self, "time_last_checked", value)
552
642
 
553
643
 
644
+ if not MYPY:
645
+ class GetApiPlatformApiPlatformInstancesFilterArgsDict(TypedDict):
646
+ name: _builtins.str
647
+ """
648
+ A filter to return only resources that match the given name exactly
649
+ """
650
+ values: Sequence[_builtins.str]
651
+ regex: NotRequired[_builtins.bool]
652
+ elif False:
653
+ GetApiPlatformApiPlatformInstancesFilterArgsDict: TypeAlias = Mapping[str, Any]
654
+
655
+ @pulumi.input_type
656
+ class GetApiPlatformApiPlatformInstancesFilterArgs:
657
+ def __init__(__self__, *,
658
+ name: _builtins.str,
659
+ values: Sequence[_builtins.str],
660
+ regex: Optional[_builtins.bool] = None):
661
+ """
662
+ :param _builtins.str name: A filter to return only resources that match the given name exactly
663
+ """
664
+ pulumi.set(__self__, "name", name)
665
+ pulumi.set(__self__, "values", values)
666
+ if regex is not None:
667
+ pulumi.set(__self__, "regex", regex)
668
+
669
+ @_builtins.property
670
+ @pulumi.getter
671
+ def name(self) -> _builtins.str:
672
+ """
673
+ A filter to return only resources that match the given name exactly
674
+ """
675
+ return pulumi.get(self, "name")
676
+
677
+ @name.setter
678
+ def name(self, value: _builtins.str):
679
+ pulumi.set(self, "name", value)
680
+
681
+ @_builtins.property
682
+ @pulumi.getter
683
+ def values(self) -> Sequence[_builtins.str]:
684
+ return pulumi.get(self, "values")
685
+
686
+ @values.setter
687
+ def values(self, value: Sequence[_builtins.str]):
688
+ pulumi.set(self, "values", value)
689
+
690
+ @_builtins.property
691
+ @pulumi.getter
692
+ def regex(self) -> Optional[_builtins.bool]:
693
+ return pulumi.get(self, "regex")
694
+
695
+ @regex.setter
696
+ def regex(self, value: Optional[_builtins.bool]):
697
+ pulumi.set(self, "regex", value)
698
+
699
+
554
700
  if not MYPY:
555
701
  class GetApiaccesscontrolApiMetadataByEntityTypesFilterArgsDict(TypedDict):
556
702
  name: _builtins.str