pulumi-oci 1.31.0a1712729931__py3-none-any.whl → 1.31.0a1712742264__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/dataflow/get_invoke_run.py +11 -1
- pulumi_oci/dataflow/invoke_run.py +49 -0
- pulumi_oci/dataflow/outputs.py +7 -0
- pulumi_oci/devops/_inputs.py +380 -10
- pulumi_oci/devops/outputs.py +953 -32
- pulumi_oci/filestorage/replication.py +4 -4
- pulumi_oci/networkfirewall/outputs.py +12 -16
- pulumi_oci/networkloadbalancer/_inputs.py +222 -10
- pulumi_oci/networkloadbalancer/backend_set.py +70 -7
- pulumi_oci/networkloadbalancer/get_backend_set.py +15 -2
- pulumi_oci/networkloadbalancer/network_load_balancer.py +7 -62
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +70 -7
- pulumi_oci/networkloadbalancer/outputs.py +397 -28
- pulumi_oci/stackmonitoring/_inputs.py +209 -1
- pulumi_oci/stackmonitoring/get_monitored_resource.py +27 -1
- pulumi_oci/stackmonitoring/get_monitored_resource_type.py +27 -1
- pulumi_oci/stackmonitoring/get_monitored_resources.py +18 -1
- pulumi_oci/stackmonitoring/monitored_resource.py +56 -0
- pulumi_oci/stackmonitoring/monitored_resource_task.py +18 -0
- pulumi_oci/stackmonitoring/monitored_resource_type.py +117 -19
- pulumi_oci/stackmonitoring/monitored_resources_search.py +197 -1
- pulumi_oci/stackmonitoring/outputs.py +436 -1
- {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/METADATA +1 -1
- {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/RECORD +26 -26
- {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/top_level.txt +0 -0
@@ -22,7 +22,7 @@ class GetInvokeRunResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getInvokeRun.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, application_id=None, application_log_configs=None, archive_uri=None, arguments=None, asynchronous=None, class_name=None, compartment_id=None, configuration=None, data_read_in_bytes=None, data_written_in_bytes=None, defined_tags=None, display_name=None, driver_shape=None, driver_shape_configs=None, execute=None, executor_shape=None, executor_shape_configs=None, file_uri=None, freeform_tags=None, id=None, idle_timeout_in_minutes=None, language=None, lifecycle_details=None, logs_bucket_uri=None, max_duration_in_minutes=None, metastore_id=None, num_executors=None, opc_request_id=None, owner_principal_id=None, owner_user_name=None, parameters=None, pool_id=None, private_endpoint_dns_zones=None, private_endpoint_id=None, private_endpoint_max_host_count=None, private_endpoint_nsg_ids=None, private_endpoint_subnet_id=None, run_duration_in_milliseconds=None, run_id=None, spark_version=None, state=None, time_created=None, time_updated=None, total_ocpu=None, type=None, warehouse_bucket_uri=None):
|
25
|
+
def __init__(__self__, application_id=None, application_log_configs=None, archive_uri=None, arguments=None, asynchronous=None, class_name=None, compartment_id=None, configuration=None, data_read_in_bytes=None, data_written_in_bytes=None, defined_tags=None, display_name=None, driver_shape=None, driver_shape_configs=None, execute=None, executor_shape=None, executor_shape_configs=None, file_uri=None, freeform_tags=None, id=None, idle_timeout_in_minutes=None, language=None, lifecycle_details=None, logs_bucket_uri=None, max_duration_in_minutes=None, metastore_id=None, num_executors=None, opc_parent_rpt_url=None, opc_request_id=None, owner_principal_id=None, owner_user_name=None, parameters=None, pool_id=None, private_endpoint_dns_zones=None, private_endpoint_id=None, private_endpoint_max_host_count=None, private_endpoint_nsg_ids=None, private_endpoint_subnet_id=None, run_duration_in_milliseconds=None, run_id=None, spark_version=None, state=None, time_created=None, time_updated=None, total_ocpu=None, type=None, warehouse_bucket_uri=None):
|
26
26
|
if application_id and not isinstance(application_id, str):
|
27
27
|
raise TypeError("Expected argument 'application_id' to be a str")
|
28
28
|
pulumi.set(__self__, "application_id", application_id)
|
@@ -104,6 +104,9 @@ class GetInvokeRunResult:
|
|
104
104
|
if num_executors and not isinstance(num_executors, int):
|
105
105
|
raise TypeError("Expected argument 'num_executors' to be a int")
|
106
106
|
pulumi.set(__self__, "num_executors", num_executors)
|
107
|
+
if opc_parent_rpt_url and not isinstance(opc_parent_rpt_url, str):
|
108
|
+
raise TypeError("Expected argument 'opc_parent_rpt_url' to be a str")
|
109
|
+
pulumi.set(__self__, "opc_parent_rpt_url", opc_parent_rpt_url)
|
107
110
|
if opc_request_id and not isinstance(opc_request_id, str):
|
108
111
|
raise TypeError("Expected argument 'opc_request_id' to be a str")
|
109
112
|
pulumi.set(__self__, "opc_request_id", opc_request_id)
|
@@ -375,6 +378,11 @@ class GetInvokeRunResult:
|
|
375
378
|
"""
|
376
379
|
return pulumi.get(self, "num_executors")
|
377
380
|
|
381
|
+
@property
|
382
|
+
@pulumi.getter(name="opcParentRptUrl")
|
383
|
+
def opc_parent_rpt_url(self) -> str:
|
384
|
+
return pulumi.get(self, "opc_parent_rpt_url")
|
385
|
+
|
378
386
|
@property
|
379
387
|
@pulumi.getter(name="opcRequestId")
|
380
388
|
def opc_request_id(self) -> str:
|
@@ -558,6 +566,7 @@ class AwaitableGetInvokeRunResult(GetInvokeRunResult):
|
|
558
566
|
max_duration_in_minutes=self.max_duration_in_minutes,
|
559
567
|
metastore_id=self.metastore_id,
|
560
568
|
num_executors=self.num_executors,
|
569
|
+
opc_parent_rpt_url=self.opc_parent_rpt_url,
|
561
570
|
opc_request_id=self.opc_request_id,
|
562
571
|
owner_principal_id=self.owner_principal_id,
|
563
572
|
owner_user_name=self.owner_user_name,
|
@@ -633,6 +642,7 @@ def get_invoke_run(run_id: Optional[str] = None,
|
|
633
642
|
max_duration_in_minutes=pulumi.get(__ret__, 'max_duration_in_minutes'),
|
634
643
|
metastore_id=pulumi.get(__ret__, 'metastore_id'),
|
635
644
|
num_executors=pulumi.get(__ret__, 'num_executors'),
|
645
|
+
opc_parent_rpt_url=pulumi.get(__ret__, 'opc_parent_rpt_url'),
|
636
646
|
opc_request_id=pulumi.get(__ret__, 'opc_request_id'),
|
637
647
|
owner_principal_id=pulumi.get(__ret__, 'owner_principal_id'),
|
638
648
|
owner_user_name=pulumi.get(__ret__, 'owner_user_name'),
|
@@ -36,6 +36,7 @@ class InvokeRunArgs:
|
|
36
36
|
max_duration_in_minutes: Optional[pulumi.Input[str]] = None,
|
37
37
|
metastore_id: Optional[pulumi.Input[str]] = None,
|
38
38
|
num_executors: Optional[pulumi.Input[int]] = None,
|
39
|
+
opc_parent_rpt_url: Optional[pulumi.Input[str]] = None,
|
39
40
|
parameters: Optional[pulumi.Input[Sequence[pulumi.Input['InvokeRunParameterArgs']]]] = None,
|
40
41
|
pool_id: Optional[pulumi.Input[str]] = None,
|
41
42
|
spark_version: Optional[pulumi.Input[str]] = None,
|
@@ -62,6 +63,7 @@ class InvokeRunArgs:
|
|
62
63
|
:param pulumi.Input[str] max_duration_in_minutes: (Updatable) The maximum duration in minutes for which an Application should run. Data Flow Run would be terminated once it reaches this duration from the time it transitions to `IN_PROGRESS` state.
|
63
64
|
:param pulumi.Input[str] metastore_id: The OCID of Oracle Cloud Infrastructure Hive Metastore.
|
64
65
|
:param pulumi.Input[int] num_executors: The number of executor VMs requested.
|
66
|
+
:param pulumi.Input[str] opc_parent_rpt_url: (Optional header param, required for Resource Principal version 3.0+) Parent resource control plane endpoint used to exchange for upper level resource principal token.
|
65
67
|
:param pulumi.Input[Sequence[pulumi.Input['InvokeRunParameterArgs']]] parameters: An array of name/value pairs used to fill placeholders found in properties like `Application.arguments`. The name must be a string of one or more word characters (a-z, A-Z, 0-9, _). The value can be a string of 0 or more characters of any kind. Example: [ { name: "iterations", value: "10"}, { name: "input_file", value: "mydata.xml" }, { name: "variable_x", value: "${x}"} ]
|
66
68
|
:param pulumi.Input[str] pool_id: The OCID of a pool. Unique Id to indentify a dataflow pool resource.
|
67
69
|
:param pulumi.Input[str] spark_version: The Spark version utilized to run the application. This value may be set if applicationId is not since the Spark version will be taken from the associated application.
|
@@ -111,6 +113,8 @@ class InvokeRunArgs:
|
|
111
113
|
pulumi.set(__self__, "metastore_id", metastore_id)
|
112
114
|
if num_executors is not None:
|
113
115
|
pulumi.set(__self__, "num_executors", num_executors)
|
116
|
+
if opc_parent_rpt_url is not None:
|
117
|
+
pulumi.set(__self__, "opc_parent_rpt_url", opc_parent_rpt_url)
|
114
118
|
if parameters is not None:
|
115
119
|
pulumi.set(__self__, "parameters", parameters)
|
116
120
|
if pool_id is not None:
|
@@ -359,6 +363,18 @@ class InvokeRunArgs:
|
|
359
363
|
def num_executors(self, value: Optional[pulumi.Input[int]]):
|
360
364
|
pulumi.set(self, "num_executors", value)
|
361
365
|
|
366
|
+
@property
|
367
|
+
@pulumi.getter(name="opcParentRptUrl")
|
368
|
+
def opc_parent_rpt_url(self) -> Optional[pulumi.Input[str]]:
|
369
|
+
"""
|
370
|
+
(Optional header param, required for Resource Principal version 3.0+) Parent resource control plane endpoint used to exchange for upper level resource principal token.
|
371
|
+
"""
|
372
|
+
return pulumi.get(self, "opc_parent_rpt_url")
|
373
|
+
|
374
|
+
@opc_parent_rpt_url.setter
|
375
|
+
def opc_parent_rpt_url(self, value: Optional[pulumi.Input[str]]):
|
376
|
+
pulumi.set(self, "opc_parent_rpt_url", value)
|
377
|
+
|
362
378
|
@property
|
363
379
|
@pulumi.getter
|
364
380
|
def parameters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InvokeRunParameterArgs']]]]:
|
@@ -453,6 +469,7 @@ class _InvokeRunState:
|
|
453
469
|
max_duration_in_minutes: Optional[pulumi.Input[str]] = None,
|
454
470
|
metastore_id: Optional[pulumi.Input[str]] = None,
|
455
471
|
num_executors: Optional[pulumi.Input[int]] = None,
|
472
|
+
opc_parent_rpt_url: Optional[pulumi.Input[str]] = None,
|
456
473
|
opc_request_id: Optional[pulumi.Input[str]] = None,
|
457
474
|
owner_principal_id: Optional[pulumi.Input[str]] = None,
|
458
475
|
owner_user_name: Optional[pulumi.Input[str]] = None,
|
@@ -498,6 +515,7 @@ class _InvokeRunState:
|
|
498
515
|
:param pulumi.Input[str] max_duration_in_minutes: (Updatable) The maximum duration in minutes for which an Application should run. Data Flow Run would be terminated once it reaches this duration from the time it transitions to `IN_PROGRESS` state.
|
499
516
|
:param pulumi.Input[str] metastore_id: The OCID of Oracle Cloud Infrastructure Hive Metastore.
|
500
517
|
:param pulumi.Input[int] num_executors: The number of executor VMs requested.
|
518
|
+
:param pulumi.Input[str] opc_parent_rpt_url: (Optional header param, required for Resource Principal version 3.0+) Parent resource control plane endpoint used to exchange for upper level resource principal token.
|
501
519
|
:param pulumi.Input[str] opc_request_id: Unique Oracle assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
|
502
520
|
:param pulumi.Input[str] owner_principal_id: The OCID of the user who created the resource.
|
503
521
|
:param pulumi.Input[str] owner_user_name: The username of the user who created the resource. If the username of the owner does not exist, `null` will be returned and the caller should refer to the ownerPrincipalId value instead.
|
@@ -573,6 +591,8 @@ class _InvokeRunState:
|
|
573
591
|
pulumi.set(__self__, "metastore_id", metastore_id)
|
574
592
|
if num_executors is not None:
|
575
593
|
pulumi.set(__self__, "num_executors", num_executors)
|
594
|
+
if opc_parent_rpt_url is not None:
|
595
|
+
pulumi.set(__self__, "opc_parent_rpt_url", opc_parent_rpt_url)
|
576
596
|
if opc_request_id is not None:
|
577
597
|
pulumi.set(__self__, "opc_request_id", opc_request_id)
|
578
598
|
if owner_principal_id is not None:
|
@@ -919,6 +939,18 @@ class _InvokeRunState:
|
|
919
939
|
def num_executors(self, value: Optional[pulumi.Input[int]]):
|
920
940
|
pulumi.set(self, "num_executors", value)
|
921
941
|
|
942
|
+
@property
|
943
|
+
@pulumi.getter(name="opcParentRptUrl")
|
944
|
+
def opc_parent_rpt_url(self) -> Optional[pulumi.Input[str]]:
|
945
|
+
"""
|
946
|
+
(Optional header param, required for Resource Principal version 3.0+) Parent resource control plane endpoint used to exchange for upper level resource principal token.
|
947
|
+
"""
|
948
|
+
return pulumi.get(self, "opc_parent_rpt_url")
|
949
|
+
|
950
|
+
@opc_parent_rpt_url.setter
|
951
|
+
def opc_parent_rpt_url(self, value: Optional[pulumi.Input[str]]):
|
952
|
+
pulumi.set(self, "opc_parent_rpt_url", value)
|
953
|
+
|
922
954
|
@property
|
923
955
|
@pulumi.getter(name="opcRequestId")
|
924
956
|
def opc_request_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -1165,6 +1197,7 @@ class InvokeRun(pulumi.CustomResource):
|
|
1165
1197
|
max_duration_in_minutes: Optional[pulumi.Input[str]] = None,
|
1166
1198
|
metastore_id: Optional[pulumi.Input[str]] = None,
|
1167
1199
|
num_executors: Optional[pulumi.Input[int]] = None,
|
1200
|
+
opc_parent_rpt_url: Optional[pulumi.Input[str]] = None,
|
1168
1201
|
parameters: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InvokeRunParameterArgs']]]]] = None,
|
1169
1202
|
pool_id: Optional[pulumi.Input[str]] = None,
|
1170
1203
|
spark_version: Optional[pulumi.Input[str]] = None,
|
@@ -1216,6 +1249,7 @@ class InvokeRun(pulumi.CustomResource):
|
|
1216
1249
|
max_duration_in_minutes=var["invoke_run_max_duration_in_minutes"],
|
1217
1250
|
metastore_id=var["metastore_id"],
|
1218
1251
|
num_executors=var["invoke_run_num_executors"],
|
1252
|
+
opc_parent_rpt_url=var["invoke_run_opc_parent_rpt_url"],
|
1219
1253
|
parameters=[oci.data_flow.InvokeRunParameterArgs(
|
1220
1254
|
name=var["invoke_run_parameters_name"],
|
1221
1255
|
value=var["invoke_run_parameters_value"],
|
@@ -1260,6 +1294,7 @@ class InvokeRun(pulumi.CustomResource):
|
|
1260
1294
|
:param pulumi.Input[str] max_duration_in_minutes: (Updatable) The maximum duration in minutes for which an Application should run. Data Flow Run would be terminated once it reaches this duration from the time it transitions to `IN_PROGRESS` state.
|
1261
1295
|
:param pulumi.Input[str] metastore_id: The OCID of Oracle Cloud Infrastructure Hive Metastore.
|
1262
1296
|
:param pulumi.Input[int] num_executors: The number of executor VMs requested.
|
1297
|
+
:param pulumi.Input[str] opc_parent_rpt_url: (Optional header param, required for Resource Principal version 3.0+) Parent resource control plane endpoint used to exchange for upper level resource principal token.
|
1263
1298
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InvokeRunParameterArgs']]]] parameters: An array of name/value pairs used to fill placeholders found in properties like `Application.arguments`. The name must be a string of one or more word characters (a-z, A-Z, 0-9, _). The value can be a string of 0 or more characters of any kind. Example: [ { name: "iterations", value: "10"}, { name: "input_file", value: "mydata.xml" }, { name: "variable_x", value: "${x}"} ]
|
1264
1299
|
:param pulumi.Input[str] pool_id: The OCID of a pool. Unique Id to indentify a dataflow pool resource.
|
1265
1300
|
:param pulumi.Input[str] spark_version: The Spark version utilized to run the application. This value may be set if applicationId is not since the Spark version will be taken from the associated application.
|
@@ -1321,6 +1356,7 @@ class InvokeRun(pulumi.CustomResource):
|
|
1321
1356
|
max_duration_in_minutes=var["invoke_run_max_duration_in_minutes"],
|
1322
1357
|
metastore_id=var["metastore_id"],
|
1323
1358
|
num_executors=var["invoke_run_num_executors"],
|
1359
|
+
opc_parent_rpt_url=var["invoke_run_opc_parent_rpt_url"],
|
1324
1360
|
parameters=[oci.data_flow.InvokeRunParameterArgs(
|
1325
1361
|
name=var["invoke_run_parameters_name"],
|
1326
1362
|
value=var["invoke_run_parameters_value"],
|
@@ -1379,6 +1415,7 @@ class InvokeRun(pulumi.CustomResource):
|
|
1379
1415
|
max_duration_in_minutes: Optional[pulumi.Input[str]] = None,
|
1380
1416
|
metastore_id: Optional[pulumi.Input[str]] = None,
|
1381
1417
|
num_executors: Optional[pulumi.Input[int]] = None,
|
1418
|
+
opc_parent_rpt_url: Optional[pulumi.Input[str]] = None,
|
1382
1419
|
parameters: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InvokeRunParameterArgs']]]]] = None,
|
1383
1420
|
pool_id: Optional[pulumi.Input[str]] = None,
|
1384
1421
|
spark_version: Optional[pulumi.Input[str]] = None,
|
@@ -1415,6 +1452,7 @@ class InvokeRun(pulumi.CustomResource):
|
|
1415
1452
|
__props__.__dict__["max_duration_in_minutes"] = max_duration_in_minutes
|
1416
1453
|
__props__.__dict__["metastore_id"] = metastore_id
|
1417
1454
|
__props__.__dict__["num_executors"] = num_executors
|
1455
|
+
__props__.__dict__["opc_parent_rpt_url"] = opc_parent_rpt_url
|
1418
1456
|
__props__.__dict__["parameters"] = parameters
|
1419
1457
|
__props__.__dict__["pool_id"] = pool_id
|
1420
1458
|
__props__.__dict__["spark_version"] = spark_version
|
@@ -1475,6 +1513,7 @@ class InvokeRun(pulumi.CustomResource):
|
|
1475
1513
|
max_duration_in_minutes: Optional[pulumi.Input[str]] = None,
|
1476
1514
|
metastore_id: Optional[pulumi.Input[str]] = None,
|
1477
1515
|
num_executors: Optional[pulumi.Input[int]] = None,
|
1516
|
+
opc_parent_rpt_url: Optional[pulumi.Input[str]] = None,
|
1478
1517
|
opc_request_id: Optional[pulumi.Input[str]] = None,
|
1479
1518
|
owner_principal_id: Optional[pulumi.Input[str]] = None,
|
1480
1519
|
owner_user_name: Optional[pulumi.Input[str]] = None,
|
@@ -1525,6 +1564,7 @@ class InvokeRun(pulumi.CustomResource):
|
|
1525
1564
|
:param pulumi.Input[str] max_duration_in_minutes: (Updatable) The maximum duration in minutes for which an Application should run. Data Flow Run would be terminated once it reaches this duration from the time it transitions to `IN_PROGRESS` state.
|
1526
1565
|
:param pulumi.Input[str] metastore_id: The OCID of Oracle Cloud Infrastructure Hive Metastore.
|
1527
1566
|
:param pulumi.Input[int] num_executors: The number of executor VMs requested.
|
1567
|
+
:param pulumi.Input[str] opc_parent_rpt_url: (Optional header param, required for Resource Principal version 3.0+) Parent resource control plane endpoint used to exchange for upper level resource principal token.
|
1528
1568
|
:param pulumi.Input[str] opc_request_id: Unique Oracle assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
|
1529
1569
|
:param pulumi.Input[str] owner_principal_id: The OCID of the user who created the resource.
|
1530
1570
|
:param pulumi.Input[str] owner_user_name: The username of the user who created the resource. If the username of the owner does not exist, `null` will be returned and the caller should refer to the ownerPrincipalId value instead.
|
@@ -1578,6 +1618,7 @@ class InvokeRun(pulumi.CustomResource):
|
|
1578
1618
|
__props__.__dict__["max_duration_in_minutes"] = max_duration_in_minutes
|
1579
1619
|
__props__.__dict__["metastore_id"] = metastore_id
|
1580
1620
|
__props__.__dict__["num_executors"] = num_executors
|
1621
|
+
__props__.__dict__["opc_parent_rpt_url"] = opc_parent_rpt_url
|
1581
1622
|
__props__.__dict__["opc_request_id"] = opc_request_id
|
1582
1623
|
__props__.__dict__["owner_principal_id"] = owner_principal_id
|
1583
1624
|
__props__.__dict__["owner_user_name"] = owner_user_name
|
@@ -1803,6 +1844,14 @@ class InvokeRun(pulumi.CustomResource):
|
|
1803
1844
|
"""
|
1804
1845
|
return pulumi.get(self, "num_executors")
|
1805
1846
|
|
1847
|
+
@property
|
1848
|
+
@pulumi.getter(name="opcParentRptUrl")
|
1849
|
+
def opc_parent_rpt_url(self) -> pulumi.Output[str]:
|
1850
|
+
"""
|
1851
|
+
(Optional header param, required for Resource Principal version 3.0+) Parent resource control plane endpoint used to exchange for upper level resource principal token.
|
1852
|
+
"""
|
1853
|
+
return pulumi.get(self, "opc_parent_rpt_url")
|
1854
|
+
|
1806
1855
|
@property
|
1807
1856
|
@pulumi.getter(name="opcRequestId")
|
1808
1857
|
def opc_request_id(self) -> pulumi.Output[str]:
|
pulumi_oci/dataflow/outputs.py
CHANGED
@@ -2027,6 +2027,7 @@ class GetInvokeRunsRunResult(dict):
|
|
2027
2027
|
max_duration_in_minutes: str,
|
2028
2028
|
metastore_id: str,
|
2029
2029
|
num_executors: int,
|
2030
|
+
opc_parent_rpt_url: str,
|
2030
2031
|
opc_request_id: str,
|
2031
2032
|
owner_principal_id: str,
|
2032
2033
|
owner_user_name: str,
|
@@ -2118,6 +2119,7 @@ class GetInvokeRunsRunResult(dict):
|
|
2118
2119
|
pulumi.set(__self__, "max_duration_in_minutes", max_duration_in_minutes)
|
2119
2120
|
pulumi.set(__self__, "metastore_id", metastore_id)
|
2120
2121
|
pulumi.set(__self__, "num_executors", num_executors)
|
2122
|
+
pulumi.set(__self__, "opc_parent_rpt_url", opc_parent_rpt_url)
|
2121
2123
|
pulumi.set(__self__, "opc_request_id", opc_request_id)
|
2122
2124
|
pulumi.set(__self__, "owner_principal_id", owner_principal_id)
|
2123
2125
|
pulumi.set(__self__, "owner_user_name", owner_user_name)
|
@@ -2350,6 +2352,11 @@ class GetInvokeRunsRunResult(dict):
|
|
2350
2352
|
"""
|
2351
2353
|
return pulumi.get(self, "num_executors")
|
2352
2354
|
|
2355
|
+
@property
|
2356
|
+
@pulumi.getter(name="opcParentRptUrl")
|
2357
|
+
def opc_parent_rpt_url(self) -> str:
|
2358
|
+
return pulumi.get(self, "opc_parent_rpt_url")
|
2359
|
+
|
2353
2360
|
@property
|
2354
2361
|
@pulumi.getter(name="opcRequestId")
|
2355
2362
|
def opc_request_id(self) -> str:
|