pulumi-oci 1.31.0a1712469963__py3-none-any.whl → 1.31.0a1712742264__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. pulumi_oci/dataflow/get_invoke_run.py +11 -1
  2. pulumi_oci/dataflow/invoke_run.py +49 -0
  3. pulumi_oci/dataflow/outputs.py +7 -0
  4. pulumi_oci/devops/_inputs.py +380 -10
  5. pulumi_oci/devops/outputs.py +953 -32
  6. pulumi_oci/filestorage/replication.py +4 -4
  7. pulumi_oci/networkfirewall/outputs.py +12 -16
  8. pulumi_oci/networkloadbalancer/_inputs.py +222 -10
  9. pulumi_oci/networkloadbalancer/backend_set.py +70 -7
  10. pulumi_oci/networkloadbalancer/get_backend_set.py +15 -2
  11. pulumi_oci/networkloadbalancer/network_load_balancer.py +7 -62
  12. pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +70 -7
  13. pulumi_oci/networkloadbalancer/outputs.py +397 -28
  14. pulumi_oci/stackmonitoring/_inputs.py +209 -1
  15. pulumi_oci/stackmonitoring/get_monitored_resource.py +27 -1
  16. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +27 -1
  17. pulumi_oci/stackmonitoring/get_monitored_resources.py +18 -1
  18. pulumi_oci/stackmonitoring/monitored_resource.py +56 -0
  19. pulumi_oci/stackmonitoring/monitored_resource_task.py +18 -0
  20. pulumi_oci/stackmonitoring/monitored_resource_type.py +117 -19
  21. pulumi_oci/stackmonitoring/monitored_resources_search.py +197 -1
  22. pulumi_oci/stackmonitoring/outputs.py +436 -1
  23. {pulumi_oci-1.31.0a1712469963.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/METADATA +1 -1
  24. {pulumi_oci-1.31.0a1712469963.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/RECORD +26 -26
  25. {pulumi_oci-1.31.0a1712469963.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/WHEEL +0 -0
  26. {pulumi_oci-1.31.0a1712469963.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/top_level.txt +0 -0
@@ -17,17 +17,21 @@ __all__ = ['MonitoredResourcesSearchArgs', 'MonitoredResourcesSearch']
17
17
  class MonitoredResourcesSearchArgs:
18
18
  def __init__(__self__, *,
19
19
  compartment_id: pulumi.Input[str],
20
+ compartment_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
20
21
  exclude_fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
21
22
  external_id: Optional[pulumi.Input[str]] = None,
22
23
  fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
23
24
  host_name: Optional[pulumi.Input[str]] = None,
24
25
  host_name_contains: Optional[pulumi.Input[str]] = None,
25
26
  license: Optional[pulumi.Input[str]] = None,
27
+ lifecycle_states: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
26
28
  management_agent_id: Optional[pulumi.Input[str]] = None,
27
29
  name: Optional[pulumi.Input[str]] = None,
28
30
  name_contains: Optional[pulumi.Input[str]] = None,
29
31
  property_equals: Optional[pulumi.Input[Mapping[str, Any]]] = None,
32
+ resource_category: Optional[pulumi.Input[str]] = None,
30
33
  resource_time_zone: Optional[pulumi.Input[str]] = None,
34
+ source_type: Optional[pulumi.Input[str]] = None,
31
35
  state: Optional[pulumi.Input[str]] = None,
32
36
  time_created_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
33
37
  time_created_less_than: Optional[pulumi.Input[str]] = None,
@@ -37,17 +41,21 @@ class MonitoredResourcesSearchArgs:
37
41
  """
38
42
  The set of arguments for constructing a MonitoredResourcesSearch resource.
39
43
  :param pulumi.Input[str] compartment_id: Compartment Identifier [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
44
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] compartment_ids: Multiple compartment identifiers [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
40
45
  :param pulumi.Input[Sequence[pulumi.Input[str]]] exclude_fields: Partial response refers to an optimization technique offered by the RESTful web APIs, to return all the information except the fields requested to be excluded (excludeFields) by the client. In this mechanism, the client sends the exclude field names as the query parameters for an API to the server, and the server trims down the default response content by removing the fields that are not required by the client. The parameter controls which fields to exlude and to return and should be a query string parameter called "excludeFields" of an array type, provide the values as enums, and use collectionFormat.
41
46
  :param pulumi.Input[str] external_id: External resource is any Oracle Cloud Infrastructure resource identifier [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) which is not a Stack Monitoring service resource. Currently supports only following resource types - Container database, non-container database, pluggable database and Oracle Cloud Infrastructure compute instance.
42
47
  :param pulumi.Input[Sequence[pulumi.Input[str]]] fields: Partial response refers to an optimization technique offered by the RESTful web APIs, to return only the information (fields) required by the client. In this mechanism, the client sends the required field names as the query parameters for an API to the server, and the server trims down the default response content by removing the fields that are not required by the client. The parameter controls which fields to return and should be a query string parameter called "fields" of an array type, provide the values as enums, and use collectionFormat.
43
48
  :param pulumi.Input[str] host_name: A filter to return resources with host name match.
44
49
  :param pulumi.Input[str] host_name_contains: A filter to return resources with host name pattern.
45
50
  :param pulumi.Input[str] license: License edition of the monitored resource.
51
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] lifecycle_states: Multiple lifecycle states filter.
46
52
  :param pulumi.Input[str] management_agent_id: A filter to return resources with matching management agent id.
47
53
  :param pulumi.Input[str] name: A filter to return resources that match exact resource name.
48
54
  :param pulumi.Input[str] name_contains: A filter to return resources that match resource name pattern given. The match is not case sensitive.
49
55
  :param pulumi.Input[Mapping[str, Any]] property_equals: Criteria based on resource property.
56
+ :param pulumi.Input[str] resource_category: Resource category filter.
50
57
  :param pulumi.Input[str] resource_time_zone: Time zone in the form of tz database canonical zone ID. Specifies the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example - America/Los_Angeles
58
+ :param pulumi.Input[str] source_type: Source type filter.
51
59
  :param pulumi.Input[str] state: A filter to return resources with matching lifecycle state.
52
60
  :param pulumi.Input[str] time_created_greater_than_or_equal_to: Search for resources that were created within a specific date range, using this parameter to specify the earliest creation date for the returned list (inclusive). Specifying this parameter without the corresponding `timeCreatedLessThan` parameter will retrieve resources created from the given `timeCreatedGreaterThanOrEqualTo` to the current time, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
53
61
 
@@ -68,6 +76,8 @@ class MonitoredResourcesSearchArgs:
68
76
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
69
77
  """
70
78
  pulumi.set(__self__, "compartment_id", compartment_id)
79
+ if compartment_ids is not None:
80
+ pulumi.set(__self__, "compartment_ids", compartment_ids)
71
81
  if exclude_fields is not None:
72
82
  pulumi.set(__self__, "exclude_fields", exclude_fields)
73
83
  if external_id is not None:
@@ -80,6 +90,8 @@ class MonitoredResourcesSearchArgs:
80
90
  pulumi.set(__self__, "host_name_contains", host_name_contains)
81
91
  if license is not None:
82
92
  pulumi.set(__self__, "license", license)
93
+ if lifecycle_states is not None:
94
+ pulumi.set(__self__, "lifecycle_states", lifecycle_states)
83
95
  if management_agent_id is not None:
84
96
  pulumi.set(__self__, "management_agent_id", management_agent_id)
85
97
  if name is not None:
@@ -88,8 +100,12 @@ class MonitoredResourcesSearchArgs:
88
100
  pulumi.set(__self__, "name_contains", name_contains)
89
101
  if property_equals is not None:
90
102
  pulumi.set(__self__, "property_equals", property_equals)
103
+ if resource_category is not None:
104
+ pulumi.set(__self__, "resource_category", resource_category)
91
105
  if resource_time_zone is not None:
92
106
  pulumi.set(__self__, "resource_time_zone", resource_time_zone)
107
+ if source_type is not None:
108
+ pulumi.set(__self__, "source_type", source_type)
93
109
  if state is not None:
94
110
  pulumi.set(__self__, "state", state)
95
111
  if time_created_greater_than_or_equal_to is not None:
@@ -115,6 +131,18 @@ class MonitoredResourcesSearchArgs:
115
131
  def compartment_id(self, value: pulumi.Input[str]):
116
132
  pulumi.set(self, "compartment_id", value)
117
133
 
134
+ @property
135
+ @pulumi.getter(name="compartmentIds")
136
+ def compartment_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
137
+ """
138
+ Multiple compartment identifiers [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
139
+ """
140
+ return pulumi.get(self, "compartment_ids")
141
+
142
+ @compartment_ids.setter
143
+ def compartment_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
144
+ pulumi.set(self, "compartment_ids", value)
145
+
118
146
  @property
119
147
  @pulumi.getter(name="excludeFields")
120
148
  def exclude_fields(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -187,6 +215,18 @@ class MonitoredResourcesSearchArgs:
187
215
  def license(self, value: Optional[pulumi.Input[str]]):
188
216
  pulumi.set(self, "license", value)
189
217
 
218
+ @property
219
+ @pulumi.getter(name="lifecycleStates")
220
+ def lifecycle_states(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
221
+ """
222
+ Multiple lifecycle states filter.
223
+ """
224
+ return pulumi.get(self, "lifecycle_states")
225
+
226
+ @lifecycle_states.setter
227
+ def lifecycle_states(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
228
+ pulumi.set(self, "lifecycle_states", value)
229
+
190
230
  @property
191
231
  @pulumi.getter(name="managementAgentId")
192
232
  def management_agent_id(self) -> Optional[pulumi.Input[str]]:
@@ -235,6 +275,18 @@ class MonitoredResourcesSearchArgs:
235
275
  def property_equals(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
236
276
  pulumi.set(self, "property_equals", value)
237
277
 
278
+ @property
279
+ @pulumi.getter(name="resourceCategory")
280
+ def resource_category(self) -> Optional[pulumi.Input[str]]:
281
+ """
282
+ Resource category filter.
283
+ """
284
+ return pulumi.get(self, "resource_category")
285
+
286
+ @resource_category.setter
287
+ def resource_category(self, value: Optional[pulumi.Input[str]]):
288
+ pulumi.set(self, "resource_category", value)
289
+
238
290
  @property
239
291
  @pulumi.getter(name="resourceTimeZone")
240
292
  def resource_time_zone(self) -> Optional[pulumi.Input[str]]:
@@ -247,6 +299,18 @@ class MonitoredResourcesSearchArgs:
247
299
  def resource_time_zone(self, value: Optional[pulumi.Input[str]]):
248
300
  pulumi.set(self, "resource_time_zone", value)
249
301
 
302
+ @property
303
+ @pulumi.getter(name="sourceType")
304
+ def source_type(self) -> Optional[pulumi.Input[str]]:
305
+ """
306
+ Source type filter.
307
+ """
308
+ return pulumi.get(self, "source_type")
309
+
310
+ @source_type.setter
311
+ def source_type(self, value: Optional[pulumi.Input[str]]):
312
+ pulumi.set(self, "source_type", value)
313
+
250
314
  @property
251
315
  @pulumi.getter
252
316
  def state(self) -> Optional[pulumi.Input[str]]:
@@ -336,6 +400,7 @@ class MonitoredResourcesSearchArgs:
336
400
  class _MonitoredResourcesSearchState:
337
401
  def __init__(__self__, *,
338
402
  compartment_id: Optional[pulumi.Input[str]] = None,
403
+ compartment_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
339
404
  exclude_fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
340
405
  external_id: Optional[pulumi.Input[str]] = None,
341
406
  fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -343,11 +408,14 @@ class _MonitoredResourcesSearchState:
343
408
  host_name_contains: Optional[pulumi.Input[str]] = None,
344
409
  items: Optional[pulumi.Input[Sequence[pulumi.Input['MonitoredResourcesSearchItemArgs']]]] = None,
345
410
  license: Optional[pulumi.Input[str]] = None,
411
+ lifecycle_states: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
346
412
  management_agent_id: Optional[pulumi.Input[str]] = None,
347
413
  name: Optional[pulumi.Input[str]] = None,
348
414
  name_contains: Optional[pulumi.Input[str]] = None,
349
415
  property_equals: Optional[pulumi.Input[Mapping[str, Any]]] = None,
416
+ resource_category: Optional[pulumi.Input[str]] = None,
350
417
  resource_time_zone: Optional[pulumi.Input[str]] = None,
418
+ source_type: Optional[pulumi.Input[str]] = None,
351
419
  state: Optional[pulumi.Input[str]] = None,
352
420
  time_created_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
353
421
  time_created_less_than: Optional[pulumi.Input[str]] = None,
@@ -357,6 +425,7 @@ class _MonitoredResourcesSearchState:
357
425
  """
358
426
  Input properties used for looking up and filtering MonitoredResourcesSearch resources.
359
427
  :param pulumi.Input[str] compartment_id: Compartment Identifier [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
428
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] compartment_ids: Multiple compartment identifiers [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
360
429
  :param pulumi.Input[Sequence[pulumi.Input[str]]] exclude_fields: Partial response refers to an optimization technique offered by the RESTful web APIs, to return all the information except the fields requested to be excluded (excludeFields) by the client. In this mechanism, the client sends the exclude field names as the query parameters for an API to the server, and the server trims down the default response content by removing the fields that are not required by the client. The parameter controls which fields to exlude and to return and should be a query string parameter called "excludeFields" of an array type, provide the values as enums, and use collectionFormat.
361
430
  :param pulumi.Input[str] external_id: External resource is any Oracle Cloud Infrastructure resource identifier [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) which is not a Stack Monitoring service resource. Currently supports only following resource types - Container database, non-container database, pluggable database and Oracle Cloud Infrastructure compute instance.
362
431
  :param pulumi.Input[Sequence[pulumi.Input[str]]] fields: Partial response refers to an optimization technique offered by the RESTful web APIs, to return only the information (fields) required by the client. In this mechanism, the client sends the required field names as the query parameters for an API to the server, and the server trims down the default response content by removing the fields that are not required by the client. The parameter controls which fields to return and should be a query string parameter called "fields" of an array type, provide the values as enums, and use collectionFormat.
@@ -364,11 +433,14 @@ class _MonitoredResourcesSearchState:
364
433
  :param pulumi.Input[str] host_name_contains: A filter to return resources with host name pattern.
365
434
  :param pulumi.Input[Sequence[pulumi.Input['MonitoredResourcesSearchItemArgs']]] items: List of monitored resources.
366
435
  :param pulumi.Input[str] license: License edition of the monitored resource.
436
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] lifecycle_states: Multiple lifecycle states filter.
367
437
  :param pulumi.Input[str] management_agent_id: A filter to return resources with matching management agent id.
368
438
  :param pulumi.Input[str] name: A filter to return resources that match exact resource name.
369
439
  :param pulumi.Input[str] name_contains: A filter to return resources that match resource name pattern given. The match is not case sensitive.
370
440
  :param pulumi.Input[Mapping[str, Any]] property_equals: Criteria based on resource property.
441
+ :param pulumi.Input[str] resource_category: Resource category filter.
371
442
  :param pulumi.Input[str] resource_time_zone: Time zone in the form of tz database canonical zone ID. Specifies the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example - America/Los_Angeles
443
+ :param pulumi.Input[str] source_type: Source type filter.
372
444
  :param pulumi.Input[str] state: A filter to return resources with matching lifecycle state.
373
445
  :param pulumi.Input[str] time_created_greater_than_or_equal_to: Search for resources that were created within a specific date range, using this parameter to specify the earliest creation date for the returned list (inclusive). Specifying this parameter without the corresponding `timeCreatedLessThan` parameter will retrieve resources created from the given `timeCreatedGreaterThanOrEqualTo` to the current time, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
374
446
 
@@ -390,6 +462,8 @@ class _MonitoredResourcesSearchState:
390
462
  """
391
463
  if compartment_id is not None:
392
464
  pulumi.set(__self__, "compartment_id", compartment_id)
465
+ if compartment_ids is not None:
466
+ pulumi.set(__self__, "compartment_ids", compartment_ids)
393
467
  if exclude_fields is not None:
394
468
  pulumi.set(__self__, "exclude_fields", exclude_fields)
395
469
  if external_id is not None:
@@ -404,6 +478,8 @@ class _MonitoredResourcesSearchState:
404
478
  pulumi.set(__self__, "items", items)
405
479
  if license is not None:
406
480
  pulumi.set(__self__, "license", license)
481
+ if lifecycle_states is not None:
482
+ pulumi.set(__self__, "lifecycle_states", lifecycle_states)
407
483
  if management_agent_id is not None:
408
484
  pulumi.set(__self__, "management_agent_id", management_agent_id)
409
485
  if name is not None:
@@ -412,8 +488,12 @@ class _MonitoredResourcesSearchState:
412
488
  pulumi.set(__self__, "name_contains", name_contains)
413
489
  if property_equals is not None:
414
490
  pulumi.set(__self__, "property_equals", property_equals)
491
+ if resource_category is not None:
492
+ pulumi.set(__self__, "resource_category", resource_category)
415
493
  if resource_time_zone is not None:
416
494
  pulumi.set(__self__, "resource_time_zone", resource_time_zone)
495
+ if source_type is not None:
496
+ pulumi.set(__self__, "source_type", source_type)
417
497
  if state is not None:
418
498
  pulumi.set(__self__, "state", state)
419
499
  if time_created_greater_than_or_equal_to is not None:
@@ -439,6 +519,18 @@ class _MonitoredResourcesSearchState:
439
519
  def compartment_id(self, value: Optional[pulumi.Input[str]]):
440
520
  pulumi.set(self, "compartment_id", value)
441
521
 
522
+ @property
523
+ @pulumi.getter(name="compartmentIds")
524
+ def compartment_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
525
+ """
526
+ Multiple compartment identifiers [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
527
+ """
528
+ return pulumi.get(self, "compartment_ids")
529
+
530
+ @compartment_ids.setter
531
+ def compartment_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
532
+ pulumi.set(self, "compartment_ids", value)
533
+
442
534
  @property
443
535
  @pulumi.getter(name="excludeFields")
444
536
  def exclude_fields(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -523,6 +615,18 @@ class _MonitoredResourcesSearchState:
523
615
  def license(self, value: Optional[pulumi.Input[str]]):
524
616
  pulumi.set(self, "license", value)
525
617
 
618
+ @property
619
+ @pulumi.getter(name="lifecycleStates")
620
+ def lifecycle_states(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
621
+ """
622
+ Multiple lifecycle states filter.
623
+ """
624
+ return pulumi.get(self, "lifecycle_states")
625
+
626
+ @lifecycle_states.setter
627
+ def lifecycle_states(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
628
+ pulumi.set(self, "lifecycle_states", value)
629
+
526
630
  @property
527
631
  @pulumi.getter(name="managementAgentId")
528
632
  def management_agent_id(self) -> Optional[pulumi.Input[str]]:
@@ -571,6 +675,18 @@ class _MonitoredResourcesSearchState:
571
675
  def property_equals(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
572
676
  pulumi.set(self, "property_equals", value)
573
677
 
678
+ @property
679
+ @pulumi.getter(name="resourceCategory")
680
+ def resource_category(self) -> Optional[pulumi.Input[str]]:
681
+ """
682
+ Resource category filter.
683
+ """
684
+ return pulumi.get(self, "resource_category")
685
+
686
+ @resource_category.setter
687
+ def resource_category(self, value: Optional[pulumi.Input[str]]):
688
+ pulumi.set(self, "resource_category", value)
689
+
574
690
  @property
575
691
  @pulumi.getter(name="resourceTimeZone")
576
692
  def resource_time_zone(self) -> Optional[pulumi.Input[str]]:
@@ -583,6 +699,18 @@ class _MonitoredResourcesSearchState:
583
699
  def resource_time_zone(self, value: Optional[pulumi.Input[str]]):
584
700
  pulumi.set(self, "resource_time_zone", value)
585
701
 
702
+ @property
703
+ @pulumi.getter(name="sourceType")
704
+ def source_type(self) -> Optional[pulumi.Input[str]]:
705
+ """
706
+ Source type filter.
707
+ """
708
+ return pulumi.get(self, "source_type")
709
+
710
+ @source_type.setter
711
+ def source_type(self, value: Optional[pulumi.Input[str]]):
712
+ pulumi.set(self, "source_type", value)
713
+
586
714
  @property
587
715
  @pulumi.getter
588
716
  def state(self) -> Optional[pulumi.Input[str]]:
@@ -674,17 +802,21 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
674
802
  resource_name: str,
675
803
  opts: Optional[pulumi.ResourceOptions] = None,
676
804
  compartment_id: Optional[pulumi.Input[str]] = None,
805
+ compartment_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
677
806
  exclude_fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
678
807
  external_id: Optional[pulumi.Input[str]] = None,
679
808
  fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
680
809
  host_name: Optional[pulumi.Input[str]] = None,
681
810
  host_name_contains: Optional[pulumi.Input[str]] = None,
682
811
  license: Optional[pulumi.Input[str]] = None,
812
+ lifecycle_states: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
683
813
  management_agent_id: Optional[pulumi.Input[str]] = None,
684
814
  name: Optional[pulumi.Input[str]] = None,
685
815
  name_contains: Optional[pulumi.Input[str]] = None,
686
816
  property_equals: Optional[pulumi.Input[Mapping[str, Any]]] = None,
817
+ resource_category: Optional[pulumi.Input[str]] = None,
687
818
  resource_time_zone: Optional[pulumi.Input[str]] = None,
819
+ source_type: Optional[pulumi.Input[str]] = None,
688
820
  state: Optional[pulumi.Input[str]] = None,
689
821
  time_created_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
690
822
  time_created_less_than: Optional[pulumi.Input[str]] = None,
@@ -706,16 +838,20 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
706
838
 
707
839
  test_monitored_resources_search = oci.stack_monitoring.MonitoredResourcesSearch("testMonitoredResourcesSearch",
708
840
  compartment_id=var["compartment_id"],
841
+ compartment_ids=var["monitored_resources_search_compartment_ids"],
709
842
  exclude_fields=var["monitored_resources_search_exclude_fields"],
710
843
  external_id=oci_stack_monitoring_external["test_external"]["id"],
711
844
  fields=var["monitored_resources_search_fields"],
712
845
  host_name=var["monitored_resources_search_host_name"],
713
846
  host_name_contains=var["monitored_resources_search_host_name_contains"],
714
847
  license=var["monitored_resources_search_license"],
848
+ lifecycle_states=var["monitored_resources_search_lifecycle_states"],
715
849
  management_agent_id=oci_management_agent_management_agent["test_management_agent"]["id"],
716
850
  name_contains=var["monitored_resources_search_name_contains"],
717
851
  property_equals=var["monitored_resources_search_property_equals"],
852
+ resource_category=var["monitored_resources_search_resource_category"],
718
853
  resource_time_zone=var["monitored_resources_search_resource_time_zone"],
854
+ source_type=var["monitored_resources_search_source_type"],
719
855
  state=var["monitored_resources_search_state"],
720
856
  time_created_greater_than_or_equal_to=var["monitored_resources_search_time_created_greater_than_or_equal_to"],
721
857
  time_created_less_than=var["monitored_resources_search_time_created_less_than"],
@@ -736,17 +872,21 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
736
872
  :param str resource_name: The name of the resource.
737
873
  :param pulumi.ResourceOptions opts: Options for the resource.
738
874
  :param pulumi.Input[str] compartment_id: Compartment Identifier [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
875
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] compartment_ids: Multiple compartment identifiers [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
739
876
  :param pulumi.Input[Sequence[pulumi.Input[str]]] exclude_fields: Partial response refers to an optimization technique offered by the RESTful web APIs, to return all the information except the fields requested to be excluded (excludeFields) by the client. In this mechanism, the client sends the exclude field names as the query parameters for an API to the server, and the server trims down the default response content by removing the fields that are not required by the client. The parameter controls which fields to exlude and to return and should be a query string parameter called "excludeFields" of an array type, provide the values as enums, and use collectionFormat.
740
877
  :param pulumi.Input[str] external_id: External resource is any Oracle Cloud Infrastructure resource identifier [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) which is not a Stack Monitoring service resource. Currently supports only following resource types - Container database, non-container database, pluggable database and Oracle Cloud Infrastructure compute instance.
741
878
  :param pulumi.Input[Sequence[pulumi.Input[str]]] fields: Partial response refers to an optimization technique offered by the RESTful web APIs, to return only the information (fields) required by the client. In this mechanism, the client sends the required field names as the query parameters for an API to the server, and the server trims down the default response content by removing the fields that are not required by the client. The parameter controls which fields to return and should be a query string parameter called "fields" of an array type, provide the values as enums, and use collectionFormat.
742
879
  :param pulumi.Input[str] host_name: A filter to return resources with host name match.
743
880
  :param pulumi.Input[str] host_name_contains: A filter to return resources with host name pattern.
744
881
  :param pulumi.Input[str] license: License edition of the monitored resource.
882
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] lifecycle_states: Multiple lifecycle states filter.
745
883
  :param pulumi.Input[str] management_agent_id: A filter to return resources with matching management agent id.
746
884
  :param pulumi.Input[str] name: A filter to return resources that match exact resource name.
747
885
  :param pulumi.Input[str] name_contains: A filter to return resources that match resource name pattern given. The match is not case sensitive.
748
886
  :param pulumi.Input[Mapping[str, Any]] property_equals: Criteria based on resource property.
887
+ :param pulumi.Input[str] resource_category: Resource category filter.
749
888
  :param pulumi.Input[str] resource_time_zone: Time zone in the form of tz database canonical zone ID. Specifies the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example - America/Los_Angeles
889
+ :param pulumi.Input[str] source_type: Source type filter.
750
890
  :param pulumi.Input[str] state: A filter to return resources with matching lifecycle state.
751
891
  :param pulumi.Input[str] time_created_greater_than_or_equal_to: Search for resources that were created within a specific date range, using this parameter to specify the earliest creation date for the returned list (inclusive). Specifying this parameter without the corresponding `timeCreatedLessThan` parameter will retrieve resources created from the given `timeCreatedGreaterThanOrEqualTo` to the current time, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
752
892
 
@@ -786,16 +926,20 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
786
926
 
787
927
  test_monitored_resources_search = oci.stack_monitoring.MonitoredResourcesSearch("testMonitoredResourcesSearch",
788
928
  compartment_id=var["compartment_id"],
929
+ compartment_ids=var["monitored_resources_search_compartment_ids"],
789
930
  exclude_fields=var["monitored_resources_search_exclude_fields"],
790
931
  external_id=oci_stack_monitoring_external["test_external"]["id"],
791
932
  fields=var["monitored_resources_search_fields"],
792
933
  host_name=var["monitored_resources_search_host_name"],
793
934
  host_name_contains=var["monitored_resources_search_host_name_contains"],
794
935
  license=var["monitored_resources_search_license"],
936
+ lifecycle_states=var["monitored_resources_search_lifecycle_states"],
795
937
  management_agent_id=oci_management_agent_management_agent["test_management_agent"]["id"],
796
938
  name_contains=var["monitored_resources_search_name_contains"],
797
939
  property_equals=var["monitored_resources_search_property_equals"],
940
+ resource_category=var["monitored_resources_search_resource_category"],
798
941
  resource_time_zone=var["monitored_resources_search_resource_time_zone"],
942
+ source_type=var["monitored_resources_search_source_type"],
799
943
  state=var["monitored_resources_search_state"],
800
944
  time_created_greater_than_or_equal_to=var["monitored_resources_search_time_created_greater_than_or_equal_to"],
801
945
  time_created_less_than=var["monitored_resources_search_time_created_less_than"],
@@ -829,17 +973,21 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
829
973
  resource_name: str,
830
974
  opts: Optional[pulumi.ResourceOptions] = None,
831
975
  compartment_id: Optional[pulumi.Input[str]] = None,
976
+ compartment_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
832
977
  exclude_fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
833
978
  external_id: Optional[pulumi.Input[str]] = None,
834
979
  fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
835
980
  host_name: Optional[pulumi.Input[str]] = None,
836
981
  host_name_contains: Optional[pulumi.Input[str]] = None,
837
982
  license: Optional[pulumi.Input[str]] = None,
983
+ lifecycle_states: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
838
984
  management_agent_id: Optional[pulumi.Input[str]] = None,
839
985
  name: Optional[pulumi.Input[str]] = None,
840
986
  name_contains: Optional[pulumi.Input[str]] = None,
841
987
  property_equals: Optional[pulumi.Input[Mapping[str, Any]]] = None,
988
+ resource_category: Optional[pulumi.Input[str]] = None,
842
989
  resource_time_zone: Optional[pulumi.Input[str]] = None,
990
+ source_type: Optional[pulumi.Input[str]] = None,
843
991
  state: Optional[pulumi.Input[str]] = None,
844
992
  time_created_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
845
993
  time_created_less_than: Optional[pulumi.Input[str]] = None,
@@ -858,17 +1006,21 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
858
1006
  if compartment_id is None and not opts.urn:
859
1007
  raise TypeError("Missing required property 'compartment_id'")
860
1008
  __props__.__dict__["compartment_id"] = compartment_id
1009
+ __props__.__dict__["compartment_ids"] = compartment_ids
861
1010
  __props__.__dict__["exclude_fields"] = exclude_fields
862
1011
  __props__.__dict__["external_id"] = external_id
863
1012
  __props__.__dict__["fields"] = fields
864
1013
  __props__.__dict__["host_name"] = host_name
865
1014
  __props__.__dict__["host_name_contains"] = host_name_contains
866
1015
  __props__.__dict__["license"] = license
1016
+ __props__.__dict__["lifecycle_states"] = lifecycle_states
867
1017
  __props__.__dict__["management_agent_id"] = management_agent_id
868
1018
  __props__.__dict__["name"] = name
869
1019
  __props__.__dict__["name_contains"] = name_contains
870
1020
  __props__.__dict__["property_equals"] = property_equals
1021
+ __props__.__dict__["resource_category"] = resource_category
871
1022
  __props__.__dict__["resource_time_zone"] = resource_time_zone
1023
+ __props__.__dict__["source_type"] = source_type
872
1024
  __props__.__dict__["state"] = state
873
1025
  __props__.__dict__["time_created_greater_than_or_equal_to"] = time_created_greater_than_or_equal_to
874
1026
  __props__.__dict__["time_created_less_than"] = time_created_less_than
@@ -887,6 +1039,7 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
887
1039
  id: pulumi.Input[str],
888
1040
  opts: Optional[pulumi.ResourceOptions] = None,
889
1041
  compartment_id: Optional[pulumi.Input[str]] = None,
1042
+ compartment_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
890
1043
  exclude_fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
891
1044
  external_id: Optional[pulumi.Input[str]] = None,
892
1045
  fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -894,11 +1047,14 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
894
1047
  host_name_contains: Optional[pulumi.Input[str]] = None,
895
1048
  items: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MonitoredResourcesSearchItemArgs']]]]] = None,
896
1049
  license: Optional[pulumi.Input[str]] = None,
1050
+ lifecycle_states: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
897
1051
  management_agent_id: Optional[pulumi.Input[str]] = None,
898
1052
  name: Optional[pulumi.Input[str]] = None,
899
1053
  name_contains: Optional[pulumi.Input[str]] = None,
900
1054
  property_equals: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1055
+ resource_category: Optional[pulumi.Input[str]] = None,
901
1056
  resource_time_zone: Optional[pulumi.Input[str]] = None,
1057
+ source_type: Optional[pulumi.Input[str]] = None,
902
1058
  state: Optional[pulumi.Input[str]] = None,
903
1059
  time_created_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
904
1060
  time_created_less_than: Optional[pulumi.Input[str]] = None,
@@ -913,6 +1069,7 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
913
1069
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
914
1070
  :param pulumi.ResourceOptions opts: Options for the resource.
915
1071
  :param pulumi.Input[str] compartment_id: Compartment Identifier [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
1072
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] compartment_ids: Multiple compartment identifiers [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
916
1073
  :param pulumi.Input[Sequence[pulumi.Input[str]]] exclude_fields: Partial response refers to an optimization technique offered by the RESTful web APIs, to return all the information except the fields requested to be excluded (excludeFields) by the client. In this mechanism, the client sends the exclude field names as the query parameters for an API to the server, and the server trims down the default response content by removing the fields that are not required by the client. The parameter controls which fields to exlude and to return and should be a query string parameter called "excludeFields" of an array type, provide the values as enums, and use collectionFormat.
917
1074
  :param pulumi.Input[str] external_id: External resource is any Oracle Cloud Infrastructure resource identifier [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) which is not a Stack Monitoring service resource. Currently supports only following resource types - Container database, non-container database, pluggable database and Oracle Cloud Infrastructure compute instance.
918
1075
  :param pulumi.Input[Sequence[pulumi.Input[str]]] fields: Partial response refers to an optimization technique offered by the RESTful web APIs, to return only the information (fields) required by the client. In this mechanism, the client sends the required field names as the query parameters for an API to the server, and the server trims down the default response content by removing the fields that are not required by the client. The parameter controls which fields to return and should be a query string parameter called "fields" of an array type, provide the values as enums, and use collectionFormat.
@@ -920,11 +1077,14 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
920
1077
  :param pulumi.Input[str] host_name_contains: A filter to return resources with host name pattern.
921
1078
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MonitoredResourcesSearchItemArgs']]]] items: List of monitored resources.
922
1079
  :param pulumi.Input[str] license: License edition of the monitored resource.
1080
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] lifecycle_states: Multiple lifecycle states filter.
923
1081
  :param pulumi.Input[str] management_agent_id: A filter to return resources with matching management agent id.
924
1082
  :param pulumi.Input[str] name: A filter to return resources that match exact resource name.
925
1083
  :param pulumi.Input[str] name_contains: A filter to return resources that match resource name pattern given. The match is not case sensitive.
926
1084
  :param pulumi.Input[Mapping[str, Any]] property_equals: Criteria based on resource property.
1085
+ :param pulumi.Input[str] resource_category: Resource category filter.
927
1086
  :param pulumi.Input[str] resource_time_zone: Time zone in the form of tz database canonical zone ID. Specifies the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example - America/Los_Angeles
1087
+ :param pulumi.Input[str] source_type: Source type filter.
928
1088
  :param pulumi.Input[str] state: A filter to return resources with matching lifecycle state.
929
1089
  :param pulumi.Input[str] time_created_greater_than_or_equal_to: Search for resources that were created within a specific date range, using this parameter to specify the earliest creation date for the returned list (inclusive). Specifying this parameter without the corresponding `timeCreatedLessThan` parameter will retrieve resources created from the given `timeCreatedGreaterThanOrEqualTo` to the current time, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
930
1090
 
@@ -949,6 +1109,7 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
949
1109
  __props__ = _MonitoredResourcesSearchState.__new__(_MonitoredResourcesSearchState)
950
1110
 
951
1111
  __props__.__dict__["compartment_id"] = compartment_id
1112
+ __props__.__dict__["compartment_ids"] = compartment_ids
952
1113
  __props__.__dict__["exclude_fields"] = exclude_fields
953
1114
  __props__.__dict__["external_id"] = external_id
954
1115
  __props__.__dict__["fields"] = fields
@@ -956,11 +1117,14 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
956
1117
  __props__.__dict__["host_name_contains"] = host_name_contains
957
1118
  __props__.__dict__["items"] = items
958
1119
  __props__.__dict__["license"] = license
1120
+ __props__.__dict__["lifecycle_states"] = lifecycle_states
959
1121
  __props__.__dict__["management_agent_id"] = management_agent_id
960
1122
  __props__.__dict__["name"] = name
961
1123
  __props__.__dict__["name_contains"] = name_contains
962
1124
  __props__.__dict__["property_equals"] = property_equals
1125
+ __props__.__dict__["resource_category"] = resource_category
963
1126
  __props__.__dict__["resource_time_zone"] = resource_time_zone
1127
+ __props__.__dict__["source_type"] = source_type
964
1128
  __props__.__dict__["state"] = state
965
1129
  __props__.__dict__["time_created_greater_than_or_equal_to"] = time_created_greater_than_or_equal_to
966
1130
  __props__.__dict__["time_created_less_than"] = time_created_less_than
@@ -977,6 +1141,14 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
977
1141
  """
978
1142
  return pulumi.get(self, "compartment_id")
979
1143
 
1144
+ @property
1145
+ @pulumi.getter(name="compartmentIds")
1146
+ def compartment_ids(self) -> pulumi.Output[Optional[Sequence[str]]]:
1147
+ """
1148
+ Multiple compartment identifiers [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
1149
+ """
1150
+ return pulumi.get(self, "compartment_ids")
1151
+
980
1152
  @property
981
1153
  @pulumi.getter(name="excludeFields")
982
1154
  def exclude_fields(self) -> pulumi.Output[Optional[Sequence[str]]]:
@@ -1027,12 +1199,20 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
1027
1199
 
1028
1200
  @property
1029
1201
  @pulumi.getter
1030
- def license(self) -> pulumi.Output[str]:
1202
+ def license(self) -> pulumi.Output[Optional[str]]:
1031
1203
  """
1032
1204
  License edition of the monitored resource.
1033
1205
  """
1034
1206
  return pulumi.get(self, "license")
1035
1207
 
1208
+ @property
1209
+ @pulumi.getter(name="lifecycleStates")
1210
+ def lifecycle_states(self) -> pulumi.Output[Optional[Sequence[str]]]:
1211
+ """
1212
+ Multiple lifecycle states filter.
1213
+ """
1214
+ return pulumi.get(self, "lifecycle_states")
1215
+
1036
1216
  @property
1037
1217
  @pulumi.getter(name="managementAgentId")
1038
1218
  def management_agent_id(self) -> pulumi.Output[Optional[str]]:
@@ -1065,6 +1245,14 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
1065
1245
  """
1066
1246
  return pulumi.get(self, "property_equals")
1067
1247
 
1248
+ @property
1249
+ @pulumi.getter(name="resourceCategory")
1250
+ def resource_category(self) -> pulumi.Output[Optional[str]]:
1251
+ """
1252
+ Resource category filter.
1253
+ """
1254
+ return pulumi.get(self, "resource_category")
1255
+
1068
1256
  @property
1069
1257
  @pulumi.getter(name="resourceTimeZone")
1070
1258
  def resource_time_zone(self) -> pulumi.Output[Optional[str]]:
@@ -1073,6 +1261,14 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
1073
1261
  """
1074
1262
  return pulumi.get(self, "resource_time_zone")
1075
1263
 
1264
+ @property
1265
+ @pulumi.getter(name="sourceType")
1266
+ def source_type(self) -> pulumi.Output[Optional[str]]:
1267
+ """
1268
+ Source type filter.
1269
+ """
1270
+ return pulumi.get(self, "source_type")
1271
+
1076
1272
  @property
1077
1273
  @pulumi.getter
1078
1274
  def state(self) -> pulumi.Output[Optional[str]]: