pulumi-oci 2.19.0a1733984857__py3-none-any.whl → 2.20.0__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 (128) hide show
  1. pulumi_oci/__init__.py +56 -0
  2. pulumi_oci/bigdataservice/__init__.py +4 -0
  3. pulumi_oci/bigdataservice/_inputs.py +672 -6
  4. pulumi_oci/bigdataservice/bds_instance.py +169 -7
  5. pulumi_oci/bigdataservice/bds_instance_api_key.py +66 -3
  6. pulumi_oci/bigdataservice/bds_instance_identity_configuration.py +859 -0
  7. pulumi_oci/bigdataservice/bds_instance_patch_action.py +4 -0
  8. pulumi_oci/bigdataservice/get_bds_cluster_versions.py +123 -0
  9. pulumi_oci/bigdataservice/get_bds_instance.py +48 -1
  10. pulumi_oci/bigdataservice/get_bds_instance_api_key.py +17 -1
  11. pulumi_oci/bigdataservice/get_bds_instance_api_keys.py +3 -0
  12. pulumi_oci/bigdataservice/get_bds_instance_identity_configuration.py +322 -0
  13. pulumi_oci/bigdataservice/get_bds_instance_identity_configurations.py +207 -0
  14. pulumi_oci/bigdataservice/outputs.py +1466 -98
  15. pulumi_oci/blockchain/get_blockchain_platform.py +1 -1
  16. pulumi_oci/blockchain/outputs.py +2 -2
  17. pulumi_oci/core/outputs.py +4 -0
  18. pulumi_oci/database/autonomous_container_database.py +47 -0
  19. pulumi_oci/database/autonomous_database.py +94 -0
  20. pulumi_oci/database/exadb_vm_cluster.py +104 -0
  21. pulumi_oci/database/get_autonomous_container_database.py +15 -1
  22. pulumi_oci/database/get_autonomous_database.py +29 -1
  23. pulumi_oci/database/outputs.py +36 -0
  24. pulumi_oci/dataflow/application.py +75 -33
  25. pulumi_oci/dataflow/get_application.py +15 -1
  26. pulumi_oci/dataflow/outputs.py +7 -0
  27. pulumi_oci/datascience/_inputs.py +32 -12
  28. pulumi_oci/datascience/get_job_run.py +3 -3
  29. pulumi_oci/datascience/get_job_runs.py +2 -2
  30. pulumi_oci/datascience/job_run.py +7 -7
  31. pulumi_oci/datascience/model_deployment.py +2 -0
  32. pulumi_oci/datascience/outputs.py +62 -26
  33. pulumi_oci/desktops/_inputs.py +9 -9
  34. pulumi_oci/desktops/desktop_pool.py +84 -35
  35. pulumi_oci/desktops/get_desktop_pool.py +12 -1
  36. pulumi_oci/desktops/outputs.py +13 -6
  37. pulumi_oci/disasterrecovery/_inputs.py +46 -30
  38. pulumi_oci/disasterrecovery/dr_plan.py +194 -23
  39. pulumi_oci/disasterrecovery/get_dr_plan.py +54 -4
  40. pulumi_oci/disasterrecovery/get_dr_plans.py +23 -1
  41. pulumi_oci/disasterrecovery/outputs.py +113 -21
  42. pulumi_oci/fleetappsmanagement/__init__.py +19 -0
  43. pulumi_oci/fleetappsmanagement/_inputs.py +5334 -378
  44. pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +830 -0
  45. pulumi_oci/fleetappsmanagement/fleet.py +112 -67
  46. pulumi_oci/fleetappsmanagement/fleet_credential.py +44 -36
  47. pulumi_oci/fleetappsmanagement/fleet_property.py +35 -35
  48. pulumi_oci/fleetappsmanagement/fleet_resource.py +37 -37
  49. pulumi_oci/fleetappsmanagement/get_announcements.py +4 -4
  50. pulumi_oci/fleetappsmanagement/get_compliance_policies.py +199 -0
  51. pulumi_oci/fleetappsmanagement/get_compliance_policy.py +253 -0
  52. pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +324 -0
  53. pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +243 -0
  54. pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +144 -0
  55. pulumi_oci/fleetappsmanagement/get_compliance_records.py +279 -0
  56. pulumi_oci/fleetappsmanagement/get_fleet.py +29 -15
  57. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +8 -8
  58. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +7 -7
  59. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +61 -17
  60. pulumi_oci/fleetappsmanagement/get_fleet_products.py +6 -6
  61. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +8 -8
  62. pulumi_oci/fleetappsmanagement/get_fleet_property.py +11 -11
  63. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +11 -11
  64. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +10 -10
  65. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +8 -8
  66. pulumi_oci/fleetappsmanagement/get_fleets.py +16 -16
  67. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +12 -12
  68. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +8 -8
  69. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +31 -12
  70. pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +144 -0
  71. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +2 -2
  72. pulumi_oci/fleetappsmanagement/get_onboardings.py +2 -2
  73. pulumi_oci/fleetappsmanagement/get_patch.py +363 -0
  74. pulumi_oci/fleetappsmanagement/get_patches.py +335 -0
  75. pulumi_oci/fleetappsmanagement/get_platform_configuration.py +296 -0
  76. pulumi_oci/fleetappsmanagement/get_platform_configurations.py +221 -0
  77. pulumi_oci/fleetappsmanagement/get_properties.py +9 -9
  78. pulumi_oci/fleetappsmanagement/get_property.py +4 -4
  79. pulumi_oci/fleetappsmanagement/get_runbook.py +8 -8
  80. pulumi_oci/fleetappsmanagement/get_runbooks.py +16 -16
  81. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +10 -10
  82. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +2 -2
  83. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +33 -11
  84. pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +144 -0
  85. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_resources.py +245 -0
  86. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +245 -0
  87. pulumi_oci/fleetappsmanagement/get_task_record.py +3 -3
  88. pulumi_oci/fleetappsmanagement/maintenance_window.py +44 -44
  89. pulumi_oci/fleetappsmanagement/onboarding.py +108 -20
  90. pulumi_oci/fleetappsmanagement/outputs.py +11222 -2736
  91. pulumi_oci/fleetappsmanagement/patch.py +978 -0
  92. pulumi_oci/fleetappsmanagement/platform_configuration.py +687 -0
  93. pulumi_oci/fleetappsmanagement/property.py +27 -27
  94. pulumi_oci/fleetappsmanagement/runbook.py +1173 -0
  95. pulumi_oci/fleetappsmanagement/scheduler_definition.py +30 -30
  96. pulumi_oci/fleetappsmanagement/task_record.py +754 -0
  97. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +28 -0
  98. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +56 -0
  99. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +15 -1
  100. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +29 -1
  101. pulumi_oci/fleetsoftwareupdate/outputs.py +33 -0
  102. pulumi_oci/generativeai/dedicated_ai_cluster.py +21 -0
  103. pulumi_oci/goldengate/__init__.py +7 -0
  104. pulumi_oci/goldengate/_inputs.py +665 -0
  105. pulumi_oci/goldengate/connection.py +7 -7
  106. pulumi_oci/goldengate/get_pipeline.py +408 -0
  107. pulumi_oci/goldengate/get_pipeline_running_processes.py +144 -0
  108. pulumi_oci/goldengate/get_pipeline_schema_tables.py +207 -0
  109. pulumi_oci/goldengate/get_pipeline_schemas.py +163 -0
  110. pulumi_oci/goldengate/get_pipelines.py +213 -0
  111. pulumi_oci/goldengate/get_recipes.py +188 -0
  112. pulumi_oci/goldengate/get_trail_files.py +4 -2
  113. pulumi_oci/goldengate/get_trail_sequences.py +4 -2
  114. pulumi_oci/goldengate/outputs.py +1500 -0
  115. pulumi_oci/goldengate/pipeline.py +928 -0
  116. pulumi_oci/pulumi-plugin.json +1 -1
  117. pulumi_oci/stackmonitoring/_inputs.py +94 -14
  118. pulumi_oci/stackmonitoring/get_metric_extensions.py +22 -3
  119. pulumi_oci/stackmonitoring/metric_extension.py +8 -0
  120. pulumi_oci/stackmonitoring/outputs.py +166 -24
  121. pulumi_oci/visualbuilder/_inputs.py +57 -202
  122. pulumi_oci/visualbuilder/get_vb_instance.py +15 -29
  123. pulumi_oci/visualbuilder/outputs.py +114 -400
  124. pulumi_oci/visualbuilder/vb_instance.py +62 -59
  125. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/METADATA +3 -3
  126. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/RECORD +128 -98
  127. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/WHEEL +0 -0
  128. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/top_level.txt +0 -0
