pulumi-oci 1.31.0__py3-none-any.whl → 1.31.0a1712402206__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 +1 -11
  2. pulumi_oci/dataflow/invoke_run.py +0 -49
  3. pulumi_oci/dataflow/outputs.py +0 -7
  4. pulumi_oci/devops/_inputs.py +10 -380
  5. pulumi_oci/devops/outputs.py +32 -953
  6. pulumi_oci/filestorage/replication.py +4 -4
  7. pulumi_oci/networkfirewall/outputs.py +16 -12
  8. pulumi_oci/networkloadbalancer/_inputs.py +10 -222
  9. pulumi_oci/networkloadbalancer/backend_set.py +7 -70
  10. pulumi_oci/networkloadbalancer/get_backend_set.py +2 -15
  11. pulumi_oci/networkloadbalancer/network_load_balancer.py +62 -7
  12. pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +7 -70
  13. pulumi_oci/networkloadbalancer/outputs.py +28 -397
  14. pulumi_oci/stackmonitoring/_inputs.py +1 -209
  15. pulumi_oci/stackmonitoring/get_monitored_resource.py +1 -27
  16. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +1 -27
  17. pulumi_oci/stackmonitoring/get_monitored_resources.py +1 -18
  18. pulumi_oci/stackmonitoring/monitored_resource.py +0 -56
  19. pulumi_oci/stackmonitoring/monitored_resource_task.py +0 -18
  20. pulumi_oci/stackmonitoring/monitored_resource_type.py +19 -117
  21. pulumi_oci/stackmonitoring/monitored_resources_search.py +1 -197
  22. pulumi_oci/stackmonitoring/outputs.py +1 -436
  23. {pulumi_oci-1.31.0.dist-info → pulumi_oci-1.31.0a1712402206.dist-info}/METADATA +1 -1
  24. {pulumi_oci-1.31.0.dist-info → pulumi_oci-1.31.0a1712402206.dist-info}/RECORD +26 -26
  25. {pulumi_oci-1.31.0.dist-info → pulumi_oci-1.31.0a1712402206.dist-info}/WHEEL +0 -0
  26. {pulumi_oci-1.31.0.dist-info → pulumi_oci-1.31.0a1712402206.dist-info}/top_level.txt +0 -0
@@ -17,21 +17,17 @@ __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,
21
20
  exclude_fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
22
21
  external_id: Optional[pulumi.Input[str]] = None,
23
22
  fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
24
23
  host_name: Optional[pulumi.Input[str]] = None,
25
24
  host_name_contains: Optional[pulumi.Input[str]] = None,
26
25
  license: Optional[pulumi.Input[str]] = None,
27
- lifecycle_states: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
28
26
  management_agent_id: Optional[pulumi.Input[str]] = None,
29
27
  name: Optional[pulumi.Input[str]] = None,
30
28
  name_contains: Optional[pulumi.Input[str]] = None,
31
29
  property_equals: Optional[pulumi.Input[Mapping[str, Any]]] = None,
32
- resource_category: Optional[pulumi.Input[str]] = None,
33
30
  resource_time_zone: Optional[pulumi.Input[str]] = None,
34
- source_type: Optional[pulumi.Input[str]] = None,
35
31
  state: Optional[pulumi.Input[str]] = None,
36
32
  time_created_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
37
33
  time_created_less_than: Optional[pulumi.Input[str]] = None,
@@ -41,21 +37,17 @@ class MonitoredResourcesSearchArgs:
41
37
  """
42
38
  The set of arguments for constructing a MonitoredResourcesSearch resource.
43
39
  :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).
45
40
  :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.
46
41
  :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.
47
42
  :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.
48
43
  :param pulumi.Input[str] host_name: A filter to return resources with host name match.
49
44
  :param pulumi.Input[str] host_name_contains: A filter to return resources with host name pattern.
50
45
  :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.
52
46
  :param pulumi.Input[str] management_agent_id: A filter to return resources with matching management agent id.
53
47
  :param pulumi.Input[str] name: A filter to return resources that match exact resource name.
54
48
  :param pulumi.Input[str] name_contains: A filter to return resources that match resource name pattern given. The match is not case sensitive.
55
49
  :param pulumi.Input[Mapping[str, Any]] property_equals: Criteria based on resource property.
56
- :param pulumi.Input[str] resource_category: Resource category filter.
57
50
  :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.
59
51
  :param pulumi.Input[str] state: A filter to return resources with matching lifecycle state.
60
52
  :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).
61
53
 
@@ -76,8 +68,6 @@ class MonitoredResourcesSearchArgs:
76
68
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
77
69
  """
78
70
  pulumi.set(__self__, "compartment_id", compartment_id)
79
- if compartment_ids is not None:
80
- pulumi.set(__self__, "compartment_ids", compartment_ids)
81
71
  if exclude_fields is not None:
82
72
  pulumi.set(__self__, "exclude_fields", exclude_fields)
83
73
  if external_id is not None:
@@ -90,8 +80,6 @@ class MonitoredResourcesSearchArgs:
90
80
  pulumi.set(__self__, "host_name_contains", host_name_contains)
91
81
  if license is not None:
92
82
  pulumi.set(__self__, "license", license)
93
- if lifecycle_states is not None:
94
- pulumi.set(__self__, "lifecycle_states", lifecycle_states)
95
83
  if management_agent_id is not None:
96
84
  pulumi.set(__self__, "management_agent_id", management_agent_id)
97
85
  if name is not None:
@@ -100,12 +88,8 @@ class MonitoredResourcesSearchArgs:
100
88
  pulumi.set(__self__, "name_contains", name_contains)
101
89
  if property_equals is not None:
102
90
  pulumi.set(__self__, "property_equals", property_equals)
103
- if resource_category is not None:
104
- pulumi.set(__self__, "resource_category", resource_category)
105
91
  if resource_time_zone is not None:
106
92
  pulumi.set(__self__, "resource_time_zone", resource_time_zone)
107
- if source_type is not None:
108
- pulumi.set(__self__, "source_type", source_type)
109
93
  if state is not None:
110
94
  pulumi.set(__self__, "state", state)
111
95
  if time_created_greater_than_or_equal_to is not None:
@@ -131,18 +115,6 @@ class MonitoredResourcesSearchArgs:
131
115
  def compartment_id(self, value: pulumi.Input[str]):
132
116
  pulumi.set(self, "compartment_id", value)
133
117
 
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
-
146
118
  @property
147
119
  @pulumi.getter(name="excludeFields")
