pulumi-oci 2.33.0a1745955172__py3-none-any.whl → 2.33.0a1746138884__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.
@@ -20,31 +20,41 @@ __all__ = [
20
20
  'ScheduleResource',
21
21
  'ScheduleResourceFilter',
22
22
  'ScheduleResourceFilterValue',
23
+ 'ScheduleResourceParameter',
23
24
  'GetScheduleResourceResult',
24
25
  'GetScheduleResourceFilterResult',
25
26
  'GetScheduleResourceFilterValueResult',
27
+ 'GetScheduleResourceParameterResult',
26
28
  'GetSchedulesFilterResult',
27
29
  'GetSchedulesScheduleCollectionResult',
28
30
  'GetSchedulesScheduleCollectionItemResult',
29
31
  'GetSchedulesScheduleCollectionItemResourceResult',
30
32
  'GetSchedulesScheduleCollectionItemResourceFilterResult',
31
33
  'GetSchedulesScheduleCollectionItemResourceFilterValueResult',
34
+ 'GetSchedulesScheduleCollectionItemResourceParameterResult',
32
35
  ]
33
36
 
34
37
  @pulumi.output_type
35
38
  class ScheduleResource(dict):
36
39
  def __init__(__self__, *,
37
40
  id: builtins.str,
38
- metadata: Optional[Mapping[str, builtins.str]] = None):
41
+ metadata: Optional[Mapping[str, builtins.str]] = None,
42
+ parameters: Optional[Sequence['outputs.ScheduleResourceParameter']] = None):
39
43
  """
40
44
  :param builtins.str id: (Updatable) This is the resource OCID.
41
45
  :param Mapping[str, builtins.str] metadata: (Updatable) This is additional information that helps to identity the resource for the schedule.
42
46
 
47
+ <<<<<<< ours
43
48
  { "id": "<OCID_of_bucket>" "metadata": { "namespaceName": "sampleNamespace", "bucketName": "sampleBucket" } }
49
+ :param Sequence['ScheduleResourceParameterArgs'] parameters: (Updatable) This is the user input parameters to use when acting on the resource.
50
+
51
+ { "parameters": [ { "parameterType": "BODY", "value": { "ip": "192.168.44.44", "memory": "1024", "synced_folders": [ { "host_path": "data/", "guest_path": "/var/www", "type": "default" } ], "forwarded_ports": [] } }, { "parameterType": "PATH", "value": { "compartmentId": "ocid1.compartment.oc1..xxxxx", "instanceId": "ocid1.vcn.oc1..yyyy" } }, { "parameterType": "QUERY", "value": { "limit": "10", "tenantId": "ocid1.tenant.oc1..zzzz" } }, { "parameterType": "HEADER", "value": { "token": "xxxx" } } ] }
44
52
  """
45
53
  pulumi.set(__self__, "id", id)
46
54
  if metadata is not None:
47
55
  pulumi.set(__self__, "metadata", metadata)
56
+ if parameters is not None:
57
+ pulumi.set(__self__, "parameters", parameters)
48
58
 
49
59
  @property
50
60
  @pulumi.getter
@@ -60,10 +70,21 @@ class ScheduleResource(dict):
60
70
  """
61
71
  (Updatable) This is additional information that helps to identity the resource for the schedule.
62
72
 
73
+ <<<<<<< ours
63
74
  { "id": "<OCID_of_bucket>" "metadata": { "namespaceName": "sampleNamespace", "bucketName": "sampleBucket" } }
64
75
  """
65
76
  return pulumi.get(self, "metadata")
66
77
 
78
+ @property
79
+ @pulumi.getter
80
+ def parameters(self) -> Optional[Sequence['outputs.ScheduleResourceParameter']]:
81
+ """
82
+ (Updatable) This is the user input parameters to use when acting on the resource.
83
+
84
+ { "parameters": [ { "parameterType": "BODY", "value": { "ip": "192.168.44.44", "memory": "1024", "synced_folders": [ { "host_path": "data/", "guest_path": "/var/www", "type": "default" } ], "forwarded_ports": [] } }, { "parameterType": "PATH", "value": { "compartmentId": "ocid1.compartment.oc1..xxxxx", "instanceId": "ocid1.vcn.oc1..yyyy" } }, { "parameterType": "QUERY", "value": { "limit": "10", "tenantId": "ocid1.tenant.oc1..zzzz" } }, { "parameterType": "HEADER", "value": { "token": "xxxx" } } ] }
85
+ """
86
+ return pulumi.get(self, "parameters")
87
+
67
88
 