@@ -846,6 +846,10 @@ class MetricExtensionQueryProperties(dict):
846
846
  suggest = "managed_bean_query"
847
847
  elif key == "outParamDetails":
848
848
  suggest = "out_param_details"
849
+ elif key == "protocolType":
850
+ suggest = "protocol_type"
851
+ elif key == "responseContentType":
852
+ suggest = "response_content_type"
849
853
  elif key == "scriptDetails":
850
854
  suggest = "script_details"
851
855
  elif key == "sqlDetails":
@@ -878,10 +882,13 @@ class MetricExtensionQueryProperties(dict):
878
882
  jmx_attributes: Optional[str] = None,
879
883
  managed_bean_query: Optional[str] = None,
880
884
  out_param_details: Optional['outputs.MetricExtensionQueryPropertiesOutParamDetails'] = None,
885
+ protocol_type: Optional[str] = None,
886
+ response_content_type: Optional[str] = None,
881
887
  script_details: Optional['outputs.MetricExtensionQueryPropertiesScriptDetails'] = None,
882
888
  sql_details: Optional['outputs.MetricExtensionQueryPropertiesSqlDetails'] = None,
883
889
  sql_type: Optional[str] = None,
884
- starts_with: Optional[str] = None):
890
+ starts_with: Optional[str] = None,
891
+ url: Optional[str] = None):
885
892
  """
886
893
  :param str collection_method: (Updatable) Type of possible collection methods.
887
894
  :param str arguments: (Updatable) Arguments required by either command or script
@@ -894,10 +901,13 @@ class MetricExtensionQueryProperties(dict):
894
901
  :param str jmx_attributes: (Updatable) List of JMX attributes or Metric Service Table columns separated by semi-colon
895
902
  :param str managed_bean_query: (Updatable) JMX Managed Bean Query or Metric Service Table name
896
903
  :param 'MetricExtensionQueryPropertiesOutParamDetailsArgs' out_param_details: (Updatable) Position and SQL Type of PL/SQL OUT parameter
897
- :param 'MetricExtensionQueryPropertiesScriptDetailsArgs' script_details: (Updatable) Script details applicable to any OS Command based Metric Extension which needs to run a script to collect data
904
+ :param str protocol_type: (Updatable) Supported protocol of resources to be associated with this metric extension. This is optional and defaults to HTTPS, which uses secure connection to the URL
905
+ :param str response_content_type: (Updatable) Type of content response given by the http(s) URL
906
+ :param 'MetricExtensionQueryPropertiesScriptDetailsArgs' script_details: (Updatable) Script details applicable to any OS Command/HTTP based Metric Extension which needs to run a script to collect data. For removing it during OS Command based Metric Extension update, set its "content" property to an empty string. In that case, "name" property value is ignored.
898
907
  :param 'MetricExtensionQueryPropertiesSqlDetailsArgs' sql_details: (Updatable) Details of Sql content which needs to execute to collect Metric Extension data
899
908
  :param str sql_type: (Updatable) Type of SQL data collection method i.e. either a Statement or SQL Script File
900
909
  :param str starts_with: (Updatable) String prefix used to identify metric output of the OS Command
910
+ :param str url: (Updatable) Http(s) end point URL
901
911
  """