148
120
  def exclude_fields(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -215,18 +187,6 @@ class MonitoredResourcesSearchArgs:
215
187
  def license(self, value: Optional[pulumi.Input[str]]):
216
188
  pulumi.set(self, "license", value)
217
189
 
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
-
230
190
  @property
231
191
  @pulumi.getter(name="managementAgentId")
232
192
  def management_agent_id(self) -> Optional[pulumi.Input[str]]:
@@ -275,18 +235,6 @@ class MonitoredResourcesSearchArgs:
275
235
  def property_equals(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
276
236
  pulumi.set(self, "property_equals", value)
277
237
 
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
-
290
238
  @property
291
239
  @pulumi.getter(name="resourceTimeZone")
292
240
  def resource_time_zone(self) -> Optional[pulumi.Input[str]]:
@@ -299,18 +247,6 @@ class MonitoredResourcesSearchArgs:
299
247
  def resource_time_zone(self, value: Optional[pulumi.Input[str]]):
300
248
  pulumi.set(self, "resource_time_zone", value)
301
249
 
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
-
314
250
  @property
315
251
  @pulumi.getter
316
252
  def state(self) -> Optional[pulumi.Input[str]]:
@@ -400,7 +336,6 @@ class MonitoredResourcesSearchArgs:
400
336
  class _MonitoredResourcesSearchState:
401
337
  def __init__(__self__, *,
402
338
  compartment_id: Optional[pulumi.Input[str]] = None,
403
- compartment_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
404
339
  exclude_fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
405
340
  external_id: Optional[pulumi.Input[str]] = None,
406
341
  fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -408,14 +343,11 @@ class _MonitoredResourcesSearchState:
408
343
  host_name_contains: Optional[pulumi.Input[str]] = None,
409
344
  items: Optional[pulumi.Input[Sequence[pulumi.Input['MonitoredResourcesSearchItemArgs']]]] = None,
410
345
  license: Optional[pulumi.Input[str]] = None,
411
- lifecycle_states: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
412
346
  management_agent_id: Optional[pulumi.Input[str]] = None,
413
347
  name: Optional[pulumi.Input[str]] = None,
414
348
  name_contains: Optional[pulumi.Input[str]] = None,
415
349
  property_equals: Optional[pulumi.Input[Mapping[str, Any]]] = None,
416
- resource_category: Optional[pulumi.Input[str]] = None,
417
350
  resource_time_zone: Optional[pulumi.Input[str]] = None,
418
- source_type: Optional[pulumi.Input[str]] = None,
419
351
  state: Optional[pulumi.Input[str]] = None,
420
352
  time_created_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
421
353
  time_created_less_than: Optional[pulumi.Input[str]] = None,
@@ -425,7 +357,6 @@ class _MonitoredResourcesSearchState:
425
357
  """
426
358
  Input properties used for looking up and filtering MonitoredResourcesSearch resources.
427
359
  :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).
429
360
  :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.
430
361
  :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.
431
362
  :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.
@@ -433,14 +364,11 @@ class _MonitoredResourcesSearchState:
433
364
  :param pulumi.Input[str] host_name_contains: A filter to return resources with host name pattern.
434
365
  :param pulumi.Input[Sequence[pulumi.Input['MonitoredResourcesSearchItemArgs']]] items: List of monitored resources.
435
366
  :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.
437
367
  :param pulumi.Input[str] management_agent_id: A filter to return resources with matching management agent id.
438
368
  :param pulumi.Input[str] name: A filter to return resources that match exact resource name.
439
369
  :param pulumi.Input[str] name_contains: A filter to return resources that match resource name pattern given. The match is not case sensitive.
440
370
  :param pulumi.Input[Mapping[str, Any]] property_equals: Criteria based on resource property.
441
- :param pulumi.Input[str] resource_category: Resource category filter.
442
371
  :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.
444
372
  :param pulumi.Input[str] state: A filter to return resources with matching lifecycle state.
445
373
  :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).
446
374
 
@@ -462,8 +390,6 @@ class _MonitoredResourcesSearchState:
462
390
  """
463
391
  if compartment_id is not None:
464
392
  pulumi.set(__self__, "compartment_id", compartment_id)
465
- if compartment_ids is not None:
466
- pulumi.set(__self__, "compartment_ids", compartment_ids)
467
393
  if exclude_fields is not None:
468
394
  pulumi.set(__self__, "exclude_fields", exclude_fields)
469
395
  if external_id is not None:
@@ -478,8 +404,6 @@ class _MonitoredResourcesSearchState:
478
404
  pulumi.set(__self__, "items", items)
479
405
  if license is not None:
480
406
  pulumi.set(__self__, "license", license)
481
- if lifecycle_states is not None:
482
- pulumi.set(__self__, "lifecycle_states", lifecycle_states)
483
407
  if management_agent_id is not None:
484
408
  pulumi.set(__self__, "management_agent_id", management_agent_id)
485
409
  if name is not None:
@@ -488,12 +412,8 @@ class _MonitoredResourcesSearchState:
488
412
  pulumi.set(__self__, "name_contains", name_contains)
489
413
  if property_equals is not None:
490
414
  pulumi.set(__self__, "property_equals", property_equals)
491
- if resource_category is not None:
492
- pulumi.set(__self__, "resource_category", resource_category)
493
415
  if resource_time_zone is not None:
494
416
  pulumi.set(__self__, "resource_time_zone", resource_time_zone)
495
- if source_type is not None:
496
- pulumi.set(__self__, "source_type", source_type)
497
417
  if state is not None:
498
418
  pulumi.set(__self__, "state", state)
499
419
  if time_created_greater_than_or_equal_to is not None:
@@ -519,18 +439,6 @@ class _MonitoredResourcesSearchState:
519
439
  def compartment_id(self, value: Optional[pulumi.Input[str]]):
520
440
  pulumi.set(self, "compartment_id", value)
521
441
 
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
-
534
442
  @property
535
443
  @pulumi.getter(name="excludeFields")
536
444
  def exclude_fields(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -615,18 +523,6 @@ class _MonitoredResourcesSearchState:
615
523
  def license(self, value: Optional[pulumi.Input[str]]):
616
524
  pulumi.set(self, "license", value)
617
525
 
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
-
630
526
  @property
631
527
  @pulumi.getter(name="managementAgentId")
632
528
  def management_agent_id(self) -> Optional[pulumi.Input[str]]:
@@ -675,18 +571,6 @@ class _MonitoredResourcesSearchState:
675
571
  def property_equals(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
676
572
  pulumi.set(self, "property_equals", value)
677
573
 
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
-
690
574
  @property
691
575
  @pulumi.getter(name="resourceTimeZone")
692
576
  def resource_time_zone(self) -> Optional[pulumi.Input[str]]:
@@ -699,18 +583,6 @@ class _MonitoredResourcesSearchState:
699
583
  def resource_time_zone(self, value: Optional[pulumi.Input[str]]):
700
584
  pulumi.set(self, "resource_time_zone", value)
701
585
 
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
-
714
586
  @property
715
587
  @pulumi.getter
716
588
  def state(self) -> Optional[pulumi.Input[str]]:
@@ -802,21 +674,17 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
802
674
  resource_name: str,
803
675
  opts: Optional[pulumi.ResourceOptions] = None,
804
676
  compartment_id: Optional[pulumi.Input[str]] = None,
805
- compartment_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
806
677
  exclude_fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
807
678
  external_id: Optional[pulumi.Input[str]] = None,
808
679
  fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
809
680
  host_name: Optional[pulumi.Input[str]] = None,
810
681
  host_name_contains: Optional[pulumi.Input[str]] = None,
811
682
  license: Optional[pulumi.Input[str]] = None,
812
- lifecycle_states: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
813
683
  management_agent_id: Optional[pulumi.Input[str]] = None,
814
684
  name: Optional[pulumi.Input[str]] = None,
815
685
  name_contains: Optional[pulumi.Input[str]] = None,
816
686
  property_equals: Optional[pulumi.Input[Mapping[str, Any]]] = None,
817
- resource_category: Optional[pulumi.Input[str]] = None,
818
687
  resource_time_zone: Optional[pulumi.Input[str]] = None,
819
- source_type: Optional[pulumi.Input[str]] = None,
820
688
  state: Optional[pulumi.Input[str]] = None,
821
689
  time_created_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
822
690
  time_created_less_than: Optional[pulumi.Input[str]] = None,
@@ -838,20 +706,16 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
838
706
 
839
707
  test_monitored_resources_search = oci.stack_monitoring.MonitoredResourcesSearch("testMonitoredResourcesSearch",
840
708
  compartment_id=var["compartment_id"],
841
- compartment_ids=var["monitored_resources_search_compartment_ids"],
842
709
  exclude_fields=var["monitored_resources_search_exclude_fields"],
843
710
  external_id=oci_stack_monitoring_external["test_external"]["id"],
844
711
  fields=var["monitored_resources_search_fields"],
845
712
  host_name=var["monitored_resources_search_host_name"],
846
713
  host_name_contains=var["monitored_resources_search_host_name_contains"],
847
714
  license=var["monitored_resources_search_license"],
848
- lifecycle_states=var["monitored_resources_search_lifecycle_states"],
849
715
  management_agent_id=oci_management_agent_management_agent["test_management_agent"]["id"],
850
716
  name_contains=var["monitored_resources_search_name_contains"],
851
717
  property_equals=var["monitored_resources_search_property_equals"],
852
- resource_category=var["monitored_resources_search_resource_category"],
853
718
  resource_time_zone=var["monitored_resources_search_resource_time_zone"],
854
- source_type=var["monitored_resources_search_source_type"],
855
719
  state=var["monitored_resources_search_state"],
856
720
  time_created_greater_than_or_equal_to=var["monitored_resources_search_time_created_greater_than_or_equal_to"],
857
721
  time_created_less_than=var["monitored_resources_search_time_created_less_than"],
@@ -872,21 +736,17 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
872
736
  :param str resource_name: The name of the resource.
873
737
  :param pulumi.ResourceOptions opts: Options for the resource.
874
738
  :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).
876
739
  :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.
877
740
  :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.
878
741
  :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.
879
742
  :param pulumi.Input[str] host_name: A filter to return resources with host name match.
880
743
  :param pulumi.Input[str] host_name_contains: A filter to return resources with host name pattern.
881
744
  :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.
883
745
  :param pulumi.Input[str] management_agent_id: A filter to return resources with matching management agent id.
884
746
  :param pulumi.Input[str] name: A filter to return resources that match exact resource name.
885
747
  :param pulumi.Input[str] name_contains: A filter to return resources that match resource name pattern given. The match is not case sensitive.
886
748
  :param pulumi.Input[Mapping[str, Any]] property_equals: Criteria based on resource property.
887
- :param pulumi.Input[str] resource_category: Resource category filter.
888
749
  :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.
890
750
  :param pulumi.Input[str] state: A filter to return resources with matching lifecycle state.
891
751
  :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).
892
752
 
@@ -926,20 +786,16 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
926
786
 
927
787
  test_monitored_resources_search = oci.stack_monitoring.MonitoredResourcesSearch("testMonitoredResourcesSearch",
928
788
  compartment_id=var["compartment_id"],
929
- compartment_ids=var["monitored_resources_search_compartment_ids"],
930
789
  exclude_fields=var["monitored_resources_search_exclude_fields"],
931
790
  external_id=oci_stack_monitoring_external["test_external"]["id"],
932
791
  fields=var["monitored_resources_search_fields"],
933
792
  host_name=var["monitored_resources_search_host_name"],
934
793
  host_name_contains=var["monitored_resources_search_host_name_contains"],
935
794
  license=var["monitored_resources_search_license"],
936
- lifecycle_states=var["monitored_resources_search_lifecycle_states"],
937
795
  management_agent_id=oci_management_agent_management_agent["test_management_agent"]["id"],
938
796
  name_contains=var["monitored_resources_search_name_contains"],
939
797
  property_equals=var["monitored_resources_search_property_equals"],
940
- resource_category=var["monitored_resources_search_resource_category"],
941
798
  resource_time_zone=var["monitored_resources_search_resource_time_zone"],
942
- source_type=var["monitored_resources_search_source_type"],
943
799
  state=var["monitored_resources_search_state"],
944
800
  time_created_greater_than_or_equal_to=var["monitored_resources_search_time_created_greater_than_or_equal_to"],
945
801
  time_created_less_than=var["monitored_resources_search_time_created_less_than"],
@@ -973,21 +829,17 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
973
829
  resource_name: str,
974
830
  opts: Optional[pulumi.ResourceOptions] = None,
975
831
  compartment_id: Optional[pulumi.Input[str]] = None,
976
- compartment_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
977
832
  exclude_fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
978
833
  external_id: Optional[pulumi.Input[str]] = None,
979
834
  fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
980
835
  host_name: Optional[pulumi.Input[str]] = None,
981
836
  host_name_contains: Optional[pulumi.Input[str]] = None,
982
837
  license: Optional[pulumi.Input[str]] = None,
983
- lifecycle_states: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
984
838
  management_agent_id: Optional[pulumi.Input[str]] = None,
985
839
  name: Optional[pulumi.Input[str]] = None,
986
840
  name_contains: Optional[pulumi.Input[str]] = None,
987
841
  property_equals: Optional[pulumi.Input[Mapping[str, Any]]] = None,
988
- resource_category: Optional[pulumi.Input[str]] = None,
989
842
  resource_time_zone: Optional[pulumi.Input[str]] = None,
990
- source_type: Optional[pulumi.Input[str]] = None,
991
843
  state: Optional[pulumi.Input[str]] = None,
992
844
  time_created_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
993
845
  time_created_less_than: Optional[pulumi.Input[str]] = None,
@@ -1006,21 +858,17 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
1006
858
  if compartment_id is None and not opts.urn:
1007
859
  raise TypeError("Missing required property 'compartment_id'")
1008
860
  __props__.__dict__["compartment_id"] = compartment_id
1009
- __props__.__dict__["compartment_ids"] = compartment_ids
1010
861
  __props__.__dict__["exclude_fields"] = exclude_fields
1011
862
  __props__.__dict__["external_id"] = external_id
1012
863
  __props__.__dict__["fields"] = fields
1013
864
  __props__.__dict__["host_name"] = host_name
1014
865
  __props__.__dict__["host_name_contains"] = host_name_contains
1015
866
  __props__.__dict__["license"] = license
1016
- __props__.__dict__["lifecycle_states"] = lifecycle_states
1017
867
  __props__.__dict__["management_agent_id"] = management_agent_id
1018
868
  __props__.__dict__["name"] = name
1019
869
  __props__.__dict__["name_contains"] = name_contains
1020
870
  __props__.__dict__["property_equals"] = property_equals
1021
- __props__.__dict__["resource_category"] = resource_category
1022
871
  __props__.__dict__["resource_time_zone"] = resource_time_zone
1023
- __props__.__dict__["source_type"] = source_type
1024
872
  __props__.__dict__["state"] = state
1025
873
  __props__.__dict__["time_created_greater_than_or_equal_to"] = time_created_greater_than_or_equal_to
1026
874
  __props__.__dict__["time_created_less_than"] = time_created_less_than
@@ -1039,7 +887,6 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
1039
887
  id: pulumi.Input[str],
1040
888
  opts: Optional[pulumi.ResourceOptions] = None,
1041
889
  compartment_id: Optional[pulumi.Input[str]] = None,
1042
- compartment_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1043
890
  exclude_fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1044
891
  external_id: Optional[pulumi.Input[str]] = None,
1045
892
  fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -1047,14 +894,11 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
1047
894
  host_name_contains: Optional[pulumi.Input[str]] = None,
1048
895
  items: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MonitoredResourcesSearchItemArgs']]]]] = None,
1049
896
  license: Optional[pulumi.Input[str]] = None,
1050
- lifecycle_states: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1051
897
  management_agent_id: Optional[pulumi.Input[str]] = None,
1052
898
  name: Optional[pulumi.Input[str]] = None,
1053
899
  name_contains: Optional[pulumi.Input[str]] = None,
1054
900
  property_equals: Optional[pulumi.Input[Mapping[str, Any]]] = None,
1055
- resource_category: Optional[pulumi.Input[str]] = None,
1056
901
  resource_time_zone: Optional[pulumi.Input[str]] = None,
1057
- source_type: Optional[pulumi.Input[str]] = None,
1058
902
  state: Optional[pulumi.Input[str]] = None,
1059
903
  time_created_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
1060
904
  time_created_less_than: Optional[pulumi.Input[str]] = None,
@@ -1069,7 +913,6 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
1069
913
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1070
914
  :param pulumi.ResourceOptions opts: Options for the resource.
1071
915
  :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).
1073
916
  :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.
1074
917
  :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.
1075
918
  :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.
@@ -1077,14 +920,11 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
1077
920
  :param pulumi.Input[str] host_name_contains: A filter to return resources with host name pattern.
1078
921
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['MonitoredResourcesSearchItemArgs']]]] items: List of monitored resources.
1079
922
  :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.
1081
923
  :param pulumi.Input[str] management_agent_id: A filter to return resources with matching management agent id.
1082
924
  :param pulumi.Input[str] name: A filter to return resources that match exact resource name.
1083
925
  :param pulumi.Input[str] name_contains: A filter to return resources that match resource name pattern given. The match is not case sensitive.
1084
926
  :param pulumi.Input[Mapping[str, Any]] property_equals: Criteria based on resource property.
1085
- :param pulumi.Input[str] resource_category: Resource category filter.
1086
927
  :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.
1088
928
  :param pulumi.Input[str] state: A filter to return resources with matching lifecycle state.
1089
929
  :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).
