pulumi-oci 2.19.0a1733984857__py3-none-any.whl → 2.19.0a1734003732__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 +40 -0
- pulumi_oci/database/autonomous_container_database.py +47 -0
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/get_autonomous_container_database.py +15 -1
- pulumi_oci/database/get_autonomous_database.py +15 -1
- pulumi_oci/database/outputs.py +14 -0
- pulumi_oci/dataflow/application.py +75 -33
- pulumi_oci/dataflow/get_application.py +15 -1
- pulumi_oci/dataflow/outputs.py +7 -0
- pulumi_oci/desktops/_inputs.py +9 -9
- pulumi_oci/desktops/desktop_pool.py +84 -35
- pulumi_oci/desktops/get_desktop_pool.py +12 -1
- pulumi_oci/desktops/outputs.py +13 -6
- pulumi_oci/disasterrecovery/_inputs.py +46 -30
- pulumi_oci/disasterrecovery/dr_plan.py +194 -23
- pulumi_oci/disasterrecovery/get_dr_plan.py +54 -4
- pulumi_oci/disasterrecovery/get_dr_plans.py +23 -1
- pulumi_oci/disasterrecovery/outputs.py +113 -21
- pulumi_oci/fleetappsmanagement/__init__.py +19 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +5334 -378
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +830 -0
- pulumi_oci/fleetappsmanagement/fleet.py +112 -67
- pulumi_oci/fleetappsmanagement/fleet_credential.py +44 -36
- pulumi_oci/fleetappsmanagement/fleet_property.py +35 -35
- pulumi_oci/fleetappsmanagement/fleet_resource.py +37 -37
- pulumi_oci/fleetappsmanagement/get_announcements.py +4 -4
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +199 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +253 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +324 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +243 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +144 -0
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +279 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +29 -15
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +8 -8
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +7 -7
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +61 -17
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +6 -6
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +8 -8
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +11 -11
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +11 -11
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +10 -10
- pulumi_oci/fleetappsmanagement/get_fleet_targets.py +8 -8
- pulumi_oci/fleetappsmanagement/get_fleets.py +16 -16
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +12 -12
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +8 -8
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +31 -12
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +144 -0
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +2 -2
- pulumi_oci/fleetappsmanagement/get_onboardings.py +2 -2
- pulumi_oci/fleetappsmanagement/get_patch.py +363 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +335 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +296 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +221 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +9 -9
- pulumi_oci/fleetappsmanagement/get_property.py +4 -4
- pulumi_oci/fleetappsmanagement/get_runbook.py +8 -8
- pulumi_oci/fleetappsmanagement/get_runbooks.py +16 -16
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +10 -10
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +2 -2
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +33 -11
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +144 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_resources.py +245 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +245 -0
- pulumi_oci/fleetappsmanagement/get_task_record.py +3 -3
- pulumi_oci/fleetappsmanagement/maintenance_window.py +44 -44
- pulumi_oci/fleetappsmanagement/onboarding.py +108 -20
- pulumi_oci/fleetappsmanagement/outputs.py +11222 -2736
- pulumi_oci/fleetappsmanagement/patch.py +978 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +687 -0
- pulumi_oci/fleetappsmanagement/property.py +27 -27
- pulumi_oci/fleetappsmanagement/runbook.py +1173 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +30 -30
- pulumi_oci/fleetappsmanagement/task_record.py +754 -0
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +28 -0
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +56 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +15 -1
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +29 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +33 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/visualbuilder/_inputs.py +57 -202
- pulumi_oci/visualbuilder/get_vb_instance.py +15 -29
- pulumi_oci/visualbuilder/outputs.py +114 -400
- pulumi_oci/visualbuilder/vb_instance.py +62 -59
- {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/METADATA +1 -1
- {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/RECORD +87 -68
- {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/top_level.txt +0 -0
@@ -47,6 +47,7 @@ class ApplicationArgs:
|
|
47
47
|
parameters: Optional[pulumi.Input[Sequence[pulumi.Input['ApplicationParameterArgs']]]] = None,
|
48
48
|
pool_id: Optional[pulumi.Input[str]] = None,
|
49
49
|
private_endpoint_id: Optional[pulumi.Input[str]] = None,
|
50
|
+
terminate_runs_on_deletion: Optional[pulumi.Input[bool]] = None,
|
50
51
|
type: Optional[pulumi.Input[str]] = None,
|
51
52
|
warehouse_bucket_uri: Optional[pulumi.Input[str]] = None):
|
52
53
|
"""
|
@@ -77,12 +78,12 @@ class ApplicationArgs:
|
|
77
78
|
:param pulumi.Input[Sequence[pulumi.Input['ApplicationParameterArgs']]] parameters: (Updatable) 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}"} ]
|
78
79
|
:param pulumi.Input[str] pool_id: (Updatable) The OCID of a pool. Unique Id to indentify a dataflow pool resource.
|
79
80
|
:param pulumi.Input[str] private_endpoint_id: (Updatable) The OCID of a private endpoint.
|
80
|
-
:param pulumi.Input[
|
81
|
-
:param pulumi.Input[str] warehouse_bucket_uri: (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
|
82
|
-
|
81
|
+
:param pulumi.Input[bool] terminate_runs_on_deletion: A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not.
|
83
82
|
|
84
83
|
** IMPORTANT **
|
85
84
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
85
|
+
:param pulumi.Input[str] type: The Spark application processing type.
|
86
|
+
:param pulumi.Input[str] warehouse_bucket_uri: (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
|
86
87
|
"""
|
87
88
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
88
89
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -129,6 +130,8 @@ class ApplicationArgs:
|
|
129
130
|
pulumi.set(__self__, "pool_id", pool_id)
|
130
131
|
if private_endpoint_id is not None:
|
131
132
|
pulumi.set(__self__, "private_endpoint_id", private_endpoint_id)
|
133
|
+
if terminate_runs_on_deletion is not None:
|
134
|
+
pulumi.set(__self__, "terminate_runs_on_deletion", terminate_runs_on_deletion)
|
132
135
|
if type is not None:
|
133
136
|
pulumi.set(__self__, "type", type)
|
134
137
|
if warehouse_bucket_uri is not None:
|
@@ -446,6 +449,21 @@ class ApplicationArgs:
|
|
446
449
|
def private_endpoint_id(self, value: Optional[pulumi.Input[str]]):
|
447
450
|
pulumi.set(self, "private_endpoint_id", value)
|
448
451
|
|
452
|
+
@property
|
453
|
+
@pulumi.getter(name="terminateRunsOnDeletion")
|
454
|
+
def terminate_runs_on_deletion(self) -> Optional[pulumi.Input[bool]]:
|
455
|
+
"""
|
456
|
+
A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not.
|
457
|
+
|
458
|
+
** IMPORTANT **
|
459
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
460
|
+
"""
|
461
|
+
return pulumi.get(self, "terminate_runs_on_deletion")
|
462
|
+
|
463
|
+
@terminate_runs_on_deletion.setter
|
464
|
+
def terminate_runs_on_deletion(self, value: Optional[pulumi.Input[bool]]):
|
465
|
+
pulumi.set(self, "terminate_runs_on_deletion", value)
|
466
|
+
|
449
467
|
@property
|
450
468
|
@pulumi.getter
|
451
469
|
def type(self) -> Optional[pulumi.Input[str]]:
|
@@ -462,11 +480,7 @@ class ApplicationArgs:
|
|
462
480
|
@pulumi.getter(name="warehouseBucketUri")
|
463
481
|
def warehouse_bucket_uri(self) -> Optional[pulumi.Input[str]]:
|
464
482
|
"""
|
465
|
-
(Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
|
466
|
-
|
467
|
-
|
468
|
-
** IMPORTANT **
|
469
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
483
|
+
(Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
|
470
484
|
"""
|
471
485
|
return pulumi.get(self, "warehouse_bucket_uri")
|
472
486
|
|
@@ -507,6 +521,7 @@ class _ApplicationState:
|
|
507
521
|
private_endpoint_id: Optional[pulumi.Input[str]] = None,
|
508
522
|
spark_version: Optional[pulumi.Input[str]] = None,
|
509
523
|
state: Optional[pulumi.Input[str]] = None,
|
524
|
+
terminate_runs_on_deletion: Optional[pulumi.Input[bool]] = None,
|
510
525
|
time_created: Optional[pulumi.Input[str]] = None,
|
511
526
|
time_updated: Optional[pulumi.Input[str]] = None,
|
512
527
|
type: Optional[pulumi.Input[str]] = None,
|
@@ -542,14 +557,14 @@ class _ApplicationState:
|
|
542
557
|
:param pulumi.Input[str] private_endpoint_id: (Updatable) The OCID of a private endpoint.
|
543
558
|
:param pulumi.Input[str] spark_version: (Updatable) The Spark version utilized to run the application.
|
544
559
|
:param pulumi.Input[str] state: The current state of this application.
|
545
|
-
:param pulumi.Input[
|
546
|
-
:param pulumi.Input[str] time_updated: The date and time the resource was updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
|
547
|
-
:param pulumi.Input[str] type: The Spark application processing type.
|
548
|
-
:param pulumi.Input[str] warehouse_bucket_uri: (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
|
549
|
-
|
560
|
+
:param pulumi.Input[bool] terminate_runs_on_deletion: A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not.
|
550
561
|
|
551
562
|
** IMPORTANT **
|
552
563
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
564
|
+
:param pulumi.Input[str] time_created: The date and time the resource was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
|
565
|
+
:param pulumi.Input[str] time_updated: The date and time the resource was updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
|
566
|
+
:param pulumi.Input[str] type: The Spark application processing type.
|
567
|
+
:param pulumi.Input[str] warehouse_bucket_uri: (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
|
553
568
|
"""
|
554
569
|
if application_log_config is not None:
|
555
570
|
pulumi.set(__self__, "application_log_config", application_log_config)
|
@@ -609,6 +624,8 @@ class _ApplicationState:
|
|
609
624
|
pulumi.set(__self__, "spark_version", spark_version)
|
610
625
|
if state is not None:
|
611
626
|
pulumi.set(__self__, "state", state)
|
627
|
+
if terminate_runs_on_deletion is not None:
|
628
|
+
pulumi.set(__self__, "terminate_runs_on_deletion", terminate_runs_on_deletion)
|
612
629
|
if time_created is not None:
|
613
630
|
pulumi.set(__self__, "time_created", time_created)
|
614
631
|
if time_updated is not None:
|
@@ -966,6 +983,21 @@ class _ApplicationState:
|
|
966
983
|
def state(self, value: Optional[pulumi.Input[str]]):
|
967
984
|
pulumi.set(self, "state", value)
|
968
985
|
|
986
|
+
@property
|
987
|
+
@pulumi.getter(name="terminateRunsOnDeletion")
|
988
|
+
def terminate_runs_on_deletion(self) -> Optional[pulumi.Input[bool]]:
|
989
|
+
"""
|
990
|
+
A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not.
|
991
|
+
|
992
|
+
** IMPORTANT **
|
993
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
994
|
+
"""
|
995
|
+
return pulumi.get(self, "terminate_runs_on_deletion")
|
996
|
+
|
997
|
+
@terminate_runs_on_deletion.setter
|
998
|
+
def terminate_runs_on_deletion(self, value: Optional[pulumi.Input[bool]]):
|
999
|
+
pulumi.set(self, "terminate_runs_on_deletion", value)
|
1000
|
+
|
969
1001
|
@property
|
970
1002
|
@pulumi.getter(name="timeCreated")
|
971
1003
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -1006,11 +1038,7 @@ class _ApplicationState:
|
|
1006
1038
|
@pulumi.getter(name="warehouseBucketUri")
|
1007
1039
|
def warehouse_bucket_uri(self) -> Optional[pulumi.Input[str]]:
|
1008
1040
|
"""
|
1009
|
-
(Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
|
1010
|
-
|
1011
|
-
|
1012
|
-
** IMPORTANT **
|
1013
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1041
|
+
(Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
|
1014
1042
|
"""
|
1015
1043
|
return pulumi.get(self, "warehouse_bucket_uri")
|
1016
1044
|
|
@@ -1050,6 +1078,7 @@ class Application(pulumi.CustomResource):
|
|
1050
1078
|
pool_id: Optional[pulumi.Input[str]] = None,
|
1051
1079
|
private_endpoint_id: Optional[pulumi.Input[str]] = None,
|
1052
1080
|
spark_version: Optional[pulumi.Input[str]] = None,
|
1081
|
+
terminate_runs_on_deletion: Optional[pulumi.Input[bool]] = None,
|
1053
1082
|
type: Optional[pulumi.Input[str]] = None,
|
1054
1083
|
warehouse_bucket_uri: Optional[pulumi.Input[str]] = None,
|
1055
1084
|
__props__=None):
|
@@ -1108,7 +1137,8 @@ class Application(pulumi.CustomResource):
|
|
1108
1137
|
pool_id=test_pool["id"],
|
1109
1138
|
private_endpoint_id=test_private_endpoint["id"],
|
1110
1139
|
type=application_type,
|
1111
|
-
warehouse_bucket_uri=application_warehouse_bucket_uri
|
1140
|
+
warehouse_bucket_uri=application_warehouse_bucket_uri,
|
1141
|
+
terminate_runs_on_deletion=True)
|
1112
1142
|
```
|
1113
1143
|
|
1114
1144
|
## Import
|
@@ -1147,12 +1177,12 @@ class Application(pulumi.CustomResource):
|
|
1147
1177
|
:param pulumi.Input[str] pool_id: (Updatable) The OCID of a pool. Unique Id to indentify a dataflow pool resource.
|
1148
1178
|
:param pulumi.Input[str] private_endpoint_id: (Updatable) The OCID of a private endpoint.
|
1149
1179
|
:param pulumi.Input[str] spark_version: (Updatable) The Spark version utilized to run the application.
|
1150
|
-
:param pulumi.Input[
|
1151
|
-
:param pulumi.Input[str] warehouse_bucket_uri: (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
|
1152
|
-
|
1180
|
+
:param pulumi.Input[bool] terminate_runs_on_deletion: A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not.
|
1153
1181
|
|
1154
1182
|
** IMPORTANT **
|
1155
1183
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1184
|
+
:param pulumi.Input[str] type: The Spark application processing type.
|
1185
|
+
:param pulumi.Input[str] warehouse_bucket_uri: (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
|
1156
1186
|
"""
|
1157
1187
|
...
|
1158
1188
|
@overload
|
@@ -1215,7 +1245,8 @@ class Application(pulumi.CustomResource):
|
|
1215
1245
|
pool_id=test_pool["id"],
|
1216
1246
|
private_endpoint_id=test_private_endpoint["id"],
|
1217
1247
|
type=application_type,
|
1218
|
-
warehouse_bucket_uri=application_warehouse_bucket_uri
|
1248
|
+
warehouse_bucket_uri=application_warehouse_bucket_uri,
|
1249
|
+
terminate_runs_on_deletion=True)
|
1219
1250
|
```
|
1220
1251
|
|
1221
1252
|
## Import
|
@@ -1267,6 +1298,7 @@ class Application(pulumi.CustomResource):
|
|
1267
1298
|
pool_id: Optional[pulumi.Input[str]] = None,
|
1268
1299
|
private_endpoint_id: Optional[pulumi.Input[str]] = None,
|
1269
1300
|
spark_version: Optional[pulumi.Input[str]] = None,
|
1301
|
+
terminate_runs_on_deletion: Optional[pulumi.Input[bool]] = None,
|
1270
1302
|
type: Optional[pulumi.Input[str]] = None,
|
1271
1303
|
warehouse_bucket_uri: Optional[pulumi.Input[str]] = None,
|
1272
1304
|
__props__=None):
|
@@ -1318,6 +1350,7 @@ class Application(pulumi.CustomResource):
|
|
1318
1350
|
if spark_version is None and not opts.urn:
|
1319
1351
|
raise TypeError("Missing required property 'spark_version'")
|
1320
1352
|
__props__.__dict__["spark_version"] = spark_version
|
1353
|
+
__props__.__dict__["terminate_runs_on_deletion"] = terminate_runs_on_deletion
|
1321
1354
|
__props__.__dict__["type"] = type
|
1322
1355
|
__props__.__dict__["warehouse_bucket_uri"] = warehouse_bucket_uri
|
1323
1356
|
__props__.__dict__["owner_principal_id"] = None
|
@@ -1364,6 +1397,7 @@ class Application(pulumi.CustomResource):
|
|
1364
1397
|
private_endpoint_id: Optional[pulumi.Input[str]] = None,
|
1365
1398
|
spark_version: Optional[pulumi.Input[str]] = None,
|
1366
1399
|
state: Optional[pulumi.Input[str]] = None,
|
1400
|
+
terminate_runs_on_deletion: Optional[pulumi.Input[bool]] = None,
|
1367
1401
|
time_created: Optional[pulumi.Input[str]] = None,
|
1368
1402
|
time_updated: Optional[pulumi.Input[str]] = None,
|
1369
1403
|
type: Optional[pulumi.Input[str]] = None,
|
@@ -1404,14 +1438,14 @@ class Application(pulumi.CustomResource):
|
|
1404
1438
|
:param pulumi.Input[str] private_endpoint_id: (Updatable) The OCID of a private endpoint.
|
1405
1439
|
:param pulumi.Input[str] spark_version: (Updatable) The Spark version utilized to run the application.
|
1406
1440
|
:param pulumi.Input[str] state: The current state of this application.
|
1407
|
-
:param pulumi.Input[
|
1408
|
-
:param pulumi.Input[str] time_updated: The date and time the resource was updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
|
1409
|
-
:param pulumi.Input[str] type: The Spark application processing type.
|
1410
|
-
:param pulumi.Input[str] warehouse_bucket_uri: (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
|
1411
|
-
|
1441
|
+
:param pulumi.Input[bool] terminate_runs_on_deletion: A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not.
|
1412
1442
|
|
1413
1443
|
** IMPORTANT **
|
1414
1444
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1445
|
+
:param pulumi.Input[str] time_created: The date and time the resource was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
|
1446
|
+
:param pulumi.Input[str] time_updated: The date and time the resource was updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
|
1447
|
+
:param pulumi.Input[str] type: The Spark application processing type.
|
1448
|
+
:param pulumi.Input[str] warehouse_bucket_uri: (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
|
1415
1449
|
"""
|
1416
1450
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
1417
1451
|
|
@@ -1446,6 +1480,7 @@ class Application(pulumi.CustomResource):
|
|
1446
1480
|
__props__.__dict__["private_endpoint_id"] = private_endpoint_id
|
1447
1481
|
__props__.__dict__["spark_version"] = spark_version
|
1448
1482
|
__props__.__dict__["state"] = state
|
1483
|
+
__props__.__dict__["terminate_runs_on_deletion"] = terminate_runs_on_deletion
|
1449
1484
|
__props__.__dict__["time_created"] = time_created
|
1450
1485
|
__props__.__dict__["time_updated"] = time_updated
|
1451
1486
|
__props__.__dict__["type"] = type
|
@@ -1684,6 +1719,17 @@ class Application(pulumi.CustomResource):
|
|
1684
1719
|
"""
|
1685
1720
|
return pulumi.get(self, "state")
|
1686
1721
|
|
1722
|
+
@property
|
1723
|
+
@pulumi.getter(name="terminateRunsOnDeletion")
|
1724
|
+
def terminate_runs_on_deletion(self) -> pulumi.Output[Optional[bool]]:
|
1725
|
+
"""
|
1726
|
+
A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not.
|
1727
|
+
|
1728
|
+
** IMPORTANT **
|
1729
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1730
|
+
"""
|
1731
|
+
return pulumi.get(self, "terminate_runs_on_deletion")
|
1732
|
+
|
1687
1733
|
@property
|
1688
1734
|
@pulumi.getter(name="timeCreated")
|
1689
1735
|
def time_created(self) -> pulumi.Output[str]:
|
@@ -1712,11 +1758,7 @@ class Application(pulumi.CustomResource):
|
|
1712
1758
|
@pulumi.getter(name="warehouseBucketUri")
|
1713
1759
|
def warehouse_bucket_uri(self) -> pulumi.Output[str]:
|
1714
1760
|
"""
|
1715
|
-
(Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
|
1716
|
-
|
1717
|
-
|
1718
|
-
** IMPORTANT **
|
1719
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1761
|
+
(Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
|
1720
1762
|
"""
|
1721
1763
|
return pulumi.get(self, "warehouse_bucket_uri")
|
1722
1764
|
|
@@ -27,7 +27,7 @@ class GetApplicationResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getApplication.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, application_id=None, application_log_configs=None, archive_uri=None, arguments=None, class_name=None, compartment_id=None, configuration=None, defined_tags=None, description=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, logs_bucket_uri=None, max_duration_in_minutes=None, metastore_id=None, num_executors=None, owner_principal_id=None, owner_user_name=None, parameters=None, pool_id=None, private_endpoint_id=None, spark_version=None, state=None, time_created=None, time_updated=None, type=None, warehouse_bucket_uri=None):
|
30
|
+
def __init__(__self__, application_id=None, application_log_configs=None, archive_uri=None, arguments=None, class_name=None, compartment_id=None, configuration=None, defined_tags=None, description=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, logs_bucket_uri=None, max_duration_in_minutes=None, metastore_id=None, num_executors=None, owner_principal_id=None, owner_user_name=None, parameters=None, pool_id=None, private_endpoint_id=None, spark_version=None, state=None, terminate_runs_on_deletion=None, time_created=None, time_updated=None, type=None, warehouse_bucket_uri=None):
|
31
31
|
if application_id and not isinstance(application_id, str):
|
32
32
|
raise TypeError("Expected argument 'application_id' to be a str")
|
33
33
|
pulumi.set(__self__, "application_id", application_id)
|
@@ -121,6 +121,9 @@ class GetApplicationResult:
|
|
121
121
|
if state and not isinstance(state, str):
|
122
122
|
raise TypeError("Expected argument 'state' to be a str")
|
123
123
|
pulumi.set(__self__, "state", state)
|
124
|
+
if terminate_runs_on_deletion and not isinstance(terminate_runs_on_deletion, bool):
|
125
|
+
raise TypeError("Expected argument 'terminate_runs_on_deletion' to be a bool")
|
126
|
+
pulumi.set(__self__, "terminate_runs_on_deletion", terminate_runs_on_deletion)
|
124
127
|
if time_created and not isinstance(time_created, str):
|
125
128
|
raise TypeError("Expected argument 'time_created' to be a str")
|
126
129
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -379,6 +382,14 @@ class GetApplicationResult:
|
|
379
382
|
"""
|
380
383
|
return pulumi.get(self, "state")
|
381
384
|
|
385
|
+
@property
|
386
|
+
@pulumi.getter(name="terminateRunsOnDeletion")
|
387
|
+
def terminate_runs_on_deletion(self) -> bool:
|
388
|
+
"""
|
389
|
+
A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not.
|
390
|
+
"""
|
391
|
+
return pulumi.get(self, "terminate_runs_on_deletion")
|
392
|
+
|
382
393
|
@property
|
383
394
|
@pulumi.getter(name="timeCreated")
|
384
395
|
def time_created(self) -> str:
|
@@ -449,6 +460,7 @@ class AwaitableGetApplicationResult(GetApplicationResult):
|
|
449
460
|
private_endpoint_id=self.private_endpoint_id,
|
450
461
|
spark_version=self.spark_version,
|
451
462
|
state=self.state,
|
463
|
+
terminate_runs_on_deletion=self.terminate_runs_on_deletion,
|
452
464
|
time_created=self.time_created,
|
453
465
|
time_updated=self.time_updated,
|
454
466
|
type=self.type,
|
@@ -511,6 +523,7 @@ def get_application(application_id: Optional[str] = None,
|
|
511
523
|
private_endpoint_id=pulumi.get(__ret__, 'private_endpoint_id'),
|
512
524
|
spark_version=pulumi.get(__ret__, 'spark_version'),
|
513
525
|
state=pulumi.get(__ret__, 'state'),
|
526
|
+
terminate_runs_on_deletion=pulumi.get(__ret__, 'terminate_runs_on_deletion'),
|
514
527
|
time_created=pulumi.get(__ret__, 'time_created'),
|
515
528
|
time_updated=pulumi.get(__ret__, 'time_updated'),
|
516
529
|
type=pulumi.get(__ret__, 'type'),
|
@@ -570,6 +583,7 @@ def get_application_output(application_id: Optional[pulumi.Input[str]] = None,
|
|
570
583
|
private_endpoint_id=pulumi.get(__response__, 'private_endpoint_id'),
|
571
584
|
spark_version=pulumi.get(__response__, 'spark_version'),
|
572
585
|
state=pulumi.get(__response__, 'state'),
|
586
|
+
terminate_runs_on_deletion=pulumi.get(__response__, 'terminate_runs_on_deletion'),
|
573
587
|
time_created=pulumi.get(__response__, 'time_created'),
|
574
588
|
time_updated=pulumi.get(__response__, 'time_updated'),
|
575
589
|
type=pulumi.get(__response__, 'type'),
|
pulumi_oci/dataflow/outputs.py
CHANGED
@@ -1356,6 +1356,7 @@ class GetApplicationsApplicationResult(dict):
|
|
1356
1356
|
private_endpoint_id: str,
|
1357
1357
|
spark_version: str,
|
1358
1358
|
state: str,
|
1359
|
+
terminate_runs_on_deletion: bool,
|
1359
1360
|
time_created: str,
|
1360
1361
|
time_updated: str,
|
1361
1362
|
type: str,
|
@@ -1426,6 +1427,7 @@ class GetApplicationsApplicationResult(dict):
|
|
1426
1427
|
pulumi.set(__self__, "private_endpoint_id", private_endpoint_id)
|
1427
1428
|
pulumi.set(__self__, "spark_version", spark_version)
|
1428
1429
|
pulumi.set(__self__, "state", state)
|
1430
|
+
pulumi.set(__self__, "terminate_runs_on_deletion", terminate_runs_on_deletion)
|
1429
1431
|
pulumi.set(__self__, "time_created", time_created)
|
1430
1432
|
pulumi.set(__self__, "time_updated", time_updated)
|
1431
1433
|
pulumi.set(__self__, "type", type)
|
@@ -1671,6 +1673,11 @@ class GetApplicationsApplicationResult(dict):
|
|
1671
1673
|
"""
|
1672
1674
|
return pulumi.get(self, "state")
|
1673
1675
|
|
1676
|
+
@property
|
1677
|
+
@pulumi.getter(name="terminateRunsOnDeletion")
|
1678
|
+
def terminate_runs_on_deletion(self) -> bool:
|
1679
|
+
return pulumi.get(self, "terminate_runs_on_deletion")
|
1680
|
+
|
1674
1681
|
@property
|
1675
1682
|
@pulumi.getter(name="timeCreated")
|
1676
1683
|
def time_created(self) -> str:
|
pulumi_oci/desktops/_inputs.py
CHANGED
@@ -581,7 +581,7 @@ if not MYPY:
|
|
581
581
|
class DesktopPoolSessionLifecycleActionsArgsDict(TypedDict):
|
582
582
|
disconnect: NotRequired[pulumi.Input['DesktopPoolSessionLifecycleActionsDisconnectArgsDict']]
|
583
583
|
"""
|
584
|
-
(Updatable) Action and grace period for disconnect
|
584
|
+
(Updatable) Action and grace period for disconnect. Session disconnect can not be used together with an `availability_policy` schedule.
|
585
585
|
"""
|
586
586
|
inactivity: NotRequired[pulumi.Input['DesktopPoolSessionLifecycleActionsInactivityArgsDict']]
|
587
587
|
"""
|
@@ -596,7 +596,7 @@ class DesktopPoolSessionLifecycleActionsArgs:
|
|
596
596
|
disconnect: Optional[pulumi.Input['DesktopPoolSessionLifecycleActionsDisconnectArgs']] = None,
|
597
597
|
inactivity: Optional[pulumi.Input['DesktopPoolSessionLifecycleActionsInactivityArgs']] = None):
|
598
598
|
"""
|
599
|
-
:param pulumi.Input['DesktopPoolSessionLifecycleActionsDisconnectArgs'] disconnect: (Updatable) Action and grace period for disconnect
|
599
|
+
:param pulumi.Input['DesktopPoolSessionLifecycleActionsDisconnectArgs'] disconnect: (Updatable) Action and grace period for disconnect. Session disconnect can not be used together with an `availability_policy` schedule.
|
600
600
|
:param pulumi.Input['DesktopPoolSessionLifecycleActionsInactivityArgs'] inactivity: (Updatable) Action and grace period for inactivity
|
601
601
|
"""
|
602
602
|
if disconnect is not None:
|
@@ -608,7 +608,7 @@ class DesktopPoolSessionLifecycleActionsArgs:
|
|
608
608
|
@pulumi.getter
|
609
609
|
def disconnect(self) -> Optional[pulumi.Input['DesktopPoolSessionLifecycleActionsDisconnectArgs']]:
|
610
610
|
"""
|
611
|
-
(Updatable) Action and grace period for disconnect
|
611
|
+
(Updatable) Action and grace period for disconnect. Session disconnect can not be used together with an `availability_policy` schedule.
|
612
612
|
"""
|
613
613
|
return pulumi.get(self, "disconnect")
|
614
614
|
|
@@ -633,7 +633,7 @@ if not MYPY:
|
|
633
633
|
class DesktopPoolSessionLifecycleActionsDisconnectArgsDict(TypedDict):
|
634
634
|
action: pulumi.Input[str]
|
635
635
|
"""
|
636
|
-
(Updatable) a disconnect action to be triggered
|
636
|
+
(Updatable) a disconnect action to be triggered. Could be set to NONE or STOP
|
637
637
|
"""
|
638
638
|
grace_period_in_minutes: NotRequired[pulumi.Input[int]]
|
639
639
|
"""
|
@@ -648,7 +648,7 @@ class DesktopPoolSessionLifecycleActionsDisconnectArgs:
|
|
648
648
|
action: pulumi.Input[str],
|
649
649
|
grace_period_in_minutes: Optional[pulumi.Input[int]] = None):
|
650
650
|
"""
|
651
|
-
:param pulumi.Input[str] action: (Updatable) a disconnect action to be triggered
|
651
|
+
:param pulumi.Input[str] action: (Updatable) a disconnect action to be triggered. Could be set to NONE or STOP
|
652
652
|
:param pulumi.Input[int] grace_period_in_minutes: (Updatable) The period of time (in minutes) after disconnect before any action occurs. If the value is not provided, a default value is used.
|
653
653
|
"""
|
654
654
|
pulumi.set(__self__, "action", action)
|
@@ -659,7 +659,7 @@ class DesktopPoolSessionLifecycleActionsDisconnectArgs:
|
|
659
659
|
@pulumi.getter
|
660
660
|
def action(self) -> pulumi.Input[str]:
|
661
661
|
"""
|
662
|
-
(Updatable) a disconnect action to be triggered
|
662
|
+
(Updatable) a disconnect action to be triggered. Could be set to NONE or STOP
|
663
663
|
"""
|
664
664
|
return pulumi.get(self, "action")
|
665
665
|
|
@@ -684,7 +684,7 @@ if not MYPY:
|
|
684
684
|
class DesktopPoolSessionLifecycleActionsInactivityArgsDict(TypedDict):
|
685
685
|
action: pulumi.Input[str]
|
686
686
|
"""
|
687
|
-
(Updatable) an inactivity action to be triggered
|
687
|
+
(Updatable) an inactivity action to be triggered. Could be set to NONE or DISCONNECT.
|
688
688
|
"""
|
689
689
|
grace_period_in_minutes: NotRequired[pulumi.Input[int]]
|
690
690
|
"""
|
@@ -699,7 +699,7 @@ class DesktopPoolSessionLifecycleActionsInactivityArgs:
|
|
699
699
|
action: pulumi.Input[str],
|
700
700
|
grace_period_in_minutes: Optional[pulumi.Input[int]] = None):
|
701
701
|
"""
|
702
|
-
:param pulumi.Input[str] action: (Updatable) an inactivity action to be triggered
|
702
|
+
:param pulumi.Input[str] action: (Updatable) an inactivity action to be triggered. Could be set to NONE or DISCONNECT.
|
703
703
|
:param pulumi.Input[int] grace_period_in_minutes: (Updatable) The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
|
704
704
|
"""
|
705
705
|
pulumi.set(__self__, "action", action)
|
@@ -710,7 +710,7 @@ class DesktopPoolSessionLifecycleActionsInactivityArgs:
|
|
710
710
|
@pulumi.getter
|
711
711
|
def action(self) -> pulumi.Input[str]:
|
712
712
|
"""
|
713
|
-
(Updatable) an inactivity action to be triggered
|
713
|
+
(Updatable) an inactivity action to be triggered. Could be set to NONE or DISCONNECT.
|
714
714
|
"""
|
715
715
|
return pulumi.get(self, "action")
|
716
716
|
|