902
912
  pulumi.set(__self__, "collection_method", collection_method)
903
913
  if arguments is not None:
@@ -920,6 +930,10 @@ class MetricExtensionQueryProperties(dict):
920
930
  pulumi.set(__self__, "managed_bean_query", managed_bean_query)
921
931
  if out_param_details is not None:
922
932
  pulumi.set(__self__, "out_param_details", out_param_details)
933
+ if protocol_type is not None:
934
+ pulumi.set(__self__, "protocol_type", protocol_type)
935
+ if response_content_type is not None:
936
+ pulumi.set(__self__, "response_content_type", response_content_type)
923
937
  if script_details is not None:
924
938
  pulumi.set(__self__, "script_details", script_details)
925
939
  if sql_details is not None:
@@ -928,6 +942,8 @@ class MetricExtensionQueryProperties(dict):
928
942
  pulumi.set(__self__, "sql_type", sql_type)
929
943
  if starts_with is not None:
930
944
  pulumi.set(__self__, "starts_with", starts_with)
945
+ if url is not None:
946
+ pulumi.set(__self__, "url", url)
931
947
 
932
948
  @property
933
949
  @pulumi.getter(name="collectionMethod")
@@ -1017,11 +1033,27 @@ class MetricExtensionQueryProperties(dict):
1017
1033
  """
1018
1034
  return pulumi.get(self, "out_param_details")
1019
1035
 
1036
+ @property
1037
+ @pulumi.getter(name="protocolType")
1038
+ def protocol_type(self) -> Optional[str]:
1039
+ """
1040
+ (Updatable) Supported protocol of resources to be associated with this metric extension. This is optional and defaults to HTTPS, which uses secure connection to the URL
1041
+ """
1042
+ return pulumi.get(self, "protocol_type")
1043
+
1044
+ @property
1045
+ @pulumi.getter(name="responseContentType")
1046
+ def response_content_type(self) -> Optional[str]:
1047
+ """
1048
+ (Updatable) Type of content response given by the http(s) URL
1049
+ """
1050
+ return pulumi.get(self, "response_content_type")
1051
+
1020
1052
  @property
1021
1053
  @pulumi.getter(name="scriptDetails")
1022
1054
  def script_details(self) -> Optional['outputs.MetricExtensionQueryPropertiesScriptDetails']:
1023
1055
  """