1090
930
 
@@ -1109,7 +949,6 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
1109
949
  __props__ = _MonitoredResourcesSearchState.__new__(_MonitoredResourcesSearchState)
1110
950
 
1111
951
  __props__.__dict__["compartment_id"] = compartment_id
1112
- __props__.__dict__["compartment_ids"] = compartment_ids
1113
952
  __props__.__dict__["exclude_fields"] = exclude_fields
1114
953
  __props__.__dict__["external_id"] = external_id
1115
954
  __props__.__dict__["fields"] = fields
@@ -1117,14 +956,11 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
1117
956
  __props__.__dict__["host_name_contains"] = host_name_contains
1118
957
  __props__.__dict__["items"] = items
1119
958
  __props__.__dict__["license"] = license
1120
- __props__.__dict__["lifecycle_states"] = lifecycle_states
1121
959
  __props__.__dict__["management_agent_id"] = management_agent_id
1122
960
  __props__.__dict__["name"] = name
1123
961
  __props__.__dict__["name_contains"] = name_contains
1124
962
  __props__.__dict__["property_equals"] = property_equals
1125
- __props__.__dict__["resource_category"] = resource_category
1126
963
  __props__.__dict__["resource_time_zone"] = resource_time_zone
1127
- __props__.__dict__["source_type"] = source_type
1128
964
  __props__.__dict__["state"] = state