68
89
  @pulumi.output_type
69
90
  class ScheduleResourceFilter(dict):
@@ -198,17 +219,71 @@ class ScheduleResourceFilterValue(dict):
198
219
  return pulumi.get(self, "value")
199
220
 
200
221
 
222
+ @pulumi.output_type
223
+ class ScheduleResourceParameter(dict):
224
+ @staticmethod
225
+ def __key_warning(key: str):
226
+ suggest = None
227
+ if key == "parameterType":
228
+ suggest = "parameter_type"
229
+
230
+ if suggest:
231
+ pulumi.log.warn(f"Key '{key}' not found in ScheduleResourceParameter. Access the value via the '{suggest}' property getter instead.")
232
+
233
+ def __getitem__(self, key: str) -> Any:
234
+ ScheduleResourceParameter.__key_warning(key)
235
+ return super().__getitem__(key)
236
+
237
+ def get(self, key: str, default = None) -> Any:
238
+ ScheduleResourceParameter.__key_warning(key)
239
+ return super().get(key, default)
240
+
241
+ def __init__(__self__, *,
242
+ parameter_type: builtins.str,
243
+ value: Optional[builtins.str] = None):
244
+ """
245
+ :param builtins.str parameter_type: (Updatable) This is the parameter type on which the input parameter is defined
246
+ :param builtins.str value: (Updatable) This is the HTTP request header value.
247
+ =======
248
+ { "id": "<OCID_of_bucket>" "metadata": { "namespaceName": "sampleNamespace", "bucketName": "sampleBucket" } }
249
+ """
250
+ pulumi.set(__self__, "parameter_type", parameter_type)
251
+ if value is not None:
252
+ pulumi.set(__self__, "value", value)
253
+
254
+ @property
255
+ @pulumi.getter(name="parameterType")
256
+ def parameter_type(self) -> builtins.str:
257
+ """
258
+ (Updatable) This is the parameter type on which the input parameter is defined
259
+ """
260
+ return pulumi.get(self, "parameter_type")
261
+
262
+ @property
263
+ @pulumi.getter
264
+ def value(self) -> Optional[builtins.str]:
265
+ """
266
+ (Updatable) This is the HTTP request header value.
267
+ =======
268
+ { "id": "<OCID_of_bucket>" "metadata": { "namespaceName": "sampleNamespace", "bucketName": "sampleBucket" } }
269
+ """
270
+ return pulumi.get(self, "value")
271
+
272
+
201
273
  @pulumi.output_type
202
274
  class GetScheduleResourceResult(dict):
203
275
  def __init__(__self__, *,
204
276
  id: builtins.str,
205
- metadata: Mapping[str, builtins.str]):
277
+ metadata: Mapping[str, builtins.str],
278
+ parameters: Sequence['outputs.GetScheduleResourceParameterResult']):
206
279
  """
207
280
  :param builtins.str id: This is the resource OCID.
208
281
  :param Mapping[str, builtins.str] metadata: This is additional information that helps to identity the resource for the schedule.
282
+ :param Sequence['GetScheduleResourceParameterArgs'] parameters: This is the user input parameters to use when acting on the resource.
209
283
  """
210
284
  pulumi.set(__self__, "id", id)
211
285
  pulumi.set(__self__, "metadata", metadata)
286
+ pulumi.set(__self__, "parameters", parameters)
212
287
 
213
288
  @property
214
289
  @pulumi.getter
@@ -226,6 +301,14 @@ class GetScheduleResourceResult(dict):
226
301
  """
227
302
  return pulumi.get(self, "metadata")
228
303
 
304
+ @property
305
+ @pulumi.getter
306
+ def parameters(self) -> Sequence['outputs.GetScheduleResourceParameterResult']:
307
+ """
308
+ This is the user input parameters to use when acting on the resource.
309
+ """
310
+ return pulumi.get(self, "parameters")
311
+
229
312
 
230
313
  @pulumi.output_type
231
314
  class GetScheduleResourceFilterResult(dict):
@@ -238,7 +321,7 @@ class GetScheduleResourceFilterResult(dict):
238
321
  :param builtins.str attribute: This is the resource attribute on which the threshold is defined.
239
322
  :param builtins.str condition: This is the condition for the filter in comparison to its creation time.
240
323
  :param builtins.bool should_include_child_compartments: This sets whether to include child compartments.
241
- :param Sequence['GetScheduleResourceFilterValueArgs'] values: This is the value of the defined tag.
324
+ :param Sequence['GetScheduleResourceFilterValueArgs'] values: This is the HTTP request header value.
242
325
  """
243
326
  pulumi.set(__self__, "attribute", attribute)
244
327
  pulumi.set(__self__, "condition", condition)
@@ -273,7 +356,7 @@ class GetScheduleResourceFilterResult(dict):
273
356
  @pulumi.getter
274
357
  def values(self) -> Sequence['outputs.GetScheduleResourceFilterValueResult']:
275
358
  """
276
- This is the value of the defined tag.
359
+ This is the HTTP request header value.
277
360
  """
278
361
  return pulumi.get(self, "values")
279
362
 
@@ -287,7 +370,7 @@ class GetScheduleResourceFilterValueResult(dict):
287
370
  """
288
371
  :param builtins.str namespace: This is the namespace of the defined tag.
289
372
  :param builtins.str tag_key: This is the key of the defined tag.
290
- :param builtins.str value: This is the value of the defined tag.
373
+ :param builtins.str value: This is the HTTP request header value.
291
374
  """
292
375
  pulumi.set(__self__, "namespace", namespace)
293
376
  pulumi.set(__self__, "tag_key", tag_key)
@@ -313,11 +396,40 @@ class GetScheduleResourceFilterValueResult(dict):
313
396
  @pulumi.getter
314
397
  def value(self) -> builtins.str:
315
398
  """
316
- This is the value of the defined tag.
399
+ This is the HTTP request header value.
317
400
  """
318
401
  return pulumi.get(self, "value")
319
402
 
320
403
 
404
+ @pulumi.output_type
405
+ class GetScheduleResourceParameterResult(dict):
406
+ def __init__(__self__, *,
407
+ parameter_type: builtins.str,
408
+ values: Sequence[builtins.str]):
409
+ """
410
+ :param builtins.str parameter_type: This is the parameter type on which the input parameter is defined
411
+ :param Sequence[builtins.str] values: This is the HTTP request header value.
412
+ """
413
+ pulumi.set(__self__, "parameter_type", parameter_type)
414
+ pulumi.set(__self__, "values", values)
415
+
416
+ @property
417
+ @pulumi.getter(name="parameterType")
418
+ def parameter_type(self) -> builtins.str:
419
+ """
420
+ This is the parameter type on which the input parameter is defined
421
+ """
422
+ return pulumi.get(self, "parameter_type")
423
+
424
+ @property
425
+ @pulumi.getter
426
+ def values(self) -> Sequence[builtins.str]:
427
+ """
428
+ This is the HTTP request header value.
429
+ """
430
+ return pulumi.get(self, "values")
431
+
432
+
321
433
  @pulumi.output_type
322
434
  class GetSchedulesFilterResult(dict):