1024
- (Updatable) Script details applicable to any OS Command based Metric Extension which needs to run a script to collect data
1056
+ (Updatable) Script details applicable to any OS Command/HTTP based Metric Extension which needs to run a script to collect data. For removing it during OS Command based Metric Extension update, set its "content" property to an empty string. In that case, "name" property value is ignored.
1025
1057
  """
1026
1058
  return pulumi.get(self, "script_details")
1027
1059
 
@@ -1049,6 +1081,14 @@ class MetricExtensionQueryProperties(dict):
1049
1081
  """
1050
1082
  return pulumi.get(self, "starts_with")
1051
1083
 
1084
+ @property
1085
+ @pulumi.getter
1086
+ def url(self) -> Optional[str]:
1087
+ """
1088
+ (Updatable) Http(s) end point URL
1089
+ """
1090
+ return pulumi.get(self, "url")
1091
+
1052
1092
 
1053
1093
  @pulumi.output_type
1054
1094
  class MetricExtensionQueryPropertiesInParamDetail(dict):
@@ -1107,6 +1147,8 @@ class MetricExtensionQueryPropertiesOutParamDetails(dict):
1107
1147
  suggest = "out_param_position"
1108
1148
  elif key == "outParamType":
1109
1149
  suggest = "out_param_type"
1150
+ elif key == "outParamName":
1151
+ suggest = "out_param_name"
1110
1152
 
1111
1153
  if suggest:
1112
1154
  pulumi.log.warn(f"Key '{key}' not found in MetricExtensionQueryPropertiesOutParamDetails. Access the value via the '{suggest}' property getter instead.")
@@ -1121,19 +1163,23 @@ class MetricExtensionQueryPropertiesOutParamDetails(dict):
1121
1163
 
1122
1164
  def __init__(__self__, *,
1123
1165
  out_param_position: int,
1124
- out_param_type: str):
1166
+ out_param_type: str,
1167
+ out_param_name: Optional[str] = None):
1125
1168
  """
1126
- :param int out_param_position: (Updatable) Position of PL/SQL procedure OUT parameter
1127
- :param str out_param_type: (Updatable) SQL Type of PL/SQL procedure OUT parameter
1169
+ :param int out_param_position: (Updatable) Position of PL/SQL procedure OUT parameter. The value of this property is ignored during update, if "outParamType" is set to NO_OUT_PARAM value.
1170
+ :param str out_param_type: (Updatable) SQL Type of PL/SQL procedure OUT parameter. During the update, to completely remove the out parameter, use the value NO_OUT_PARAM. In that case, the value of "outParamPosition" will be ignored.
1171
+ :param str out_param_name: (Updatable) Name of the Out Parameter
1128
1172
  """
1129
1173
  pulumi.set(__self__, "out_param_position", out_param_position)
1130
1174
  pulumi.set(__self__, "out_param_type", out_param_type)
1175
+ if out_param_name is not None:
1176
+ pulumi.set(__self__, "out_param_name", out_param_name)
1131
1177
 
1132
1178
  @property
1133
1179
  @pulumi.getter(name="outParamPosition")
1134
1180
  def out_param_position(self) -> int:
1135
1181
  """
1136
- (Updatable) Position of PL/SQL procedure OUT parameter
1182
+ (Updatable) Position of PL/SQL procedure OUT parameter. The value of this property is ignored during update, if "outParamType" is set to NO_OUT_PARAM value.
1137
1183
  """
1138
1184
  return pulumi.get(self, "out_param_position")
1139
1185
 
@@ -1141,10 +1187,18 @@ class MetricExtensionQueryPropertiesOutParamDetails(dict):
1141
1187
  @pulumi.getter(name="outParamType")
1142
1188
  def out_param_type(self) -> str:
1143
1189
  """
1144
- (Updatable) SQL Type of PL/SQL procedure OUT parameter
1190
+ (Updatable) SQL Type of PL/SQL procedure OUT parameter. During the update, to completely remove the out parameter, use the value NO_OUT_PARAM. In that case, the value of "outParamPosition" will be ignored.
1145
1191
  """
1146
1192
  return pulumi.get(self, "out_param_type")
1147
1193
 
1194
+ @property
1195
+ @pulumi.getter(name="outParamName")
1196
+ def out_param_name(self) -> Optional[str]:
1197
+ """
1198
+ (Updatable) Name of the Out Parameter
1199
+ """
1200
+ return pulumi.get(self, "out_param_name")
1201
+
1148
1202
 