1129
965
  __props__.__dict__["time_created_greater_than_or_equal_to"] = time_created_greater_than_or_equal_to
1130
966
  __props__.__dict__["time_created_less_than"] = time_created_less_than
@@ -1141,14 +977,6 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
1141
977
  """
1142
978
  return pulumi.get(self, "compartment_id")
1143
979
 
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
-
1152
980
  @property
1153
981
  @pulumi.getter(name="excludeFields")
1154
982
  def exclude_fields(self) -> pulumi.Output[Optional[Sequence[str]]]:
@@ -1199,20 +1027,12 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
1199
1027
 
1200
1028
  @property
1201
1029
  @pulumi.getter
1202
- def license(self) -> pulumi.Output[Optional[str]]:
1030
+ def license(self) -> pulumi.Output[str]:
1203
1031
  """
1204
1032
  License edition of the monitored resource.
1205
1033
  """
1206
1034
  return pulumi.get(self, "license")
1207
1035
 
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
-
1216
1036
  @property
1217
1037
  @pulumi.getter(name="managementAgentId")
1218
1038
  def management_agent_id(self) -> pulumi.Output[Optional[str]]:
@@ -1245,14 +1065,6 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
1245
1065
  """
1246
1066
  return pulumi.get(self, "property_equals")
1247
1067
 
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
-
1256
1068
  @property
1257
1069
  @pulumi.getter(name="resourceTimeZone")
1258
1070
  def resource_time_zone(self) -> pulumi.Output[Optional[str]]:
@@ -1261,14 +1073,6 @@ class MonitoredResourcesSearch(pulumi.CustomResource):
1261
1073
  """
1262
1074
  return pulumi.get(self, "resource_time_zone")
1263
1075
 
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
-
1272
1076
  @property
1273
1077
  @pulumi.getter
1274
1078
  def state(self) -> pulumi.Output[Optional[str]]: