pulumi-oci 2.20.0a1734416680__py3-none-any.whl → 2.20.0a1734744214__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.
- pulumi_oci/__init__.py +16 -0
- pulumi_oci/bigdataservice/__init__.py +4 -0
- pulumi_oci/bigdataservice/_inputs.py +672 -6
- pulumi_oci/bigdataservice/bds_instance.py +169 -7
- pulumi_oci/bigdataservice/bds_instance_api_key.py +66 -3
- pulumi_oci/bigdataservice/bds_instance_identity_configuration.py +859 -0
- pulumi_oci/bigdataservice/bds_instance_patch_action.py +4 -0
- pulumi_oci/bigdataservice/get_bds_cluster_versions.py +123 -0
- pulumi_oci/bigdataservice/get_bds_instance.py +48 -1
- pulumi_oci/bigdataservice/get_bds_instance_api_key.py +17 -1
- pulumi_oci/bigdataservice/get_bds_instance_api_keys.py +3 -0
- pulumi_oci/bigdataservice/get_bds_instance_identity_configuration.py +322 -0
- pulumi_oci/bigdataservice/get_bds_instance_identity_configurations.py +207 -0
- pulumi_oci/bigdataservice/outputs.py +1466 -98
- pulumi_oci/blockchain/get_blockchain_platform.py +1 -1
- pulumi_oci/blockchain/outputs.py +2 -2
- pulumi_oci/core/outputs.py +4 -0
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/exadb_vm_cluster.py +104 -0
- pulumi_oci/database/get_autonomous_database.py +15 -1
- pulumi_oci/database/outputs.py +22 -0
- pulumi_oci/datascience/_inputs.py +32 -12
- pulumi_oci/datascience/get_job_run.py +3 -3
- pulumi_oci/datascience/get_job_runs.py +2 -2
- pulumi_oci/datascience/job_run.py +7 -7
- pulumi_oci/datascience/model_deployment.py +2 -0
- pulumi_oci/datascience/outputs.py +62 -26
- pulumi_oci/generativeai/dedicated_ai_cluster.py +21 -0
- pulumi_oci/goldengate/__init__.py +7 -0
- pulumi_oci/goldengate/_inputs.py +665 -0
- pulumi_oci/goldengate/connection.py +7 -7
- pulumi_oci/goldengate/get_pipeline.py +408 -0
- pulumi_oci/goldengate/get_pipeline_running_processes.py +144 -0
- pulumi_oci/goldengate/get_pipeline_schema_tables.py +207 -0
- pulumi_oci/goldengate/get_pipeline_schemas.py +163 -0
- pulumi_oci/goldengate/get_pipelines.py +213 -0
- pulumi_oci/goldengate/get_recipes.py +188 -0
- pulumi_oci/goldengate/get_trail_files.py +4 -2
- pulumi_oci/goldengate/get_trail_sequences.py +4 -2
- pulumi_oci/goldengate/outputs.py +1500 -0
- pulumi_oci/goldengate/pipeline.py +928 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/stackmonitoring/_inputs.py +94 -14
- pulumi_oci/stackmonitoring/get_metric_extensions.py +22 -3
- pulumi_oci/stackmonitoring/metric_extension.py +8 -0
- pulumi_oci/stackmonitoring/outputs.py +166 -24
- {pulumi_oci-2.20.0a1734416680.dist-info → pulumi_oci-2.20.0a1734744214.dist-info}/METADATA +3 -3
- {pulumi_oci-2.20.0a1734416680.dist-info → pulumi_oci-2.20.0a1734744214.dist-info}/RECORD +50 -39
- {pulumi_oci-2.20.0a1734416680.dist-info → pulumi_oci-2.20.0a1734744214.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.20.0a1734416680.dist-info → pulumi_oci-2.20.0a1734744214.dist-info}/top_level.txt +0 -0
pulumi_oci/pulumi-plugin.json
CHANGED
@@ -983,9 +983,17 @@ if not MYPY:
|
|
983
983
|
"""
|
984
984
|
(Updatable) Position and SQL Type of PL/SQL OUT parameter
|
985
985
|
"""
|
986
|
+
protocol_type: NotRequired[pulumi.Input[str]]
|
987
|
+
"""
|
988
|
+
(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
|
989
|
+
"""
|
990
|
+
response_content_type: NotRequired[pulumi.Input[str]]
|
991
|
+
"""
|
992
|
+
(Updatable) Type of content response given by the http(s) URL
|
993
|
+
"""
|
986
994
|
script_details: NotRequired[pulumi.Input['MetricExtensionQueryPropertiesScriptDetailsArgsDict']]
|
987
995
|
"""
|
988
|
-
(Updatable) Script details applicable to any OS Command based Metric Extension which needs to run a script to collect data
|
996
|
+
(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.
|
989
997
|
"""
|
990
998
|
sql_details: NotRequired[pulumi.Input['MetricExtensionQueryPropertiesSqlDetailsArgsDict']]
|
991
999
|
"""
|
@@ -999,6 +1007,10 @@ if not MYPY:
|
|
999
1007
|
"""
|
1000
1008
|
(Updatable) String prefix used to identify metric output of the OS Command
|
1001
1009
|
"""
|
1010
|
+
url: NotRequired[pulumi.Input[str]]
|
1011
|
+
"""
|
1012
|
+
(Updatable) Http(s) end point URL
|
1013
|
+
"""
|
1002
1014
|
elif False:
|
1003
1015
|
MetricExtensionQueryPropertiesArgsDict: TypeAlias = Mapping[str, Any]
|
1004
1016
|
|
@@ -1016,10 +1028,13 @@ class MetricExtensionQueryPropertiesArgs:
|
|
1016
1028
|
jmx_attributes: Optional[pulumi.Input[str]] = None,
|
1017
1029
|
managed_bean_query: Optional[pulumi.Input[str]] = None,
|
1018
1030
|
out_param_details: Optional[pulumi.Input['MetricExtensionQueryPropertiesOutParamDetailsArgs']] = None,
|
1031
|
+
protocol_type: Optional[pulumi.Input[str]] = None,
|
1032
|
+
response_content_type: Optional[pulumi.Input[str]] = None,
|
1019
1033
|
script_details: Optional[pulumi.Input['MetricExtensionQueryPropertiesScriptDetailsArgs']] = None,
|
1020
1034
|
sql_details: Optional[pulumi.Input['MetricExtensionQueryPropertiesSqlDetailsArgs']] = None,
|
1021
1035
|
sql_type: Optional[pulumi.Input[str]] = None,
|
1022
|
-
starts_with: Optional[pulumi.Input[str]] = None
|
1036
|
+
starts_with: Optional[pulumi.Input[str]] = None,
|
1037
|
+
url: Optional[pulumi.Input[str]] = None):
|
1023
1038
|
"""
|
1024
1039
|
:param pulumi.Input[str] collection_method: (Updatable) Type of possible collection methods.
|
1025
1040
|
:param pulumi.Input[str] arguments: (Updatable) Arguments required by either command or script
|
@@ -1032,10 +1047,13 @@ class MetricExtensionQueryPropertiesArgs:
|
|
1032
1047
|
:param pulumi.Input[str] jmx_attributes: (Updatable) List of JMX attributes or Metric Service Table columns separated by semi-colon
|
1033
1048
|
:param pulumi.Input[str] managed_bean_query: (Updatable) JMX Managed Bean Query or Metric Service Table name
|
1034
1049
|
:param pulumi.Input['MetricExtensionQueryPropertiesOutParamDetailsArgs'] out_param_details: (Updatable) Position and SQL Type of PL/SQL OUT parameter
|
1035
|
-
:param pulumi.Input[
|
1050
|
+
:param pulumi.Input[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
|
1051
|
+
:param pulumi.Input[str] response_content_type: (Updatable) Type of content response given by the http(s) URL
|
1052
|
+
:param pulumi.Input['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.
|
1036
1053
|
:param pulumi.Input['MetricExtensionQueryPropertiesSqlDetailsArgs'] sql_details: (Updatable) Details of Sql content which needs to execute to collect Metric Extension data
|
1037
1054
|
:param pulumi.Input[str] sql_type: (Updatable) Type of SQL data collection method i.e. either a Statement or SQL Script File
|
1038
1055
|
:param pulumi.Input[str] starts_with: (Updatable) String prefix used to identify metric output of the OS Command
|
1056
|
+
:param pulumi.Input[str] url: (Updatable) Http(s) end point URL
|
1039
1057
|
"""
|
1040
1058
|
pulumi.set(__self__, "collection_method", collection_method)
|
1041
1059
|
if arguments is not None:
|
@@ -1058,6 +1076,10 @@ class MetricExtensionQueryPropertiesArgs:
|
|
1058
1076
|
pulumi.set(__self__, "managed_bean_query", managed_bean_query)
|
1059
1077
|
if out_param_details is not None:
|
1060
1078
|
pulumi.set(__self__, "out_param_details", out_param_details)
|
1079
|
+
if protocol_type is not None:
|
1080
|
+
pulumi.set(__self__, "protocol_type", protocol_type)
|
1081
|
+
if response_content_type is not None:
|
1082
|
+
pulumi.set(__self__, "response_content_type", response_content_type)
|
1061
1083
|
if script_details is not None:
|
1062
1084
|
pulumi.set(__self__, "script_details", script_details)
|
1063
1085
|
if sql_details is not None:
|
@@ -1066,6 +1088,8 @@ class MetricExtensionQueryPropertiesArgs:
|
|
1066
1088
|
pulumi.set(__self__, "sql_type", sql_type)
|
1067
1089
|
if starts_with is not None:
|
1068
1090
|
pulumi.set(__self__, "starts_with", starts_with)
|
1091
|
+
if url is not None:
|
1092
|
+
pulumi.set(__self__, "url", url)
|
1069
1093
|
|
1070
1094
|
@property
|
1071
1095
|
@pulumi.getter(name="collectionMethod")
|
@@ -1199,11 +1223,35 @@ class MetricExtensionQueryPropertiesArgs:
|
|
1199
1223
|
def out_param_details(self, value: Optional[pulumi.Input['MetricExtensionQueryPropertiesOutParamDetailsArgs']]):
|
1200
1224
|
pulumi.set(self, "out_param_details", value)
|
1201
1225
|
|
1226
|
+
@property
|
1227
|
+
@pulumi.getter(name="protocolType")
|
1228
|
+
def protocol_type(self) -> Optional[pulumi.Input[str]]:
|
1229
|
+
"""
|
1230
|
+
(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
|
1231
|
+
"""
|
1232
|
+
return pulumi.get(self, "protocol_type")
|
1233
|
+
|
1234
|
+
@protocol_type.setter
|
1235
|
+
def protocol_type(self, value: Optional[pulumi.Input[str]]):
|
1236
|
+
pulumi.set(self, "protocol_type", value)
|
1237
|
+
|
1238
|
+
@property
|
1239
|
+
@pulumi.getter(name="responseContentType")
|
1240
|
+
def response_content_type(self) -> Optional[pulumi.Input[str]]:
|
1241
|
+
"""
|
1242
|
+
(Updatable) Type of content response given by the http(s) URL
|
1243
|
+
"""
|
1244
|
+
return pulumi.get(self, "response_content_type")
|
1245
|
+
|
1246
|
+
@response_content_type.setter
|
1247
|
+
def response_content_type(self, value: Optional[pulumi.Input[str]]):
|
1248
|
+
pulumi.set(self, "response_content_type", value)
|
1249
|
+
|
1202
1250
|
@property
|
1203
1251
|
@pulumi.getter(name="scriptDetails")
|
1204
1252
|
def script_details(self) -> Optional[pulumi.Input['MetricExtensionQueryPropertiesScriptDetailsArgs']]:
|
1205
1253
|
"""
|
1206
|
-
(Updatable) Script details applicable to any OS Command based Metric Extension which needs to run a script to collect data
|
1254
|
+
(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.
|
1207
1255
|
"""
|
1208
1256
|
return pulumi.get(self, "script_details")
|
1209
1257
|
|
@@ -1247,6 +1295,18 @@ class MetricExtensionQueryPropertiesArgs:
|
|
1247
1295
|
def starts_with(self, value: Optional[pulumi.Input[str]]):
|
1248
1296
|
pulumi.set(self, "starts_with", value)
|
1249
1297
|
|
1298
|
+
@property
|
1299
|
+
@pulumi.getter
|
1300
|
+
def url(self) -> Optional[pulumi.Input[str]]:
|
1301
|
+
"""
|
1302
|
+
(Updatable) Http(s) end point URL
|
1303
|
+
"""
|
1304
|
+
return pulumi.get(self, "url")
|
1305
|
+
|
1306
|
+
@url.setter
|
1307
|
+
def url(self, value: Optional[pulumi.Input[str]]):
|
1308
|
+
pulumi.set(self, "url", value)
|
1309
|
+
|
1250
1310
|
|
1251
1311
|
if not MYPY:
|
1252
1312
|
class MetricExtensionQueryPropertiesInParamDetailArgsDict(TypedDict):
|
@@ -1302,11 +1362,15 @@ if not MYPY:
|
|
1302
1362
|
class MetricExtensionQueryPropertiesOutParamDetailsArgsDict(TypedDict):
|
1303
1363
|
out_param_position: pulumi.Input[int]
|
1304
1364
|
"""
|
1305
|
-
(Updatable) Position of PL/SQL procedure OUT parameter
|
1365
|
+
(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.
|
1306
1366
|
"""
|
1307
1367
|
out_param_type: pulumi.Input[str]
|
1308
1368
|
"""
|
1309
|
-
(Updatable) SQL Type of PL/SQL procedure OUT parameter
|
1369
|
+
(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.
|
1370
|
+
"""
|
1371
|
+
out_param_name: NotRequired[pulumi.Input[str]]
|
1372
|
+
"""
|
1373
|
+
(Updatable) Name of the Out Parameter
|
1310
1374
|
"""
|
1311
1375
|
elif False:
|
1312
1376
|
MetricExtensionQueryPropertiesOutParamDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -1315,19 +1379,23 @@ elif False:
|
|
1315
1379
|
class MetricExtensionQueryPropertiesOutParamDetailsArgs:
|
1316
1380
|
def __init__(__self__, *,
|
1317
1381
|
out_param_position: pulumi.Input[int],
|
1318
|
-
out_param_type: pulumi.Input[str]
|
1382
|
+
out_param_type: pulumi.Input[str],
|
1383
|
+
out_param_name: Optional[pulumi.Input[str]] = None):
|
1319
1384
|
"""
|
1320
|
-
:param pulumi.Input[int] out_param_position: (Updatable) Position of PL/SQL procedure OUT parameter
|
1321
|
-
:param pulumi.Input[str] out_param_type: (Updatable) SQL Type of PL/SQL procedure OUT parameter
|
1385
|
+
:param pulumi.Input[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.
|
1386
|
+
:param pulumi.Input[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.
|
1387
|
+
:param pulumi.Input[str] out_param_name: (Updatable) Name of the Out Parameter
|
1322
1388
|
"""
|
1323
1389
|
pulumi.set(__self__, "out_param_position", out_param_position)
|
1324
1390
|
pulumi.set(__self__, "out_param_type", out_param_type)
|
1391
|
+
if out_param_name is not None:
|
1392
|
+
pulumi.set(__self__, "out_param_name", out_param_name)
|
1325
1393
|
|
1326
1394
|
@property
|
1327
1395
|
@pulumi.getter(name="outParamPosition")
|
1328
1396
|
def out_param_position(self) -> pulumi.Input[int]:
|
1329
1397
|
"""
|
1330
|
-
(Updatable) Position of PL/SQL procedure OUT parameter
|
1398
|
+
(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.
|
1331
1399
|
"""
|
1332
1400
|
return pulumi.get(self, "out_param_position")
|
1333
1401
|
|
@@ -1339,7 +1407,7 @@ class MetricExtensionQueryPropertiesOutParamDetailsArgs:
|
|
1339
1407
|
@pulumi.getter(name="outParamType")
|
1340
1408
|
def out_param_type(self) -> pulumi.Input[str]:
|
1341
1409
|
"""
|
1342
|
-
(Updatable) SQL Type of PL/SQL procedure OUT parameter
|
1410
|
+
(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.
|
1343
1411
|
"""
|
1344
1412
|
return pulumi.get(self, "out_param_type")
|
1345
1413
|
|
@@ -1347,12 +1415,24 @@ class MetricExtensionQueryPropertiesOutParamDetailsArgs:
|
|
1347
1415
|
def out_param_type(self, value: pulumi.Input[str]):
|
1348
1416
|
pulumi.set(self, "out_param_type", value)
|
1349
1417
|
|
1418
|
+
@property
|
1419
|
+
@pulumi.getter(name="outParamName")
|
1420
|
+
def out_param_name(self) -> Optional[pulumi.Input[str]]:
|
1421
|
+
"""
|
1422
|
+
(Updatable) Name of the Out Parameter
|
1423
|
+
"""
|
1424
|
+
return pulumi.get(self, "out_param_name")
|
1425
|
+
|
1426
|
+
@out_param_name.setter
|
1427
|
+
def out_param_name(self, value: Optional[pulumi.Input[str]]):
|
1428
|
+
pulumi.set(self, "out_param_name", value)
|
1429
|
+
|
1350
1430
|
|
1351
1431
|
if not MYPY:
|
1352
1432
|
class MetricExtensionQueryPropertiesScriptDetailsArgsDict(TypedDict):
|
1353
1433
|
content: pulumi.Input[str]
|
1354
1434
|
"""
|
1355
|
-
(Updatable) Content of the script file as base64 encoded string
|
1435
|
+
(Updatable) Content of the script/JavaScript file as base64 encoded string
|
1356
1436
|
"""
|
1357
1437
|
name: pulumi.Input[str]
|
1358
1438
|
"""
|
@@ -1367,7 +1447,7 @@ class MetricExtensionQueryPropertiesScriptDetailsArgs:
|
|
1367
1447
|
content: pulumi.Input[str],
|
1368
1448
|
name: pulumi.Input[str]):
|
1369
1449
|
"""
|
1370
|
-
:param pulumi.Input[str] content: (Updatable) Content of the script file as base64 encoded string
|
1450
|
+
:param pulumi.Input[str] content: (Updatable) Content of the script/JavaScript file as base64 encoded string
|
1371
1451
|
:param pulumi.Input[str] name: (Updatable) Name of the script file
|
1372
1452
|
"""
|
1373
1453
|
pulumi.set(__self__, "content", content)
|
@@ -1377,7 +1457,7 @@ class MetricExtensionQueryPropertiesScriptDetailsArgs:
|
|
1377
1457
|
@pulumi.getter
|
1378
1458
|
def content(self) -> pulumi.Input[str]:
|
1379
1459
|
"""
|
1380
|
-
(Updatable) Content of the script file as base64 encoded string
|
1460
|
+
(Updatable) Content of the script/JavaScript file as base64 encoded string
|
1381
1461
|
"""
|
1382
1462
|
return pulumi.get(self, "content")
|
1383
1463
|
|
@@ -28,7 +28,7 @@ class GetMetricExtensionsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getMetricExtensions.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, compartment_id=None, enabled_on_resource_id=None, filters=None, id=None, metric_extension_collections=None, name=None, resource_type=None, state=None, status=None):
|
31
|
+
def __init__(__self__, compartment_id=None, enabled_on_resource_id=None, filters=None, id=None, metric_extension_collections=None, metric_extension_id=None, name=None, resource_type=None, state=None, status=None):
|
32
32
|
if compartment_id and not isinstance(compartment_id, str):
|
33
33
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
34
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -44,6 +44,9 @@ class GetMetricExtensionsResult:
|
|
44
44
|
if metric_extension_collections and not isinstance(metric_extension_collections, list):
|
45
45
|
raise TypeError("Expected argument 'metric_extension_collections' to be a list")
|
46
46
|
pulumi.set(__self__, "metric_extension_collections", metric_extension_collections)
|
47
|
+
if metric_extension_id and not isinstance(metric_extension_id, str):
|
48
|
+
raise TypeError("Expected argument 'metric_extension_id' to be a str")
|
49
|
+
pulumi.set(__self__, "metric_extension_id", metric_extension_id)
|
47
50
|
if name and not isinstance(name, str):
|
48
51
|
raise TypeError("Expected argument 'name' to be a str")
|
49
52
|
pulumi.set(__self__, "name", name)
|
@@ -59,7 +62,7 @@ class GetMetricExtensionsResult:
|
|
59
62
|
|
60
63
|
@property
|
61
64
|
@pulumi.getter(name="compartmentId")
|
62
|
-
def compartment_id(self) -> str:
|
65
|
+
def compartment_id(self) -> Optional[str]:
|
63
66
|
"""
|
64
67
|
Compartment Identifier [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
65
68
|
"""
|
@@ -91,6 +94,11 @@ class GetMetricExtensionsResult:
|
|
91
94
|
"""
|
92
95
|
return pulumi.get(self, "metric_extension_collections")
|
93
96
|
|
97
|
+
@property
|
98
|
+
@pulumi.getter(name="metricExtensionId")
|
99
|
+
def metric_extension_id(self) -> Optional[str]:
|
100
|
+
return pulumi.get(self, "metric_extension_id")
|
101
|
+
|
94
102
|
@property
|
95
103
|
@pulumi.getter
|
96
104
|
def name(self) -> Optional[str]:
|
@@ -135,6 +143,7 @@ class AwaitableGetMetricExtensionsResult(GetMetricExtensionsResult):
|
|
135
143
|
filters=self.filters,
|
136
144
|
id=self.id,
|
137
145
|
metric_extension_collections=self.metric_extension_collections,
|
146
|
+
metric_extension_id=self.metric_extension_id,
|
138
147
|
name=self.name,
|
139
148
|
resource_type=self.resource_type,
|
140
149
|
state=self.state,
|
@@ -144,6 +153,7 @@ class AwaitableGetMetricExtensionsResult(GetMetricExtensionsResult):
|
|
144
153
|
def get_metric_extensions(compartment_id: Optional[str] = None,
|
145
154
|
enabled_on_resource_id: Optional[str] = None,
|
146
155
|
filters: Optional[Sequence[Union['GetMetricExtensionsFilterArgs', 'GetMetricExtensionsFilterArgsDict']]] = None,
|
156
|
+
metric_extension_id: Optional[str] = None,
|
147
157
|
name: Optional[str] = None,
|
148
158
|
resource_type: Optional[str] = None,
|
149
159
|
state: Optional[str] = None,
|
@@ -162,6 +172,7 @@ def get_metric_extensions(compartment_id: Optional[str] = None,
|
|
162
172
|
|
163
173
|
test_metric_extensions = oci.StackMonitoring.get_metric_extensions(compartment_id=compartment_id,
|
164
174
|
enabled_on_resource_id=test_resource["id"],
|
175
|
+
metric_extension_id=test_metric_extension["id"],
|
165
176
|
name=metric_extension_name,
|
166
177
|
resource_type=metric_extension_resource_type,
|
167
178
|
state=metric_extension_state,
|
@@ -171,6 +182,7 @@ def get_metric_extensions(compartment_id: Optional[str] = None,
|
|
171
182
|
|
172
183
|
:param str compartment_id: The ID of the compartment in which data is listed.
|
173
184
|
:param str enabled_on_resource_id: A filter to return metric extensions based on input resource Id on which metric extension is enabled
|
185
|
+
:param str metric_extension_id: Identifier for the metric extension
|
174
186
|
:param str name: A filter to return resources based on name.
|
175
187
|
:param str resource_type: A filter to return resources based on resource type.
|
176
188
|
:param str state: A filter to return metric extensions based on Lifecycle State
|
@@ -180,6 +192,7 @@ def get_metric_extensions(compartment_id: Optional[str] = None,
|
|
180
192
|
__args__['compartmentId'] = compartment_id
|
181
193
|
__args__['enabledOnResourceId'] = enabled_on_resource_id
|
182
194
|
__args__['filters'] = filters
|
195
|
+
__args__['metricExtensionId'] = metric_extension_id
|
183
196
|
__args__['name'] = name
|
184
197
|
__args__['resourceType'] = resource_type
|
185
198
|
__args__['state'] = state
|
@@ -193,13 +206,15 @@ def get_metric_extensions(compartment_id: Optional[str] = None,
|
|
193
206
|
filters=pulumi.get(__ret__, 'filters'),
|
194
207
|
id=pulumi.get(__ret__, 'id'),
|
195
208
|
metric_extension_collections=pulumi.get(__ret__, 'metric_extension_collections'),
|
209
|
+
metric_extension_id=pulumi.get(__ret__, 'metric_extension_id'),
|
196
210
|
name=pulumi.get(__ret__, 'name'),
|
197
211
|
resource_type=pulumi.get(__ret__, 'resource_type'),
|
198
212
|
state=pulumi.get(__ret__, 'state'),
|
199
213
|
status=pulumi.get(__ret__, 'status'))
|
200
|
-
def get_metric_extensions_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
214
|
+
def get_metric_extensions_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
|
201
215
|
enabled_on_resource_id: Optional[pulumi.Input[Optional[str]]] = None,
|
202
216
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetMetricExtensionsFilterArgs', 'GetMetricExtensionsFilterArgsDict']]]]] = None,
|
217
|
+
metric_extension_id: Optional[pulumi.Input[Optional[str]]] = None,
|
203
218
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
204
219
|
resource_type: Optional[pulumi.Input[Optional[str]]] = None,
|
205
220
|
state: Optional[pulumi.Input[Optional[str]]] = None,
|
@@ -218,6 +233,7 @@ def get_metric_extensions_output(compartment_id: Optional[pulumi.Input[str]] = N
|
|
218
233
|
|
219
234
|
test_metric_extensions = oci.StackMonitoring.get_metric_extensions(compartment_id=compartment_id,
|
220
235
|
enabled_on_resource_id=test_resource["id"],
|
236
|
+
metric_extension_id=test_metric_extension["id"],
|
221
237
|
name=metric_extension_name,
|
222
238
|
resource_type=metric_extension_resource_type,
|
223
239
|
state=metric_extension_state,
|
@@ -227,6 +243,7 @@ def get_metric_extensions_output(compartment_id: Optional[pulumi.Input[str]] = N
|
|
227
243
|
|
228
244
|
:param str compartment_id: The ID of the compartment in which data is listed.
|
229
245
|
:param str enabled_on_resource_id: A filter to return metric extensions based on input resource Id on which metric extension is enabled
|
246
|
+
:param str metric_extension_id: Identifier for the metric extension
|
230
247
|
:param str name: A filter to return resources based on name.
|
231
248
|
:param str resource_type: A filter to return resources based on resource type.
|
232
249
|
:param str state: A filter to return metric extensions based on Lifecycle State
|
@@ -236,6 +253,7 @@ def get_metric_extensions_output(compartment_id: Optional[pulumi.Input[str]] = N
|
|
236
253
|
__args__['compartmentId'] = compartment_id
|
237
254
|
__args__['enabledOnResourceId'] = enabled_on_resource_id
|
238
255
|
__args__['filters'] = filters
|
256
|
+
__args__['metricExtensionId'] = metric_extension_id
|
239
257
|
__args__['name'] = name
|
240
258
|
__args__['resourceType'] = resource_type
|
241
259
|
__args__['state'] = state
|
@@ -248,6 +266,7 @@ def get_metric_extensions_output(compartment_id: Optional[pulumi.Input[str]] = N
|
|
248
266
|
filters=pulumi.get(__response__, 'filters'),
|
249
267
|
id=pulumi.get(__response__, 'id'),
|
250
268
|
metric_extension_collections=pulumi.get(__response__, 'metric_extension_collections'),
|
269
|
+
metric_extension_id=pulumi.get(__response__, 'metric_extension_id'),
|
251
270
|
name=pulumi.get(__response__, 'name'),
|
252
271
|
resource_type=pulumi.get(__response__, 'resource_type'),
|
253
272
|
state=pulumi.get(__response__, 'state'),
|
@@ -564,9 +564,12 @@ class MetricExtension(pulumi.CustomResource):
|
|
564
564
|
"jmx_attributes": metric_extension_query_properties_jmx_attributes,
|
565
565
|
"managed_bean_query": metric_extension_query_properties_managed_bean_query,
|
566
566
|
"out_param_details": {
|
567
|
+
"out_param_name": metric_extension_query_properties_out_param_details_out_param_name,
|
567
568
|
"out_param_position": metric_extension_query_properties_out_param_details_out_param_position,
|
568
569
|
"out_param_type": metric_extension_query_properties_out_param_details_out_param_type,
|
569
570
|
},
|
571
|
+
"protocol_type": metric_extension_query_properties_protocol_type,
|
572
|
+
"response_content_type": metric_extension_query_properties_response_content_type,
|
570
573
|
"script_details": {
|
571
574
|
"content": metric_extension_query_properties_script_details_content,
|
572
575
|
"name": metric_extension_query_properties_script_details_name,
|
@@ -577,6 +580,7 @@ class MetricExtension(pulumi.CustomResource):
|
|
577
580
|
},
|
578
581
|
"sql_type": metric_extension_query_properties_sql_type,
|
579
582
|
"starts_with": metric_extension_query_properties_starts_with,
|
583
|
+
"url": metric_extension_query_properties_url,
|
580
584
|
},
|
581
585
|
resource_type=metric_extension_resource_type,
|
582
586
|
description=metric_extension_description)
|
@@ -653,9 +657,12 @@ class MetricExtension(pulumi.CustomResource):
|
|
653
657
|
"jmx_attributes": metric_extension_query_properties_jmx_attributes,
|
654
658
|
"managed_bean_query": metric_extension_query_properties_managed_bean_query,
|
655
659
|
"out_param_details": {
|
660
|
+
"out_param_name": metric_extension_query_properties_out_param_details_out_param_name,
|
656
661
|
"out_param_position": metric_extension_query_properties_out_param_details_out_param_position,
|
657
662
|
"out_param_type": metric_extension_query_properties_out_param_details_out_param_type,
|
658
663
|
},
|
664
|
+
"protocol_type": metric_extension_query_properties_protocol_type,
|
665
|
+
"response_content_type": metric_extension_query_properties_response_content_type,
|
659
666
|
"script_details": {
|
660
667
|
"content": metric_extension_query_properties_script_details_content,
|
661
668
|
"name": metric_extension_query_properties_script_details_name,
|
@@ -666,6 +673,7 @@ class MetricExtension(pulumi.CustomResource):
|
|
666
673
|
},
|
667
674
|
"sql_type": metric_extension_query_properties_sql_type,
|
668
675
|
"starts_with": metric_extension_query_properties_starts_with,
|
676
|
+
"url": metric_extension_query_properties_url,
|
669
677
|
},
|
670
678
|
resource_type=metric_extension_resource_type,
|
671
679
|
description=metric_extension_description)
|