1149
1203
  @pulumi.output_type
1150
1204
  class MetricExtensionQueryPropertiesScriptDetails(dict):
@@ -1152,7 +1206,7 @@ class MetricExtensionQueryPropertiesScriptDetails(dict):
1152
1206
  content: str,
1153
1207
  name: str):
1154
1208
  """
1155
- :param str content: (Updatable) Content of the script file as base64 encoded string
1209
+ :param str content: (Updatable) Content of the script/JavaScript file as base64 encoded string
1156
1210
  :param str name: (Updatable) Name of the script file
1157
1211
  """
1158
1212
  pulumi.set(__self__, "content", content)
@@ -1162,7 +1216,7 @@ class MetricExtensionQueryPropertiesScriptDetails(dict):
1162
1216
  @pulumi.getter
1163
1217
  def content(self) -> str:
1164
1218
  """
1165
- (Updatable) Content of the script file as base64 encoded string
1219
+ (Updatable) Content of the script/JavaScript file as base64 encoded string
1166
1220
  """
1167
1221
  return pulumi.get(self, "content")
1168
1222
 
@@ -4843,10 +4897,13 @@ class GetMetricExtensionQueryPropertyResult(dict):
4843
4897
  jmx_attributes: str,
4844
4898
  managed_bean_query: str,
4845
4899
  out_param_details: Sequence['outputs.GetMetricExtensionQueryPropertyOutParamDetailResult'],
4900
+ protocol_type: str,
4901
+ response_content_type: str,
4846
4902
  script_details: Sequence['outputs.GetMetricExtensionQueryPropertyScriptDetailResult'],
4847
4903
  sql_details: Sequence['outputs.GetMetricExtensionQueryPropertySqlDetailResult'],
4848
4904
  sql_type: str,
4849
- starts_with: str):
4905
+ starts_with: str,
4906
+ url: str):
4850
4907
  """
4851
4908
  :param str arguments: Arguments required by either command or script
4852
4909
  :param str auto_row_prefix: Prefix for an auto generated metric, in case multiple rows with non unique key values are returned
@@ -4859,10 +4916,13 @@ class GetMetricExtensionQueryPropertyResult(dict):
4859
4916
  :param str jmx_attributes: List of JMX attributes or Metric Service Table columns separated by semi-colon
4860
4917
  :param str managed_bean_query: JMX Managed Bean Query or Metric Service Table name
4861
4918
  :param Sequence['GetMetricExtensionQueryPropertyOutParamDetailArgs'] out_param_details: Position and SQL Type of PL/SQL OUT parameter
4862
- :param Sequence['GetMetricExtensionQueryPropertyScriptDetailArgs'] script_details: Script details applicable to any OS Command based Metric Extension which needs to run a script to collect data
4919
+ :param str protocol_type: Supported protocol of resources to be associated with this metric extension. This is optional and defaults to HTTPS, which uses secure connection to the URL
4920
+ :param str response_content_type: Type of content response given by the http(s) URL
4921
+ :param Sequence['GetMetricExtensionQueryPropertyScriptDetailArgs'] script_details: Script details applicable to any OS Command/HTTP based Metric Extension which needs to run a script to collect data. For removing it during OS Command based Metric Extension update, set its "content" property to an empty string. In that case, "name" property value is ignored.
4863
4922
  :param Sequence['GetMetricExtensionQueryPropertySqlDetailArgs'] sql_details: Details of Sql content which needs to execute to collect Metric Extension data
4864
4923
  :param str sql_type: Type of SQL data collection method i.e. either a Statement or SQL Script File
4865
4924
  :param str starts_with: String prefix used to identify metric output of the OS Command
4925
+ :param str url: Http(s) end point URL
4866
4926
  """
4867
4927
  pulumi.set(__self__, "arguments", arguments)
4868
4928
  pulumi.set(__self__, "auto_row_prefix", auto_row_prefix)
@@ -4875,10 +4935,13 @@ class GetMetricExtensionQueryPropertyResult(dict):
4875
4935
  pulumi.set(__self__, "jmx_attributes", jmx_attributes)
4876
4936
  pulumi.set(__self__, "managed_bean_query", managed_bean_query)
4877
4937
  pulumi.set(__self__, "out_param_details", out_param_details)
4938
+ pulumi.set(__self__, "protocol_type", protocol_type)
4939
+ pulumi.set(__self__, "response_content_type", response_content_type)
4878
4940
  pulumi.set(__self__, "script_details", script_details)
4879
4941
  pulumi.set(__self__, "sql_details", sql_details)
4880
4942
  pulumi.set(__self__, "sql_type", sql_type)
4881
4943
  pulumi.set(__self__, "starts_with", starts_with)
