pulumi-oci 2.27.0a1742279484__py3-none-any.whl → 2.27.0a1742444119__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 +144 -0
- pulumi_oci/containerengine/_inputs.py +9 -9
- pulumi_oci/containerengine/outputs.py +18 -22
- pulumi_oci/core/__init__.py +7 -0
- pulumi_oci/core/_inputs.py +147 -0
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/outputs.py +582 -0
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +2211 -24
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- pulumi_oci/database/get_autonomous_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +2747 -225
- pulumi_oci/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -0
- pulumi_oci/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/METADATA +2 -2
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/RECORD +84 -57
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.27.0a1742279484.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/top_level.txt +0 -0
@@ -37,7 +37,8 @@ class ScheduledJobArgs:
|
|
37
37
|
managed_instance_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
38
38
|
managed_instance_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
39
39
|
recurring_rule: Optional[pulumi.Input[str]] = None,
|
40
|
-
retry_intervals: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None
|
40
|
+
retry_intervals: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
|
41
|
+
work_request_id: Optional[pulumi.Input[str]] = None):
|
41
42
|
"""
|
42
43
|
The set of arguments for constructing a ScheduledJob resource.
|
43
44
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the scheduled job.
|
@@ -52,10 +53,6 @@ class ScheduledJobArgs:
|
|
52
53
|
* UPDATE_KSPLICE_KERNEL
|
53
54
|
:param pulumi.Input[str] schedule_type: (Updatable) The type of scheduling frequency for the scheduled job.
|
54
55
|
:param pulumi.Input[str] time_next_execution: (Updatable) The desired time of the next execution of this scheduled job (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
55
|
-
|
56
|
-
|
57
|
-
** IMPORTANT **
|
58
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
59
56
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
60
57
|
:param pulumi.Input[str] description: (Updatable) User-specified description of the scheduled job. Avoid entering confidential information.
|
61
58
|
:param pulumi.Input[str] display_name: (Updatable) User-friendly name for the scheduled job. Does not have to be unique and you can change the name later. Avoid entering confidential information.
|
@@ -69,6 +66,11 @@ class ScheduledJobArgs:
|
|
69
66
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] managed_instance_ids: The managed instance [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) that this scheduled job operates on. A scheduled job can only operate on one type of target, therefore you must supply either this or managedInstanceGroupIds, or managedCompartmentIds, or lifecycleStageIds.
|
70
67
|
:param pulumi.Input[str] recurring_rule: (Updatable) The frequency schedule for a recurring scheduled job.
|
71
68
|
:param pulumi.Input[Sequence[pulumi.Input[int]]] retry_intervals: (Updatable) The amount of time in minutes to wait until retrying the scheduled job. If set, the service will automatically retry a failed scheduled job after the interval. For example, you could set the interval to [2,5,10]. If the initial execution of the job fails, the service waits 2 minutes and then retries. If that fails, the service waits 5 minutes and then retries. If that fails, the service waits 10 minutes and then retries.
|
69
|
+
:param pulumi.Input[str] work_request_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the work request that will be rerun.
|
70
|
+
|
71
|
+
|
72
|
+
** IMPORTANT **
|
73
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
72
74
|
"""
|
73
75
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
74
76
|
pulumi.set(__self__, "operations", operations)
|
@@ -100,6 +102,8 @@ class ScheduledJobArgs:
|
|
100
102
|
pulumi.set(__self__, "recurring_rule", recurring_rule)
|
101
103
|
if retry_intervals is not None:
|
102
104
|
pulumi.set(__self__, "retry_intervals", retry_intervals)
|
105
|
+
if work_request_id is not None:
|
106
|
+
pulumi.set(__self__, "work_request_id", work_request_id)
|
103
107
|
|
104
108
|
@property
|
105
109
|
@pulumi.getter(name="compartmentId")
|
@@ -150,10 +154,6 @@ class ScheduledJobArgs:
|
|
150
154
|
def time_next_execution(self) -> pulumi.Input[str]:
|
151
155
|
"""
|
152
156
|
(Updatable) The desired time of the next execution of this scheduled job (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
153
|
-
|
154
|
-
|
155
|
-
** IMPORTANT **
|
156
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
157
157
|
"""
|
158
158
|
return pulumi.get(self, "time_next_execution")
|
159
159
|
|
@@ -317,6 +317,22 @@ class ScheduledJobArgs:
|
|
317
317
|
def retry_intervals(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]]):
|
318
318
|
pulumi.set(self, "retry_intervals", value)
|
319
319
|
|
320
|
+
@property
|
321
|
+
@pulumi.getter(name="workRequestId")
|
322
|
+
def work_request_id(self) -> Optional[pulumi.Input[str]]:
|
323
|
+
"""
|
324
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the work request that will be rerun.
|
325
|
+
|
326
|
+
|
327
|
+
** IMPORTANT **
|
328
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
329
|
+
"""
|
330
|
+
return pulumi.get(self, "work_request_id")
|
331
|
+
|
332
|
+
@work_request_id.setter
|
333
|
+
def work_request_id(self, value: Optional[pulumi.Input[str]]):
|
334
|
+
pulumi.set(self, "work_request_id", value)
|
335
|
+
|
320
336
|
|
321
337
|
@pulumi.input_type
|
322
338
|
class _ScheduledJobState:
|
@@ -344,6 +360,7 @@ class _ScheduledJobState:
|
|
344
360
|
time_last_execution: Optional[pulumi.Input[str]] = None,
|
345
361
|
time_next_execution: Optional[pulumi.Input[str]] = None,
|
346
362
|
time_updated: Optional[pulumi.Input[str]] = None,
|
363
|
+
work_request_id: Optional[pulumi.Input[str]] = None,
|
347
364
|
work_request_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
348
365
|
"""
|
349
366
|
Input properties used for looking up and filtering ScheduledJob resources.
|
@@ -377,11 +394,12 @@ class _ScheduledJobState:
|
|
377
394
|
:param pulumi.Input[str] time_created: The time this scheduled job was created (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
378
395
|
:param pulumi.Input[str] time_last_execution: The time of the last execution of this scheduled job (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
379
396
|
:param pulumi.Input[str] time_next_execution: (Updatable) The desired time of the next execution of this scheduled job (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
397
|
+
:param pulumi.Input[str] time_updated: The time this scheduled job was updated (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
398
|
+
:param pulumi.Input[str] work_request_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the work request that will be rerun.
|
380
399
|
|
381
400
|
|
382
401
|
** IMPORTANT **
|
383
402
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
384
|
-
:param pulumi.Input[str] time_updated: The time this scheduled job was updated (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
385
403
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] work_request_ids: The list of work request [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this scheduled job.
|
386
404
|
"""
|
387
405
|
if compartment_id is not None:
|
@@ -430,6 +448,8 @@ class _ScheduledJobState:
|
|
430
448
|
pulumi.set(__self__, "time_next_execution", time_next_execution)
|
431
449
|
if time_updated is not None:
|
432
450
|
pulumi.set(__self__, "time_updated", time_updated)
|
451
|
+
if work_request_id is not None:
|
452
|
+
pulumi.set(__self__, "work_request_id", work_request_id)
|
433
453
|
if work_request_ids is not None:
|
434
454
|
pulumi.set(__self__, "work_request_ids", work_request_ids)
|
435
455
|
|
@@ -698,10 +718,6 @@ class _ScheduledJobState:
|
|
698
718
|
def time_next_execution(self) -> Optional[pulumi.Input[str]]:
|
699
719
|
"""
|
700
720
|
(Updatable) The desired time of the next execution of this scheduled job (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
701
|
-
|
702
|
-
|
703
|
-
** IMPORTANT **
|
704
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
705
721
|
"""
|
706
722
|
return pulumi.get(self, "time_next_execution")
|
707
723
|
|
@@ -721,6 +737,22 @@ class _ScheduledJobState:
|
|
721
737
|
def time_updated(self, value: Optional[pulumi.Input[str]]):
|
722
738
|
pulumi.set(self, "time_updated", value)
|
723
739
|
|
740
|
+
@property
|
741
|
+
@pulumi.getter(name="workRequestId")
|
742
|
+
def work_request_id(self) -> Optional[pulumi.Input[str]]:
|
743
|
+
"""
|
744
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the work request that will be rerun.
|
745
|
+
|
746
|
+
|
747
|
+
** IMPORTANT **
|
748
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
749
|
+
"""
|
750
|
+
return pulumi.get(self, "work_request_id")
|
751
|
+
|
752
|
+
@work_request_id.setter
|
753
|
+
def work_request_id(self, value: Optional[pulumi.Input[str]]):
|
754
|
+
pulumi.set(self, "work_request_id", value)
|
755
|
+
|
724
756
|
@property
|
725
757
|
@pulumi.getter(name="workRequestIds")
|
726
758
|
def work_request_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -756,6 +788,7 @@ class ScheduledJob(pulumi.CustomResource):
|
|
756
788
|
retry_intervals: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
|
757
789
|
schedule_type: Optional[pulumi.Input[str]] = None,
|
758
790
|
time_next_execution: Optional[pulumi.Input[str]] = None,
|
791
|
+
work_request_id: Optional[pulumi.Input[str]] = None,
|
759
792
|
__props__=None):
|
760
793
|
"""
|
761
794
|
This resource provides the Scheduled Job resource in Oracle Cloud Infrastructure Os Management Hub service.
|
@@ -797,6 +830,7 @@ class ScheduledJob(pulumi.CustomResource):
|
|
797
830
|
}],
|
798
831
|
},
|
799
832
|
"package_names": scheduled_job_operations_package_names,
|
833
|
+
"reboot_timeout_in_mins": scheduled_job_operations_reboot_timeout_in_mins,
|
800
834
|
"software_source_ids": scheduled_job_operations_software_source_ids,
|
801
835
|
"switch_module_streams_details": {
|
802
836
|
"module_name": scheduled_job_operations_switch_module_streams_details_module_name,
|
@@ -823,7 +857,8 @@ class ScheduledJob(pulumi.CustomResource):
|
|
823
857
|
managed_instance_group_ids=scheduled_job_managed_instance_group_ids,
|
824
858
|
managed_instance_ids=scheduled_job_managed_instance_ids,
|
825
859
|
recurring_rule=scheduled_job_recurring_rule,
|
826
|
-
retry_intervals=scheduled_job_retry_intervals
|
860
|
+
retry_intervals=scheduled_job_retry_intervals,
|
861
|
+
work_request_id=test_work_request["id"])
|
827
862
|
```
|
828
863
|
|
829
864
|
## Import
|
@@ -861,6 +896,7 @@ class ScheduledJob(pulumi.CustomResource):
|
|
861
896
|
:param pulumi.Input[Sequence[pulumi.Input[int]]] retry_intervals: (Updatable) The amount of time in minutes to wait until retrying the scheduled job. If set, the service will automatically retry a failed scheduled job after the interval. For example, you could set the interval to [2,5,10]. If the initial execution of the job fails, the service waits 2 minutes and then retries. If that fails, the service waits 5 minutes and then retries. If that fails, the service waits 10 minutes and then retries.
|
862
897
|
:param pulumi.Input[str] schedule_type: (Updatable) The type of scheduling frequency for the scheduled job.
|
863
898
|
:param pulumi.Input[str] time_next_execution: (Updatable) The desired time of the next execution of this scheduled job (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
899
|
+
:param pulumi.Input[str] work_request_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the work request that will be rerun.
|
864
900
|
|
865
901
|
|
866
902
|
** IMPORTANT **
|
@@ -912,6 +948,7 @@ class ScheduledJob(pulumi.CustomResource):
|
|
912
948
|
}],
|
913
949
|
},
|
914
950
|
"package_names": scheduled_job_operations_package_names,
|
951
|
+
"reboot_timeout_in_mins": scheduled_job_operations_reboot_timeout_in_mins,
|
915
952
|
"software_source_ids": scheduled_job_operations_software_source_ids,
|
916
953
|
"switch_module_streams_details": {
|
917
954
|
"module_name": scheduled_job_operations_switch_module_streams_details_module_name,
|
@@ -938,7 +975,8 @@ class ScheduledJob(pulumi.CustomResource):
|
|
938
975
|
managed_instance_group_ids=scheduled_job_managed_instance_group_ids,
|
939
976
|
managed_instance_ids=scheduled_job_managed_instance_ids,
|
940
977
|
recurring_rule=scheduled_job_recurring_rule,
|
941
|
-
retry_intervals=scheduled_job_retry_intervals
|
978
|
+
retry_intervals=scheduled_job_retry_intervals,
|
979
|
+
work_request_id=test_work_request["id"])
|
942
980
|
```
|
943
981
|
|
944
982
|
## Import
|
@@ -981,6 +1019,7 @@ class ScheduledJob(pulumi.CustomResource):
|
|
981
1019
|
retry_intervals: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
|
982
1020
|
schedule_type: Optional[pulumi.Input[str]] = None,
|
983
1021
|
time_next_execution: Optional[pulumi.Input[str]] = None,
|
1022
|
+
work_request_id: Optional[pulumi.Input[str]] = None,
|
984
1023
|
__props__=None):
|
985
1024
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
986
1025
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -1015,6 +1054,7 @@ class ScheduledJob(pulumi.CustomResource):
|
|
1015
1054
|
if time_next_execution is None and not opts.urn:
|
1016
1055
|
raise TypeError("Missing required property 'time_next_execution'")
|
1017
1056
|
__props__.__dict__["time_next_execution"] = time_next_execution
|
1057
|
+
__props__.__dict__["work_request_id"] = work_request_id
|
1018
1058
|
__props__.__dict__["is_restricted"] = None
|
1019
1059
|
__props__.__dict__["state"] = None
|
1020
1060
|
__props__.__dict__["system_tags"] = None
|
@@ -1055,6 +1095,7 @@ class ScheduledJob(pulumi.CustomResource):
|
|
1055
1095
|
time_last_execution: Optional[pulumi.Input[str]] = None,
|
1056
1096
|
time_next_execution: Optional[pulumi.Input[str]] = None,
|
1057
1097
|
time_updated: Optional[pulumi.Input[str]] = None,
|
1098
|
+
work_request_id: Optional[pulumi.Input[str]] = None,
|
1058
1099
|
work_request_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'ScheduledJob':
|
1059
1100
|
"""
|
1060
1101
|
Get an existing ScheduledJob resource's state with the given name, id, and optional extra
|
@@ -1093,11 +1134,12 @@ class ScheduledJob(pulumi.CustomResource):
|
|
1093
1134
|
:param pulumi.Input[str] time_created: The time this scheduled job was created (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
1094
1135
|
:param pulumi.Input[str] time_last_execution: The time of the last execution of this scheduled job (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
1095
1136
|
:param pulumi.Input[str] time_next_execution: (Updatable) The desired time of the next execution of this scheduled job (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
1137
|
+
:param pulumi.Input[str] time_updated: The time this scheduled job was updated (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
1138
|
+
:param pulumi.Input[str] work_request_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the work request that will be rerun.
|
1096
1139
|
|
1097
1140
|
|
1098
1141
|
** IMPORTANT **
|
1099
1142
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1100
|
-
:param pulumi.Input[str] time_updated: The time this scheduled job was updated (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
1101
1143
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] work_request_ids: The list of work request [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this scheduled job.
|
1102
1144
|
"""
|
1103
1145
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -1127,6 +1169,7 @@ class ScheduledJob(pulumi.CustomResource):
|
|
1127
1169
|
__props__.__dict__["time_last_execution"] = time_last_execution
|
1128
1170
|
__props__.__dict__["time_next_execution"] = time_next_execution
|
1129
1171
|
__props__.__dict__["time_updated"] = time_updated
|
1172
|
+
__props__.__dict__["work_request_id"] = work_request_id
|
1130
1173
|
__props__.__dict__["work_request_ids"] = work_request_ids
|
1131
1174
|
return ScheduledJob(resource_name, opts=opts, __props__=__props__)
|
1132
1175
|
|
@@ -1311,10 +1354,6 @@ class ScheduledJob(pulumi.CustomResource):
|
|
1311
1354
|
def time_next_execution(self) -> pulumi.Output[str]:
|
1312
1355
|
"""
|
1313
1356
|
(Updatable) The desired time of the next execution of this scheduled job (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format).
|
1314
|
-
|
1315
|
-
|
1316
|
-
** IMPORTANT **
|
1317
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1318
1357
|
"""
|
1319
1358
|
return pulumi.get(self, "time_next_execution")
|
1320
1359
|
|
@@ -1326,6 +1365,18 @@ class ScheduledJob(pulumi.CustomResource):
|
|
1326
1365
|
"""
|
1327
1366
|
return pulumi.get(self, "time_updated")
|
1328
1367
|
|
1368
|
+
@property
|
1369
|
+
@pulumi.getter(name="workRequestId")
|
1370
|
+
def work_request_id(self) -> pulumi.Output[str]:
|
1371
|
+
"""
|
1372
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the work request that will be rerun.
|
1373
|
+
|
1374
|
+
|
1375
|
+
** IMPORTANT **
|
1376
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1377
|
+
"""
|
1378
|
+
return pulumi.get(self, "work_request_id")
|
1379
|
+
|
1329
1380
|
@property
|
1330
1381
|
@pulumi.getter(name="workRequestIds")
|
1331
1382
|
def work_request_ids(self) -> pulumi.Output[Sequence[str]]:
|