323
435
  def __init__(__self__, *,
@@ -367,6 +479,7 @@ class GetSchedulesScheduleCollectionItemResult(dict):
367
479
  display_name: builtins.str,
368
480
  freeform_tags: Mapping[str, builtins.str],
369
481
  id: builtins.str,
482
+ last_run_status: builtins.str,
370
483
  recurrence_details: builtins.str,
371
484
  recurrence_type: builtins.str,
372
485
  resource_filters: Sequence['outputs.GetSchedulesScheduleCollectionItemResourceFilterResult'],
@@ -387,6 +500,7 @@ class GetSchedulesScheduleCollectionItemResult(dict):
387
500
  :param builtins.str display_name: This is a filter to return only resources that match the given display name exactly.
388
501
  :param Mapping[str, builtins.str] freeform_tags: These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
389
502
  :param builtins.str id: This is the resource OCID.
503
+ :param builtins.str last_run_status: This is the status of the last work request.
390
504
  :param builtins.str recurrence_details: This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
391
505
  :param builtins.str recurrence_type: Type of recurrence of a schedule
392
506
  :param Sequence['GetSchedulesScheduleCollectionItemResourceFilterArgs'] resource_filters: This is a list of resources filters. The schedule will be applied to resources matching all of them.
@@ -407,6 +521,7 @@ class GetSchedulesScheduleCollectionItemResult(dict):
407
521
  pulumi.set(__self__, "display_name", display_name)
408
522
  pulumi.set(__self__, "freeform_tags", freeform_tags)
409
523
  pulumi.set(__self__, "id", id)
524
+ pulumi.set(__self__, "last_run_status", last_run_status)
410
525
  pulumi.set(__self__, "recurrence_details", recurrence_details)
411
526
  pulumi.set(__self__, "recurrence_type", recurrence_type)
412
527
  pulumi.set(__self__, "resource_filters", resource_filters)
@@ -476,6 +591,14 @@ class GetSchedulesScheduleCollectionItemResult(dict):
476
591
  """
477
592
  return pulumi.get(self, "id")
478
593
 
594
+ @property
595
+ @pulumi.getter(name="lastRunStatus")
596
+ def last_run_status(self) -> builtins.str:
597
+ """
598
+ This is the status of the last work request.
599
+ """
600
+ return pulumi.get(self, "last_run_status")
601
+
479
602
  @property
480
603
  @pulumi.getter(name="recurrenceDetails")
481
604
  def recurrence_details(self) -> builtins.str:
@@ -577,13 +700,16 @@ class GetSchedulesScheduleCollectionItemResult(dict):
577
700
  class GetSchedulesScheduleCollectionItemResourceResult(dict):
578
701
  def __init__(__self__, *,
579
702
  id: builtins.str,
580
- metadata: Mapping[str, builtins.str]):
703
+ metadata: Mapping[str, builtins.str],
704
+ parameters: Sequence['outputs.GetSchedulesScheduleCollectionItemResourceParameterResult']):
581
705
  """
582
706
  :param builtins.str id: This is the resource OCID.
583
707
  :param Mapping[str, builtins.str] metadata: This is additional information that helps to identity the resource for the schedule.
708
+ :param Sequence['GetSchedulesScheduleCollectionItemResourceParameterArgs'] parameters: This is the user input parameters to use when acting on the resource.
584
709
  """
585
710
  pulumi.set(__self__, "id", id)
586
711
  pulumi.set(__self__, "metadata", metadata)
712
+ pulumi.set(__self__, "parameters", parameters)
587
713
 
588
714
  @property
589
715
  @pulumi.getter
@@ -601,6 +727,14 @@ class GetSchedulesScheduleCollectionItemResourceResult(dict):
601
727
  """
602
728
  return pulumi.get(self, "metadata")
603
729
 
730
+ @property
731
+ @pulumi.getter
732
+ def parameters(self) -> Sequence['outputs.GetSchedulesScheduleCollectionItemResourceParameterResult']:
733
+ """
734
+ This is the user input parameters to use when acting on the resource.
735
+ """
736
+ return pulumi.get(self, "parameters")
737
+
604
738
 
605
739
  @pulumi.output_type
606
740
  class GetSchedulesScheduleCollectionItemResourceFilterResult(dict):
@@ -613,7 +747,7 @@ class GetSchedulesScheduleCollectionItemResourceFilterResult(dict):
613
747
  :param builtins.str attribute: This is the resource attribute on which the threshold is defined.
614
748
  :param builtins.str condition: This is the condition for the filter in comparison to its creation time.
615
749
  :param builtins.bool should_include_child_compartments: This sets whether to include child compartments.
616
- :param Sequence['GetSchedulesScheduleCollectionItemResourceFilterValueArgs'] values: This is the value of the defined tag.
750
+ :param Sequence['GetSchedulesScheduleCollectionItemResourceFilterValueArgs'] values: This is the HTTP request header value.
617
751
  """
618
752
  pulumi.set(__self__, "attribute", attribute)
619
753
  pulumi.set(__self__, "condition", condition)
@@ -648,7 +782,7 @@ class GetSchedulesScheduleCollectionItemResourceFilterResult(dict):
648
782
  @pulumi.getter
649
783
  def values(self) -> Sequence['outputs.GetSchedulesScheduleCollectionItemResourceFilterValueResult']:
650
784
  """
651
- This is the value of the defined tag.
785
+ This is the HTTP request header value.
652
786
  """
653
787
  return pulumi.get(self, "values")
654
788
 
@@ -662,7 +796,7 @@ class GetSchedulesScheduleCollectionItemResourceFilterValueResult(dict):
662
796
  """
663
797
  :param builtins.str namespace: This is the namespace of the defined tag.
664
798
  :param builtins.str tag_key: This is the key of the defined tag.
665
- :param builtins.str value: This is the value of the defined tag.
799
+ :param builtins.str value: This is the HTTP request header value.
666
800
  """
667
801
  pulumi.set(__self__, "namespace", namespace)
668
802
  pulumi.set(__self__, "tag_key", tag_key)
@@ -688,8 +822,37 @@ class GetSchedulesScheduleCollectionItemResourceFilterValueResult(dict):
688
822
  @pulumi.getter
689
823
  def value(self) -> builtins.str:
690
824
  """
691
- This is the value of the defined tag.
825
+ This is the HTTP request header value.
692
826
  """
693
827
  return pulumi.get(self, "value")
694
828
 
695
829
 
830
+ @pulumi.output_type
831
+ class GetSchedulesScheduleCollectionItemResourceParameterResult(dict):
832
+ def __init__(__self__, *,
833
+ parameter_type: builtins.str,
834
+ values: Sequence[builtins.str]):
835
+ """
836
+ :param builtins.str parameter_type: This is the parameter type on which the input parameter is defined
837
+ :param Sequence[builtins.str] values: This is the HTTP request header value.
838
+ """
839
+ pulumi.set(__self__, "parameter_type", parameter_type)
840
+ pulumi.set(__self__, "values", values)
841
+
842
+ @property
843
+ @pulumi.getter(name="parameterType")
844
+ def parameter_type(self) -> builtins.str:
845
+ """
846
+ This is the parameter type on which the input parameter is defined
847
+ """
848
+ return pulumi.get(self, "parameter_type")
849
+
850
+ @property
851
+ @pulumi.getter
852
+ def values(self) -> Sequence[builtins.str]:
853
+ """
854
+ This is the HTTP request header value.
855
+ """
856
+ return pulumi.get(self, "values")
857
+
858
+
@@ -38,13 +38,17 @@ class ScheduleArgs:
38
38
  """
39
39
  The set of arguments for constructing a Schedule resource.
40
40
  :param pulumi.Input[builtins.str] action: (Updatable) This is the action that will be executed by the schedule.
41
+ <<<<<<< ours
41
42
  :param pulumi.Input[builtins.str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the schedule is created
42
43
  :param pulumi.Input[builtins.str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
44
+
45
+ >>>>>>> theirs
43
46
  :param pulumi.Input[builtins.str] recurrence_type: (Updatable) Type of recurrence of a schedule. Could be set to `ICAL`, `CRON`
44
47
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) These are 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"}`
45
48
  :param pulumi.Input[builtins.str] description: (Updatable) This is the description of the schedule.
46
49
  :param pulumi.Input[builtins.str] display_name: (Updatable) This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
47
50
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
51
+ >>>>>>> theirs
48
52
  :param pulumi.Input[Sequence[pulumi.Input['ScheduleResourceFilterArgs']]] resource_filters: (Updatable) This is a list of resources filters. The schedule will be applied to resources matching all of them.
49
53
  :param pulumi.Input[Sequence[pulumi.Input['ScheduleResourceArgs']]] resources: (Updatable) This is the list of resources to which the scheduled operation is applied.
50
54
  :param pulumi.Input[builtins.str] state: (Updatable) The target state for the Schedule. Could be set to `ACTIVE` or `INACTIVE`.
@@ -83,6 +87,7 @@ class ScheduleArgs:
83
87
  def action(self) -> pulumi.Input[builtins.str]:
84
88
  """
85
89
  (Updatable) This is the action that will be executed by the schedule.
90
+ <<<<<<< ours
86
91
  """
87
92
  return pulumi.get(self, "action")
88
93
 
@@ -107,6 +112,8 @@ class ScheduleArgs:
107
112
  def recurrence_details(self) -> pulumi.Input[builtins.str]:
108
113
  """
109
114
  (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
115
+
116
+ >>>>>>> theirs
110
117
  """
111
118
  return pulumi.get(self, "recurrence_details")
112
119
 
@@ -167,6 +174,7 @@ class ScheduleArgs:
167
174
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
168
175
  """
169
176
  (Updatable) These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
177
+ >>>>>>> theirs
170
178
  """
171
179
  return pulumi.get(self, "freeform_tags")
172
180
 
@@ -248,6 +256,7 @@ class _ScheduleState:
248
256
  description: Optional[pulumi.Input[builtins.str]] = None,
249
257
  display_name: Optional[pulumi.Input[builtins.str]] = None,
250
258
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
259
+ last_run_status: Optional[pulumi.Input[builtins.str]] = None,
251
260
  recurrence_details: Optional[pulumi.Input[builtins.str]] = None,
252
261
  recurrence_type: Optional[pulumi.Input[builtins.str]] = None,
253
262
  resource_filters: Optional[pulumi.Input[Sequence[pulumi.Input['ScheduleResourceFilterArgs']]]] = None,
@@ -263,12 +272,17 @@ class _ScheduleState:
263
272
  """
264
273
  Input properties used for looking up and filtering Schedule resources.
265
274
  :param pulumi.Input[builtins.str] action: (Updatable) This is the action that will be executed by the schedule.
275
+ <<<<<<< ours
266
276
  :param pulumi.Input[builtins.str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the schedule is created
267
277
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) These are 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"}`
268
278
  :param pulumi.Input[builtins.str] description: (Updatable) This is the description of the schedule.
269
279
  :param pulumi.Input[builtins.str] display_name: (Updatable) This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
270
280
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
281
+ >>>>>>> theirs
282
+ :param pulumi.Input[builtins.str] last_run_status: This is the status of the last work request.
271
283
  :param pulumi.Input[builtins.str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
284
+
285
+ >>>>>>> theirs
272
286
  :param pulumi.Input[builtins.str] recurrence_type: (Updatable) Type of recurrence of a schedule. Could be set to `ICAL`, `CRON`
273
287
  :param pulumi.Input[Sequence[pulumi.Input['ScheduleResourceFilterArgs']]] resource_filters: (Updatable) This is a list of resources filters. The schedule will be applied to resources matching all of them.
274
288
  :param pulumi.Input[Sequence[pulumi.Input['ScheduleResourceArgs']]] resources: (Updatable) This is the list of resources to which the scheduled operation is applied.
@@ -297,6 +311,8 @@ class _ScheduleState:
297
311
  pulumi.set(__self__, "display_name", display_name)
298
312
  if freeform_tags is not None:
299
313
  pulumi.set(__self__, "freeform_tags", freeform_tags)
314
+ if last_run_status is not None:
315
+ pulumi.set(__self__, "last_run_status", last_run_status)
300
316
  if recurrence_details is not None:
301
317
  pulumi.set(__self__, "recurrence_details", recurrence_details)
302
318
  if recurrence_type is not None:
@@ -327,6 +343,7 @@ class _ScheduleState:
327
343
  def action(self) -> Optional[pulumi.Input[builtins.str]]:
328
344
  """
329
345
  (Updatable) This is the action that will be executed by the schedule.
346
+ <<<<<<< ours
330
347
  """
331
348
  return pulumi.get(self, "action")
332
349
 
@@ -387,6 +404,7 @@ class _ScheduleState:
387
404
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
388
405
  """
389
406
  (Updatable) These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
407
+ >>>>>>> theirs
390
408
  """
391
409
  return pulumi.get(self, "freeform_tags")
392
410
 
@@ -394,11 +412,25 @@ class _ScheduleState:
394
412
  def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
395
413
  pulumi.set(self, "freeform_tags", value)
396
414
 
415
+ @property
416
+ @pulumi.getter(name="lastRunStatus")
417
+ def last_run_status(self) -> Optional[pulumi.Input[builtins.str]]:
418
+ """
419
+ This is the status of the last work request.
420
+ """
421
+ return pulumi.get(self, "last_run_status")
422
+
423
+ @last_run_status.setter
424
+ def last_run_status(self, value: Optional[pulumi.Input[builtins.str]]):
425
+ pulumi.set(self, "last_run_status", value)
426
+
397
427
  @property
398
428
  @pulumi.getter(name="recurrenceDetails")
399
429
  def recurrence_details(self) -> Optional[pulumi.Input[builtins.str]]:
400
430
  """
401
431
  (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
432
+
433
+ >>>>>>> theirs
402
434
  """
403
435
  return pulumi.get(self, "recurrence_details")
404
436
 
@@ -568,7 +600,7 @@ class Schedule(pulumi.CustomResource):
568
600
  """
569
601
  This resource provides the Schedule resource in Oracle Cloud Infrastructure Resource Scheduler service.
570
602
 
571
- Creates a Schedule
603
+ This API creates a schedule. You must provide either resources or resourceFilters.
572
604
 
573
605
  ## Import
574
606
 
@@ -581,12 +613,16 @@ class Schedule(pulumi.CustomResource):
581
613
  :param str resource_name: The name of the resource.
582
614
  :param pulumi.ResourceOptions opts: Options for the resource.
583
615
  :param pulumi.Input[builtins.str] action: (Updatable) This is the action that will be executed by the schedule.
616
+ <<<<<<< ours
584
617
  :param pulumi.Input[builtins.str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the schedule is created
585
618
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) These are 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"}`
586
619
  :param pulumi.Input[builtins.str] description: (Updatable) This is the description of the schedule.
587
620
  :param pulumi.Input[builtins.str] display_name: (Updatable) This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
588
621
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
622
+ >>>>>>> theirs
589
623
  :param pulumi.Input[builtins.str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
624
+
625
+ >>>>>>> theirs
590
626
  :param pulumi.Input[builtins.str] recurrence_type: (Updatable) Type of recurrence of a schedule. Could be set to `ICAL`, `CRON`
591
627
  :param pulumi.Input[Sequence[pulumi.Input[Union['ScheduleResourceFilterArgs', 'ScheduleResourceFilterArgsDict']]]] resource_filters: (Updatable) This is a list of resources filters. The schedule will be applied to resources matching all of them.
592
628
  :param pulumi.Input[Sequence[pulumi.Input[Union['ScheduleResourceArgs', 'ScheduleResourceArgsDict']]]] resources: (Updatable) This is the list of resources to which the scheduled operation is applied.
@@ -607,7 +643,7 @@ class Schedule(pulumi.CustomResource):
607
643
  """
608
644
  This resource provides the Schedule resource in Oracle Cloud Infrastructure Resource Scheduler service.
609
645
 
610
- Creates a Schedule
646
+ This API creates a schedule. You must provide either resources or resourceFilters.
611
647
 
612
648
  ## Import
613
649
 
@@ -675,6 +711,7 @@ class Schedule(pulumi.CustomResource):
675
711
  __props__.__dict__["state"] = state
676
712
  __props__.__dict__["time_ends"] = time_ends
677
713
  __props__.__dict__["time_starts"] = time_starts
714
+ __props__.__dict__["last_run_status"] = None
678
715
  __props__.__dict__["system_tags"] = None
679
716
  __props__.__dict__["time_created"] = None
680
717
  __props__.__dict__["time_last_run"] = None
@@ -696,6 +733,7 @@ class Schedule(pulumi.CustomResource):
696
733
  description: Optional[pulumi.Input[builtins.str]] = None,
697
734
  display_name: Optional[pulumi.Input[builtins.str]] = None,
698
735
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
736
+ last_run_status: Optional[pulumi.Input[builtins.str]] = None,
699
737
  recurrence_details: Optional[pulumi.Input[builtins.str]] = None,
700
738
  recurrence_type: Optional[pulumi.Input[builtins.str]] = None,
701
739
  resource_filters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ScheduleResourceFilterArgs', 'ScheduleResourceFilterArgsDict']]]]] = None,
@@ -716,12 +754,17 @@ class Schedule(pulumi.CustomResource):
716
754
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
717
755
  :param pulumi.ResourceOptions opts: Options for the resource.
718
756
  :param pulumi.Input[builtins.str] action: (Updatable) This is the action that will be executed by the schedule.
757
+ <<<<<<< ours
719
758
  :param pulumi.Input[builtins.str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the schedule is created
720
759
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) These are 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"}`
721
760
  :param pulumi.Input[builtins.str] description: (Updatable) This is the description of the schedule.
722
761
  :param pulumi.Input[builtins.str] display_name: (Updatable) This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
723
762
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
763
+ >>>>>>> theirs
764
+ :param pulumi.Input[builtins.str] last_run_status: This is the status of the last work request.
724
765
  :param pulumi.Input[builtins.str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
766
+
767
+ >>>>>>> theirs
725
768
  :param pulumi.Input[builtins.str] recurrence_type: (Updatable) Type of recurrence of a schedule. Could be set to `ICAL`, `CRON`
726
769
  :param pulumi.Input[Sequence[pulumi.Input[Union['ScheduleResourceFilterArgs', 'ScheduleResourceFilterArgsDict']]]] resource_filters: (Updatable) This is a list of resources filters. The schedule will be applied to resources matching all of them.
727
770
  :param pulumi.Input[Sequence[pulumi.Input[Union['ScheduleResourceArgs', 'ScheduleResourceArgsDict']]]] resources: (Updatable) This is the list of resources to which the scheduled operation is applied.
@@ -748,6 +791,7 @@ class Schedule(pulumi.CustomResource):
748
791
  __props__.__dict__["description"] = description
749
792
  __props__.__dict__["display_name"] = display_name
750
793
  __props__.__dict__["freeform_tags"] = freeform_tags
794
+ __props__.__dict__["last_run_status"] = last_run_status
751
795
  __props__.__dict__["recurrence_details"] = recurrence_details
752
796
  __props__.__dict__["recurrence_type"] = recurrence_type
753
797
  __props__.__dict__["resource_filters"] = resource_filters
@@ -767,6 +811,7 @@ class Schedule(pulumi.CustomResource):
767
811
  def action(self) -> pulumi.Output[builtins.str]:
768
812
  """
769
813
  (Updatable) This is the action that will be executed by the schedule.
814
+ <<<<<<< ours
770
815
  """
771
816
  return pulumi.get(self, "action")
772
817
 
@@ -807,14 +852,25 @@ class Schedule(pulumi.CustomResource):
807
852
  def freeform_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
808
853
  """
809
854
  (Updatable) These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
855
+ >>>>>>> theirs
810
856
  """
811
857
  return pulumi.get(self, "freeform_tags")
812
858
 
859
+ @property
860
+ @pulumi.getter(name="lastRunStatus")
861
+ def last_run_status(self) -> pulumi.Output[builtins.str]:
862
+ """
863
+ This is the status of the last work request.
864
+ """
865
+ return pulumi.get(self, "last_run_status")
866
+
813
867
  @property
814
868
  @pulumi.getter(name="recurrenceDetails")
815
869
  def recurrence_details(self) -> pulumi.Output[builtins.str]:
816
870
  """
817
871
  (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
872
+
873
+ >>>>>>> theirs
818
874
  """
819
875
  return pulumi.get(self, "recurrence_details")
820
876
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_oci
3
- Version: 2.33.0a1745955172
3
+ Version: 2.33.0a1746138884
4
4
  Summary: A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://www.pulumi.com