4944
+ pulumi.set(__self__, "url", url)
4882
4945
 
4883
4946
  @property
4884
4947
  @pulumi.getter
@@ -4968,11 +5031,27 @@ class GetMetricExtensionQueryPropertyResult(dict):
4968
5031
  """
4969
5032
  return pulumi.get(self, "out_param_details")
4970
5033
 
5034
+ @property
5035
+ @pulumi.getter(name="protocolType")
5036
+ def protocol_type(self) -> str:
5037
+ """
5038
+ Supported protocol of resources to be associated with this metric extension. This is optional and defaults to HTTPS, which uses secure connection to the URL
5039
+ """
5040
+ return pulumi.get(self, "protocol_type")
5041
+
5042
+ @property
5043
+ @pulumi.getter(name="responseContentType")
5044
+ def response_content_type(self) -> str:
5045
+ """
5046
+ Type of content response given by the http(s) URL
5047
+ """
5048
+ return pulumi.get(self, "response_content_type")
5049
+
4971
5050
  @property
4972
5051
  @pulumi.getter(name="scriptDetails")
4973
5052
  def script_details(self) -> Sequence['outputs.GetMetricExtensionQueryPropertyScriptDetailResult']:
4974
5053
  """
4975
- Script details applicable to any OS Command based Metric Extension which needs to run a script to collect data
5054
+ Script details applicable to any OS Command/HTTP based Metric Extension which needs to run a script to collect data. For removing it during OS Command based Metric Extension update, set its "content" property to an empty string. In that case, "name" property value is ignored.
4976
5055
  """
4977
5056
  return pulumi.get(self, "script_details")
4978
5057
 
@@ -5000,6 +5079,14 @@ class GetMetricExtensionQueryPropertyResult(dict):
5000
5079
  """
5001
5080
  return pulumi.get(self, "starts_with")
5002
5081
 
5082
+ @property
5083
+ @pulumi.getter
5084
+ def url(self) -> str:
5085
+ """
5086
+ Http(s) end point URL
5087
+ """
5088
+ return pulumi.get(self, "url")
5089
+
5003
5090
 
5004
5091
  @pulumi.output_type
5005
5092
  class GetMetricExtensionQueryPropertyInParamDetailResult(dict):
@@ -5033,20 +5120,31 @@ class GetMetricExtensionQueryPropertyInParamDetailResult(dict):
5033
5120
  @pulumi.output_type
5034
5121
  class GetMetricExtensionQueryPropertyOutParamDetailResult(dict):
5035
5122
  def __init__(__self__, *,
5123
+ out_param_name: str,
5036
5124
  out_param_position: int,
5037
5125
  out_param_type: str):
5038
5126
  """
5039
- :param int out_param_position: Position of PL/SQL procedure OUT parameter
5040
- :param str out_param_type: SQL Type of PL/SQL procedure OUT parameter
5127
+ :param str out_param_name: Name of the Out Parameter
5128
+ :param int out_param_position: Position of PL/SQL procedure OUT parameter. The value of this property is ignored during update, if "outParamType" is set to NO_OUT_PARAM value.
5129
+ :param str out_param_type: SQL Type of PL/SQL procedure OUT parameter. During the update, to completely remove the out parameter, use the value NO_OUT_PARAM. In that case, the value of "outParamPosition" will be ignored.
5041
5130
  """
5131
+ pulumi.set(__self__, "out_param_name", out_param_name)
5042
5132
  pulumi.set(__self__, "out_param_position", out_param_position)
5043
5133
  pulumi.set(__self__, "out_param_type", out_param_type)
5044
5134
 
5135
+ @property
5136
+ @pulumi.getter(name="outParamName")
5137
+ def out_param_name(self) -> str:
5138
+ """
5139
+ Name of the Out Parameter
5140
+ """
5141
+ return pulumi.get(self, "out_param_name")
5142
+
5045
5143
  @property
5046
5144
  @pulumi.getter(name="outParamPosition")
5047
5145
  def out_param_position(self) -> int:
5048
5146
  """
5049
- Position of PL/SQL procedure OUT parameter
5147
+ Position of PL/SQL procedure OUT parameter. The value of this property is ignored during update, if "outParamType" is set to NO_OUT_PARAM value.
5050
5148
  """
5051
5149
  return pulumi.get(self, "out_param_position")
5052
5150
 
@@ -5054,7 +5152,7 @@ class GetMetricExtensionQueryPropertyOutParamDetailResult(dict):
5054
5152
  @pulumi.getter(name="outParamType")
5055
5153
  def out_param_type(self) -> str:
5056
5154
  """
5057
- SQL Type of PL/SQL procedure OUT parameter
5155
+ SQL Type of PL/SQL procedure OUT parameter. During the update, to completely remove the out parameter, use the value NO_OUT_PARAM. In that case, the value of "outParamPosition" will be ignored.
5058
5156
  """
5059
5157
  return pulumi.get(self, "out_param_type")
5060
5158
 
@@ -5523,10 +5621,13 @@ class GetMetricExtensionsMetricExtensionCollectionItemQueryPropertyResult(dict):
5523
5621
  jmx_attributes: str,
5524
5622
  managed_bean_query: str,
5525
5623
  out_param_details: Sequence['outputs.GetMetricExtensionsMetricExtensionCollectionItemQueryPropertyOutParamDetailResult'],
5624
+ protocol_type: str,
5625
+ response_content_type: str,
5526
5626
  script_details: Sequence['outputs.GetMetricExtensionsMetricExtensionCollectionItemQueryPropertyScriptDetailResult'],
5527
5627
  sql_details: Sequence['outputs.GetMetricExtensionsMetricExtensionCollectionItemQueryPropertySqlDetailResult'],
5528
5628
  sql_type: str,
5529
- starts_with: str):
5629
+ starts_with: str,
5630
+ url: str):
5530
5631
  """
5531
5632
  :param str arguments: Arguments required by either command or script
5532
5633
  :param str auto_row_prefix: Prefix for an auto generated metric, in case multiple rows with non unique key values are returned
@@ -5539,10 +5640,13 @@ class GetMetricExtensionsMetricExtensionCollectionItemQueryPropertyResult(dict):
5539
5640
  :param str jmx_attributes: List of JMX attributes or Metric Service Table columns separated by semi-colon
5540
5641
  :param str managed_bean_query: JMX Managed Bean Query or Metric Service Table name
5541
5642
  :param Sequence['GetMetricExtensionsMetricExtensionCollectionItemQueryPropertyOutParamDetailArgs'] out_param_details: Position and SQL Type of PL/SQL OUT parameter
5542
- :param Sequence['GetMetricExtensionsMetricExtensionCollectionItemQueryPropertyScriptDetailArgs'] script_details: Script details applicable to any OS Command based Metric Extension which needs to run a script to collect data
5643
+ :param str protocol_type: Supported protocol of resources to be associated with this metric extension. This is optional and defaults to HTTPS, which uses secure connection to the URL
5644
+ :param str response_content_type: Type of content response given by the http(s) URL
5645
+ :param Sequence['GetMetricExtensionsMetricExtensionCollectionItemQueryPropertyScriptDetailArgs'] script_details: Script details applicable to any OS Command/HTTP based Metric Extension which needs to run a script to collect data. For removing it during OS Command based Metric Extension update, set its "content" property to an empty string. In that case, "name" property value is ignored.
5543
5646
  :param Sequence['GetMetricExtensionsMetricExtensionCollectionItemQueryPropertySqlDetailArgs'] sql_details: Details of Sql content which needs to execute to collect Metric Extension data
5544
5647
  :param str sql_type: Type of SQL data collection method i.e. either a Statement or SQL Script File
5545
5648
  :param str starts_with: String prefix used to identify metric output of the OS Command
5649
+ :param str url: Http(s) end point URL
5546
5650
  """
5547
5651
  pulumi.set(__self__, "arguments", arguments)
5548
5652
  pulumi.set(__self__, "auto_row_prefix", auto_row_prefix)
@@ -5555,10 +5659,13 @@ class GetMetricExtensionsMetricExtensionCollectionItemQueryPropertyResult(dict):
5555
5659
  pulumi.set(__self__, "jmx_attributes", jmx_attributes)
5556
5660
  pulumi.set(__self__, "managed_bean_query", managed_bean_query)
5557
5661
  pulumi.set(__self__, "out_param_details", out_param_details)
5662
+ pulumi.set(__self__, "protocol_type", protocol_type)
5663
+ pulumi.set(__self__, "response_content_type", response_content_type)
5558
5664
  pulumi.set(__self__, "script_details", script_details)
5559
5665
  pulumi.set(__self__, "sql_details", sql_details)
5560
5666
  pulumi.set(__self__, "sql_type", sql_type)
5561
5667
  pulumi.set(__self__, "starts_with", starts_with)
5668
+ pulumi.set(__self__, "url", url)
5562
5669
 
5563
5670
  @property
5564
5671
  @pulumi.getter
@@ -5648,11 +5755,27 @@ class GetMetricExtensionsMetricExtensionCollectionItemQueryPropertyResult(dict):
5648
5755
  """
5649
5756
  return pulumi.get(self, "out_param_details")
5650
5757
 
5758
+ @property
5759
+ @pulumi.getter(name="protocolType")
5760
+ def protocol_type(self) -> str:
5761
+ """
5762
+ Supported protocol of resources to be associated with this metric extension. This is optional and defaults to HTTPS, which uses secure connection to the URL
5763
+ """
5764
+ return pulumi.get(self, "protocol_type")
5765
+
5766
+ @property
5767
+ @pulumi.getter(name="responseContentType")
5768
+ def response_content_type(self) -> str:
5769
+ """
5770
+ Type of content response given by the http(s) URL
5771
+ """
5772
+ return pulumi.get(self, "response_content_type")
5773
+
5651
5774
  @property
5652
5775
  @pulumi.getter(name="scriptDetails")
5653
5776
  def script_details(self) -> Sequence['outputs.GetMetricExtensionsMetricExtensionCollectionItemQueryPropertyScriptDetailResult']:
5654
5777
  """
5655
- Script details applicable to any OS Command based Metric Extension which needs to run a script to collect data
5778
+ Script details applicable to any OS Command/HTTP based Metric Extension which needs to run a script to collect data. For removing it during OS Command based Metric Extension update, set its "content" property to an empty string. In that case, "name" property value is ignored.
5656
5779
  """
5657
5780
  return pulumi.get(self, "script_details")
5658
5781
 
@@ -5680,6 +5803,14 @@ class GetMetricExtensionsMetricExtensionCollectionItemQueryPropertyResult(dict):
5680
5803
  """
5681
5804
  return pulumi.get(self, "starts_with")
5682
5805
 
5806
+ @property
5807
+ @pulumi.getter
5808
+ def url(self) -> str:
5809
+ """
5810
+ Http(s) end point URL
5811
+ """
5812
+ return pulumi.get(self, "url")
5813
+
5683
5814
 
5684
5815
  @pulumi.output_type
5685
5816
  class GetMetricExtensionsMetricExtensionCollectionItemQueryPropertyInParamDetailResult(dict):
@@ -5713,20 +5844,31 @@ class GetMetricExtensionsMetricExtensionCollectionItemQueryPropertyInParamDetail
5713
5844
  @pulumi.output_type
5714
5845
  class GetMetricExtensionsMetricExtensionCollectionItemQueryPropertyOutParamDetailResult(dict):
5715
5846
  def __init__(__self__, *,
5847
+ out_param_name: str,
5716
5848
  out_param_position: int,
5717
5849
  out_param_type: str):
5718
5850
  """
5719
- :param int out_param_position: Position of PL/SQL procedure OUT parameter
5720
- :param str out_param_type: SQL Type of PL/SQL procedure OUT parameter
5851
+ :param str out_param_name: Name of the Out Parameter
5852
+ :param int out_param_position: Position of PL/SQL procedure OUT parameter. The value of this property is ignored during update, if "outParamType" is set to NO_OUT_PARAM value.
5853
+ :param str out_param_type: SQL Type of PL/SQL procedure OUT parameter. During the update, to completely remove the out parameter, use the value NO_OUT_PARAM. In that case, the value of "outParamPosition" will be ignored.
5721
5854
  """
5855
+ pulumi.set(__self__, "out_param_name", out_param_name)
5722
5856
  pulumi.set(__self__, "out_param_position", out_param_position)
5723
5857
  pulumi.set(__self__, "out_param_type", out_param_type)
5724
5858
 
5859
+ @property
5860
+ @pulumi.getter(name="outParamName")
5861
+ def out_param_name(self) -> str:
5862
+ """
5863
+ Name of the Out Parameter
5864
+ """
5865
+ return pulumi.get(self, "out_param_name")
5866
+
5725
5867
  @property
5726
5868
  @pulumi.getter(name="outParamPosition")
5727
5869
  def out_param_position(self) -> int:
5728
5870
  """
5729
- Position of PL/SQL procedure OUT parameter
5871
+ Position of PL/SQL procedure OUT parameter. The value of this property is ignored during update, if "outParamType" is set to NO_OUT_PARAM value.
5730
5872
  """
5731
5873
  return pulumi.get(self, "out_param_position")
5732
5874
 
@@ -5734,7 +5876,7 @@ class GetMetricExtensionsMetricExtensionCollectionItemQueryPropertyOutParamDetai
5734
5876
  @pulumi.getter(name="outParamType")
5735
5877
  def out_param_type(self) -> str:
5736
5878
  """
5737
- SQL Type of PL/SQL procedure OUT parameter
5879
+ SQL Type of PL/SQL procedure OUT parameter. During the update, to completely remove the out parameter, use the value NO_OUT_PARAM. In that case, the value of "outParamPosition" will be ignored.
5738
5880
  """
5739
5881
  return pulumi.get(self, "out_param_type")
5740
5882