pulumi-oci 1.32.0__py3-none-any.whl → 1.32.0a1712988952__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 (35) hide show
  1. pulumi_oci/__init__.py +0 -16
  2. pulumi_oci/database/__init__.py +0 -3
  3. pulumi_oci/database/_inputs.py +0 -192
  4. pulumi_oci/database/autonomous_container_database.py +8 -83
  5. pulumi_oci/database/autonomous_vm_cluster.py +4 -12
  6. pulumi_oci/database/get_autonomous_container_database.py +5 -26
  7. pulumi_oci/database/get_autonomous_container_database_resource_usage.py +3 -3
  8. pulumi_oci/database/get_autonomous_vm_cluster.py +1 -3
  9. pulumi_oci/database/outputs.py +28 -538
  10. pulumi_oci/datascience/_inputs.py +1 -17
  11. pulumi_oci/datascience/model_deployment.py +0 -2
  12. pulumi_oci/datascience/outputs.py +3 -39
  13. pulumi_oci/meteringcomputation/__init__.py +0 -3
  14. pulumi_oci/meteringcomputation/_inputs.py +0 -110
  15. pulumi_oci/meteringcomputation/get_schedule.py +1 -1
  16. pulumi_oci/meteringcomputation/get_scheduled_run.py +2 -2
  17. pulumi_oci/meteringcomputation/outputs.py +2 -292
  18. pulumi_oci/meteringcomputation/schedule.py +7 -7
  19. pulumi_oci/opa/opa_instance.py +22 -41
  20. pulumi_oci/psql/_inputs.py +4 -4
  21. pulumi_oci/psql/db_system.py +7 -7
  22. pulumi_oci/psql/outputs.py +4 -4
  23. pulumi_oci/redis/get_redis_cluster.py +1 -14
  24. pulumi_oci/redis/outputs.py +0 -11
  25. pulumi_oci/redis/redis_cluster.py +3 -52
  26. {pulumi_oci-1.32.0.dist-info → pulumi_oci-1.32.0a1712988952.dist-info}/METADATA +1 -1
  27. {pulumi_oci-1.32.0.dist-info → pulumi_oci-1.32.0a1712988952.dist-info}/RECORD +29 -35
  28. pulumi_oci/database/autonomous_database_software_image.py +0 -638
  29. pulumi_oci/database/get_autonomous_database_software_image.py +0 -262
  30. pulumi_oci/database/get_autonomous_database_software_images.py +0 -200
  31. pulumi_oci/meteringcomputation/get_usage_statement_email_recipients_group.py +0 -173
  32. pulumi_oci/meteringcomputation/get_usage_statement_email_recipients_groups.py +0 -157
  33. pulumi_oci/meteringcomputation/usage_statement_email_recipients_group.py +0 -392
  34. {pulumi_oci-1.32.0.dist-info → pulumi_oci-1.32.0a1712988952.dist-info}/WHEEL +0 -0
  35. {pulumi_oci-1.32.0.dist-info → pulumi_oci-1.32.0a1712988952.dist-info}/top_level.txt +0 -0
@@ -33,7 +33,6 @@ __all__ = [
33
33
  'UsageGroupByTag',
34
34
  'UsageItem',
35
35
  'UsageItemTag',
36
- 'UsageStatementEmailRecipientsGroupRecipientsList',
37
36
  'GetConfigurationItemResult',
38
37
  'GetCustomTableSavedCustomTableResult',
39
38
  'GetCustomTableSavedCustomTableGroupByTagResult',
@@ -81,11 +80,6 @@ __all__ = [
81
80
  'GetUsageCarbonEmissionsQueryQueryDefinitionCostAnalysisUiResult',
82
81
  'GetUsageCarbonEmissionsQueryQueryDefinitionReportQueryResult',
83
82
  'GetUsageCarbonEmissionsQueryQueryDefinitionReportQueryGroupByTagResult',
84
- 'GetUsageStatementEmailRecipientsGroupRecipientsListResult',
85
- 'GetUsageStatementEmailRecipientsGroupsEmailRecipientsGroupCollectionResult',
86
- 'GetUsageStatementEmailRecipientsGroupsEmailRecipientsGroupCollectionItemResult',
87
- 'GetUsageStatementEmailRecipientsGroupsEmailRecipientsGroupCollectionItemRecipientsListResult',
88
- 'GetUsageStatementEmailRecipientsGroupsFilterResult',
89
83
  ]
90
84
 
91
85
  @pulumi.output_type
@@ -2207,80 +2201,6 @@ class UsageItemTag(dict):
2207
2201
  return pulumi.get(self, "value")
2208
2202
 
2209
2203
 
2210
- @pulumi.output_type
2211
- class UsageStatementEmailRecipientsGroupRecipientsList(dict):
2212
- @staticmethod
2213
- def __key_warning(key: str):
2214
- suggest = None
2215
- if key == "emailId":
2216
- suggest = "email_id"
2217
- elif key == "firstName":
2218
- suggest = "first_name"
2219
- elif key == "lastName":
2220
- suggest = "last_name"
2221
-
2222
- if suggest:
2223
- pulumi.log.warn(f"Key '{key}' not found in UsageStatementEmailRecipientsGroupRecipientsList. Access the value via the '{suggest}' property getter instead.")
2224
-
2225
- def __getitem__(self, key: str) -> Any:
2226
- UsageStatementEmailRecipientsGroupRecipientsList.__key_warning(key)
2227
- return super().__getitem__(key)
2228
-
2229
- def get(self, key: str, default = None) -> Any:
2230
- UsageStatementEmailRecipientsGroupRecipientsList.__key_warning(key)
2231
- return super().get(key, default)
2232
-
2233
- def __init__(__self__, *,
2234
- email_id: str,
2235
- state: str,
2236
- first_name: Optional[str] = None,
2237
- last_name: Optional[str] = None):
2238
- """
2239
- :param str email_id: (Updatable) the email of the recipient.
2240
- :param str state: (Updatable) The email recipient lifecycle state.
2241
- :param str first_name: (Updatable) the first name of the recipient.
2242
- :param str last_name: (Updatable) the last name of the recipient.
2243
- """
2244
- pulumi.set(__self__, "email_id", email_id)
2245
- pulumi.set(__self__, "state", state)
2246
- if first_name is not None:
2247
- pulumi.set(__self__, "first_name", first_name)
2248
- if last_name is not None:
2249
- pulumi.set(__self__, "last_name", last_name)
2250
-
2251
- @property
2252
- @pulumi.getter(name="emailId")
2253
- def email_id(self) -> str:
2254
- """
2255
- (Updatable) the email of the recipient.
2256
- """
2257
- return pulumi.get(self, "email_id")
2258
-
2259
- @property
2260
- @pulumi.getter
2261
- def state(self) -> str:
2262
- """
2263
- (Updatable) The email recipient lifecycle state.
2264
- """
2265
- return pulumi.get(self, "state")
2266
-
2267
- @property
2268
- @pulumi.getter(name="firstName")
2269
- def first_name(self) -> Optional[str]:
2270
- """
2271
- (Updatable) the first name of the recipient.
2272
- """
2273
- return pulumi.get(self, "first_name")
2274
-
2275
- @property
2276
- @pulumi.getter(name="lastName")
2277
- def last_name(self) -> Optional[str]:
2278
- """
2279
- (Updatable) the last name of the recipient.
2280
- """
2281
- return pulumi.get(self, "last_name")
2282
-
2283
-
2284
2204
  @pulumi.output_type
2285
2205
  class GetConfigurationItemResult(dict):
2286
2206
  def __init__(__self__, *,
@@ -3723,7 +3643,7 @@ class GetSchedulesScheduleCollectionItemResult(dict):
3723
3643
  :param Sequence['GetSchedulesScheduleCollectionItemQueryPropertyArgs'] query_properties: The query properties.
3724
3644
  :param Sequence['GetSchedulesScheduleCollectionItemResultLocationArgs'] result_locations: The location where usage or cost CSVs will be uploaded defined by `locationType`, which corresponds with type-specific characteristics.
3725
3645
  :param str saved_report_id: The saved report ID which can also be used to generate a query.
3726
- :param str schedule_recurrences: Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
3646
+ :param str schedule_recurrences: Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
3727
3647
  :param str state: The schedule lifecycle state.
3728
3648
  :param Mapping[str, Any] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"orcl-cloud.free-tier-retained": "true"}`
3729
3649
  :param str time_created: The date and time the schedule was created.
@@ -3831,7 +3751,7 @@ class GetSchedulesScheduleCollectionItemResult(dict):
3831
3751
  @pulumi.getter(name="scheduleRecurrences")
3832
3752
  def schedule_recurrences(self) -> str:
3833
3753
  """
3834
- Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
3754
+ Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
3835
3755
  """
3836
3756
  return pulumi.get(self, "schedule_recurrences")
3837
3757
 
@@ -4669,213 +4589,3 @@ class GetUsageCarbonEmissionsQueryQueryDefinitionReportQueryGroupByTagResult(dic
4669
4589
  return pulumi.get(self, "value")
4670
4590
 
4671
4591
 
4672
- @pulumi.output_type
4673
- class GetUsageStatementEmailRecipientsGroupRecipientsListResult(dict):
4674
- def __init__(__self__, *,
4675
- email_id: str,
4676
- first_name: str,
4677
- last_name: str,
4678
- state: str):
4679
- """
4680
- :param str email_id: the email of the recipient.
4681
- :param str first_name: the first name of the recipient.
4682
- :param str last_name: the last name of the recipient.
4683
- :param str state: The email recipient group lifecycle state.
4684
- """
4685
- pulumi.set(__self__, "email_id", email_id)
4686
- pulumi.set(__self__, "first_name", first_name)
4687
- pulumi.set(__self__, "last_name", last_name)
4688
- pulumi.set(__self__, "state", state)
4689
-
4690
- @property
4691
- @pulumi.getter(name="emailId")
4692
- def email_id(self) -> str:
4693
- """
4694
- the email of the recipient.
4695
- """
4696
- return pulumi.get(self, "email_id")
4697
-
4698
- @property
4699
- @pulumi.getter(name="firstName")
4700
- def first_name(self) -> str:
4701
- """
4702
- the first name of the recipient.
4703
- """
4704
- return pulumi.get(self, "first_name")
4705
-
4706
- @property
4707
- @pulumi.getter(name="lastName")
4708
- def last_name(self) -> str:
4709
- """
4710
- the last name of the recipient.
4711
- """
4712
- return pulumi.get(self, "last_name")
4713
-
4714
- @property
4715
- @pulumi.getter
4716
- def state(self) -> str:
4717
- """
4718
- The email recipient group lifecycle state.
4719
- """
4720
- return pulumi.get(self, "state")
4721
-
4722
-
4723
- @pulumi.output_type
4724
- class GetUsageStatementEmailRecipientsGroupsEmailRecipientsGroupCollectionResult(dict):
4725
- def __init__(__self__, *,
4726
- items: Sequence['outputs.GetUsageStatementEmailRecipientsGroupsEmailRecipientsGroupCollectionItemResult']):
4727
- pulumi.set(__self__, "items", items)
4728
-
4729
- @property
4730
- @pulumi.getter
4731
- def items(self) -> Sequence['outputs.GetUsageStatementEmailRecipientsGroupsEmailRecipientsGroupCollectionItemResult']:
4732
- return pulumi.get(self, "items")
4733
-
4734
-
4735
- @pulumi.output_type
4736
- class GetUsageStatementEmailRecipientsGroupsEmailRecipientsGroupCollectionItemResult(dict):
4737
- def __init__(__self__, *,
4738
- compartment_id: str,
4739
- email_recipients_group_id: str,
4740
- id: str,
4741
- recipients_lists: Sequence['outputs.GetUsageStatementEmailRecipientsGroupsEmailRecipientsGroupCollectionItemRecipientsListResult'],
4742
- state: str,
4743
- subscription_id: str):
4744
- """
4745
- :param str compartment_id: The compartment ID in which to list resources.
4746
- :param str id: The usage statement email recipients group OCID.
4747
- :param Sequence['GetUsageStatementEmailRecipientsGroupsEmailRecipientsGroupCollectionItemRecipientsListArgs'] recipients_lists: The list of recipient will receive the usage statement email.
4748
- :param str state: The email recipient group lifecycle state.
4749
- :param str subscription_id: The UsageStatement Subscription unique OCID.
4750
- """
4751
- pulumi.set(__self__, "compartment_id", compartment_id)
4752
- pulumi.set(__self__, "email_recipients_group_id", email_recipients_group_id)
4753
- pulumi.set(__self__, "id", id)
4754
- pulumi.set(__self__, "recipients_lists", recipients_lists)
4755
- pulumi.set(__self__, "state", state)
4756
- pulumi.set(__self__, "subscription_id", subscription_id)
4757
-
4758
- @property
4759
- @pulumi.getter(name="compartmentId")
4760
- def compartment_id(self) -> str:
4761
- """
4762
- The compartment ID in which to list resources.
4763
- """
4764
- return pulumi.get(self, "compartment_id")
4765
-
4766
- @property
4767
- @pulumi.getter(name="emailRecipientsGroupId")
4768
- def email_recipients_group_id(self) -> str:
4769
- return pulumi.get(self, "email_recipients_group_id")
4770
-
4771
- @property
4772
- @pulumi.getter
4773
- def id(self) -> str:
4774
- """
4775
- The usage statement email recipients group OCID.
4776
- """
4777
- return pulumi.get(self, "id")
4778
-
4779
- @property
4780
- @pulumi.getter(name="recipientsLists")
4781
- def recipients_lists(self) -> Sequence['outputs.GetUsageStatementEmailRecipientsGroupsEmailRecipientsGroupCollectionItemRecipientsListResult']:
4782
- """
4783
- The list of recipient will receive the usage statement email.
4784
- """
4785
- return pulumi.get(self, "recipients_lists")
4786
-
4787
- @property
4788
- @pulumi.getter
4789
- def state(self) -> str:
4790
- """
4791
- The email recipient group lifecycle state.
4792
- """
4793
- return pulumi.get(self, "state")
4794
-
4795
- @property
4796
- @pulumi.getter(name="subscriptionId")
4797
- def subscription_id(self) -> str:
4798
- """
4799
- The UsageStatement Subscription unique OCID.
4800
- """
4801
- return pulumi.get(self, "subscription_id")
4802
-
4803
-
4804
- @pulumi.output_type
4805
- class GetUsageStatementEmailRecipientsGroupsEmailRecipientsGroupCollectionItemRecipientsListResult(dict):
4806
- def __init__(__self__, *,
4807
- email_id: str,
4808
- first_name: str,
4809
- last_name: str,
4810
- state: str):
4811
- """
4812
- :param str email_id: the email of the recipient.
4813
- :param str first_name: the first name of the recipient.
4814
- :param str last_name: the last name of the recipient.
4815
- :param str state: The email recipient group lifecycle state.
4816
- """
4817
- pulumi.set(__self__, "email_id", email_id)
4818
- pulumi.set(__self__, "first_name", first_name)
4819
- pulumi.set(__self__, "last_name", last_name)
4820
- pulumi.set(__self__, "state", state)
4821
-
4822
- @property
4823
- @pulumi.getter(name="emailId")
4824
- def email_id(self) -> str:
4825
- """
4826
- the email of the recipient.
4827
- """
4828
- return pulumi.get(self, "email_id")
4829
-
4830
- @property
4831
- @pulumi.getter(name="firstName")
4832
- def first_name(self) -> str:
4833
- """
4834
- the first name of the recipient.
4835
- """
4836
- return pulumi.get(self, "first_name")
4837
-
4838
- @property
4839
- @pulumi.getter(name="lastName")
4840
- def last_name(self) -> str:
4841
- """
4842
- the last name of the recipient.
4843
- """
4844
- return pulumi.get(self, "last_name")
4845
-
4846
- @property
4847
- @pulumi.getter
4848
- def state(self) -> str:
4849
- """
4850
- The email recipient group lifecycle state.
4851
- """
4852
- return pulumi.get(self, "state")
4853
-
4854
-
4855
- @pulumi.output_type
4856
- class GetUsageStatementEmailRecipientsGroupsFilterResult(dict):
4857
- def __init__(__self__, *,
4858
- name: str,
4859
- values: Sequence[str],
4860
- regex: Optional[bool] = None):
4861
- pulumi.set(__self__, "name", name)
4862
- pulumi.set(__self__, "values", values)
4863
- if regex is not None:
4864
- pulumi.set(__self__, "regex", regex)
4865
-
4866
- @property
4867
- @pulumi.getter
4868
- def name(self) -> str:
4869
- return pulumi.get(self, "name")
4870
-
4871
- @property
4872
- @pulumi.getter
4873
- def values(self) -> Sequence[str]:
4874
- return pulumi.get(self, "values")
4875
-
4876
- @property
4877
- @pulumi.getter
4878
- def regex(self) -> Optional[bool]:
4879
- return pulumi.get(self, "regex")
4880
-
4881
-
@@ -31,7 +31,7 @@ class ScheduleArgs:
31
31
  The set of arguments for constructing a Schedule resource.
32
32
  :param pulumi.Input[str] compartment_id: The customer tenancy.
33
33
  :param pulumi.Input['ScheduleResultLocationArgs'] result_location: (Updatable) The location where usage or cost CSVs will be uploaded defined by `locationType`, which corresponds with type-specific characteristics.
34
- :param pulumi.Input[str] schedule_recurrences: Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
34
+ :param pulumi.Input[str] schedule_recurrences: Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
35
35
  :param pulumi.Input[str] time_scheduled: The date and time of the first time job execution.
36
36
 
37
37
 
@@ -92,7 +92,7 @@ class ScheduleArgs:
92
92
  @pulumi.getter(name="scheduleRecurrences")
93
93
  def schedule_recurrences(self) -> pulumi.Input[str]:
94
94
  """
95
- Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
95
+ Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
96
96
  """
97
97
  return pulumi.get(self, "schedule_recurrences")
98
98
 
@@ -230,7 +230,7 @@ class _ScheduleState:
230
230
  :param pulumi.Input['ScheduleQueryPropertiesArgs'] query_properties: The query properties.
231
231
  :param pulumi.Input['ScheduleResultLocationArgs'] result_location: (Updatable) The location where usage or cost CSVs will be uploaded defined by `locationType`, which corresponds with type-specific characteristics.
232
232
  :param pulumi.Input[str] saved_report_id: The saved report ID which can also be used to generate a query.
233
- :param pulumi.Input[str] schedule_recurrences: Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
233
+ :param pulumi.Input[str] schedule_recurrences: Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
234
234
  :param pulumi.Input[str] state: The schedule lifecycle state.
235
235
  :param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"orcl-cloud.free-tier-retained": "true"}`
236
236
  :param pulumi.Input[str] time_created: The date and time the schedule was created.
@@ -384,7 +384,7 @@ class _ScheduleState:
384
384
  @pulumi.getter(name="scheduleRecurrences")
385
385
  def schedule_recurrences(self) -> Optional[pulumi.Input[str]]:
386
386
  """
387
- Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
387
+ Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
388
388
  """
389
389
  return pulumi.get(self, "schedule_recurrences")
390
390
 
@@ -546,7 +546,7 @@ class Schedule(pulumi.CustomResource):
546
546
  :param pulumi.Input[pulumi.InputType['ScheduleQueryPropertiesArgs']] query_properties: The query properties.
547
547
  :param pulumi.Input[pulumi.InputType['ScheduleResultLocationArgs']] result_location: (Updatable) The location where usage or cost CSVs will be uploaded defined by `locationType`, which corresponds with type-specific characteristics.
548
548
  :param pulumi.Input[str] saved_report_id: The saved report ID which can also be used to generate a query.
549
- :param pulumi.Input[str] schedule_recurrences: Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
549
+ :param pulumi.Input[str] schedule_recurrences: Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
550
550
  :param pulumi.Input[str] time_scheduled: The date and time of the first time job execution.
551
551
 
552
552
 
@@ -719,7 +719,7 @@ class Schedule(pulumi.CustomResource):
719
719
  :param pulumi.Input[pulumi.InputType['ScheduleQueryPropertiesArgs']] query_properties: The query properties.
720
720
  :param pulumi.Input[pulumi.InputType['ScheduleResultLocationArgs']] result_location: (Updatable) The location where usage or cost CSVs will be uploaded defined by `locationType`, which corresponds with type-specific characteristics.
721
721
  :param pulumi.Input[str] saved_report_id: The saved report ID which can also be used to generate a query.
722
- :param pulumi.Input[str] schedule_recurrences: Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
722
+ :param pulumi.Input[str] schedule_recurrences: Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
723
723
  :param pulumi.Input[str] state: The schedule lifecycle state.
724
724
  :param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"orcl-cloud.free-tier-retained": "true"}`
725
725
  :param pulumi.Input[str] time_created: The date and time the schedule was created.
@@ -827,7 +827,7 @@ class Schedule(pulumi.CustomResource):
827
827
  @pulumi.getter(name="scheduleRecurrences")
828
828
  def schedule_recurrences(self) -> pulumi.Output[str]:
829
829
  """
830
- Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
830
+ Specifies the frequency according to when the schedule will be run, in the x-obmcs-recurring-time format described in [RFC 5545 section 3.3.10](https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10). Supported values are : ONE_TIME, DAILY, WEEKLY and MONTHLY.
831
831
  """
832
832
  return pulumi.get(self, "schedule_recurrences")
833
833
 
@@ -25,13 +25,16 @@ class OpaInstanceArgs:
25
25
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
26
26
  idcs_at: Optional[pulumi.Input[str]] = None,
27
27
  is_breakglass_enabled: Optional[pulumi.Input[bool]] = None,
28
- metering_type: Optional[pulumi.Input[str]] = None,
29
- state: Optional[pulumi.Input[str]] = None):
28
+ metering_type: Optional[pulumi.Input[str]] = None):
30
29
  """
31
30
  The set of arguments for constructing a OpaInstance resource.
32
31
  :param pulumi.Input[str] compartment_id: (Updatable) Compartment Identifier
33
32
  :param pulumi.Input[str] display_name: (Updatable) OpaInstance Identifier. User-friendly name for the instance. Avoid entering confidential information. You can change this value anytime.
34
33
  :param pulumi.Input[str] shape_name: Shape of the instance.
34
+
35
+
36
+ ** IMPORTANT **
37
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
35
38
  :param pulumi.Input[str] consumption_model: Parameter specifying which entitlement to use for billing purposes
36
39
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
37
40
  :param pulumi.Input[str] description: (Updatable) Description of the Oracle Process Automation instance.
@@ -39,11 +42,6 @@ class OpaInstanceArgs:
39
42
  :param pulumi.Input[str] idcs_at: IDCS Authentication token. This is required for all realms with IDCS. This property is optional, as it is not required for non-IDCS realms.
40
43
  :param pulumi.Input[bool] is_breakglass_enabled: indicates if breakGlass is enabled for the opa instance.
41
44
  :param pulumi.Input[str] metering_type: MeteringType Identifier
42
- :param pulumi.Input[str] state: (Updatable) The target state for the Opa Instance. Could be set to `ACTIVE` or `INACTIVE`.
43
-
44
-
45
- ** IMPORTANT **
46
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
47
45
  """
48
46
  pulumi.set(__self__, "compartment_id", compartment_id)
49
47
  pulumi.set(__self__, "display_name", display_name)
@@ -62,8 +60,6 @@ class OpaInstanceArgs:
62
60
  pulumi.set(__self__, "is_breakglass_enabled", is_breakglass_enabled)
63
61
  if metering_type is not None:
64
62
  pulumi.set(__self__, "metering_type", metering_type)
65
- if state is not None:
66
- pulumi.set(__self__, "state", state)
67
63
 
68
64
  @property
69
65
  @pulumi.getter(name="compartmentId")
@@ -94,6 +90,10 @@ class OpaInstanceArgs:
94
90
  def shape_name(self) -> pulumi.Input[str]:
95
91
  """
96
92
  Shape of the instance.
93
+
94
+
95
+ ** IMPORTANT **
96
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
97
97
  """
98
98
  return pulumi.get(self, "shape_name")
99
99
 
@@ -185,22 +185,6 @@ class OpaInstanceArgs:
185
185
  def metering_type(self, value: Optional[pulumi.Input[str]]):
186
186
  pulumi.set(self, "metering_type", value)
187
187
 
188
- @property
189
- @pulumi.getter
190
- def state(self) -> Optional[pulumi.Input[str]]:
191
- """
192
- (Updatable) The target state for the Opa Instance. Could be set to `ACTIVE` or `INACTIVE`.
193
-
194
-
195
- ** IMPORTANT **
196
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
197
- """
198
- return pulumi.get(self, "state")
199
-
200
- @state.setter
201
- def state(self, value: Optional[pulumi.Input[str]]):
202
- pulumi.set(self, "state", value)
203
-
204
188
 
205
189
  @pulumi.input_type
206
190
  class _OpaInstanceState:
@@ -243,11 +227,11 @@ class _OpaInstanceState:
243
227
  :param pulumi.Input[bool] is_breakglass_enabled: indicates if breakGlass is enabled for the opa instance.
244
228
  :param pulumi.Input[str] metering_type: MeteringType Identifier
245
229
  :param pulumi.Input[str] shape_name: Shape of the instance.
246
- :param pulumi.Input[str] state: (Updatable) The target state for the Opa Instance. Could be set to `ACTIVE` or `INACTIVE`.
247
230
 
248
231
 
249
232
  ** IMPORTANT **
250
233
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
234
+ :param pulumi.Input[str] state: The current state of the OpaInstance.
251
235
  :param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
252
236
  :param pulumi.Input[str] time_created: The time when OpaInstance was created. An RFC3339 formatted datetime string
253
237
  :param pulumi.Input[str] time_updated: The time the OpaInstance was updated. An RFC3339 formatted datetime string
@@ -478,6 +462,10 @@ class _OpaInstanceState:
478
462
  def shape_name(self) -> Optional[pulumi.Input[str]]:
479
463
  """
480
464
  Shape of the instance.
465
+
466
+
467
+ ** IMPORTANT **
468
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
481
469
  """
482
470
  return pulumi.get(self, "shape_name")
483
471
 
@@ -489,11 +477,7 @@ class _OpaInstanceState:
489
477
  @pulumi.getter
490
478
  def state(self) -> Optional[pulumi.Input[str]]:
491
479
  """
492
- (Updatable) The target state for the Opa Instance. Could be set to `ACTIVE` or `INACTIVE`.
493
-
494
-
495
- ** IMPORTANT **
496
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
480
+ The current state of the OpaInstance.
497
481
  """
498
482
  return pulumi.get(self, "state")
499
483
 
@@ -553,7 +537,6 @@ class OpaInstance(pulumi.CustomResource):
553
537
  is_breakglass_enabled: Optional[pulumi.Input[bool]] = None,
554
538
  metering_type: Optional[pulumi.Input[str]] = None,
555
539
  shape_name: Optional[pulumi.Input[str]] = None,
556
- state: Optional[pulumi.Input[str]] = None,
557
540
  __props__=None):
558
541
  """
559
542
  This resource provides the Opa Instance resource in Oracle Cloud Infrastructure Opa service.
@@ -605,7 +588,6 @@ class OpaInstance(pulumi.CustomResource):
605
588
  :param pulumi.Input[bool] is_breakglass_enabled: indicates if breakGlass is enabled for the opa instance.
606
589
  :param pulumi.Input[str] metering_type: MeteringType Identifier
607
590
  :param pulumi.Input[str] shape_name: Shape of the instance.
608
- :param pulumi.Input[str] state: (Updatable) The target state for the Opa Instance. Could be set to `ACTIVE` or `INACTIVE`.
609
591
 
610
592
 
611
593
  ** IMPORTANT **
@@ -680,7 +662,6 @@ class OpaInstance(pulumi.CustomResource):
680
662
  is_breakglass_enabled: Optional[pulumi.Input[bool]] = None,
681
663
  metering_type: Optional[pulumi.Input[str]] = None,
682
664
  shape_name: Optional[pulumi.Input[str]] = None,
683
- state: Optional[pulumi.Input[str]] = None,
684
665
  __props__=None):
685
666
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
686
667
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -706,13 +687,13 @@ class OpaInstance(pulumi.CustomResource):
706
687
  if shape_name is None and not opts.urn:
707
688
  raise TypeError("Missing required property 'shape_name'")
708
689
  __props__.__dict__["shape_name"] = shape_name
709
- __props__.__dict__["state"] = state
710
690
  __props__.__dict__["attachments"] = None
711
691
  __props__.__dict__["identity_app_display_name"] = None
712
692
  __props__.__dict__["identity_app_guid"] = None
713
693
  __props__.__dict__["identity_app_opc_service_instance_guid"] = None
714
694
  __props__.__dict__["identity_domain_url"] = None
715
695
  __props__.__dict__["instance_url"] = None
696
+ __props__.__dict__["state"] = None
716
697
  __props__.__dict__["system_tags"] = None
717
698
  __props__.__dict__["time_created"] = None
718
699
  __props__.__dict__["time_updated"] = None
@@ -769,11 +750,11 @@ class OpaInstance(pulumi.CustomResource):
769
750
  :param pulumi.Input[bool] is_breakglass_enabled: indicates if breakGlass is enabled for the opa instance.
770
751
  :param pulumi.Input[str] metering_type: MeteringType Identifier
771
752
  :param pulumi.Input[str] shape_name: Shape of the instance.
772
- :param pulumi.Input[str] state: (Updatable) The target state for the Opa Instance. Could be set to `ACTIVE` or `INACTIVE`.
773
753
 
774
754
 
775
755
  ** IMPORTANT **
776
756
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
757
+ :param pulumi.Input[str] state: The current state of the OpaInstance.
777
758
  :param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
778
759
  :param pulumi.Input[str] time_created: The time when OpaInstance was created. An RFC3339 formatted datetime string
779
760
  :param pulumi.Input[str] time_updated: The time the OpaInstance was updated. An RFC3339 formatted datetime string
@@ -929,6 +910,10 @@ class OpaInstance(pulumi.CustomResource):
929
910
  def shape_name(self) -> pulumi.Output[str]:
930
911
  """
931
912
  Shape of the instance.
913
+
914
+
915
+ ** IMPORTANT **
916
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
932
917
  """
933
918
  return pulumi.get(self, "shape_name")
934
919
 
@@ -936,11 +921,7 @@ class OpaInstance(pulumi.CustomResource):
936
921
  @pulumi.getter
937
922
  def state(self) -> pulumi.Output[str]:
938
923
  """
939
- (Updatable) The target state for the Opa Instance. Could be set to `ACTIVE` or `INACTIVE`.
940
-
941
-
942
- ** IMPORTANT **
943
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
924
+ The current state of the OpaInstance.
944
925
  """
945
926
  return pulumi.get(self, "state")
946
927
 
@@ -861,7 +861,7 @@ class DbSystemSourceArgs:
861
861
  backup_id: Optional[pulumi.Input[str]] = None,
862
862
  is_having_restore_config_overrides: Optional[pulumi.Input[bool]] = None):
863
863
  """
864
- :param pulumi.Input[str] source_type: The source descriminator. Example: `{"source_type": "BACKUP"}`.
864
+ :param pulumi.Input[str] source_type: The source descriminator.
865
865
  :param pulumi.Input[str] backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database system backup.
866
866
  :param pulumi.Input[bool] is_having_restore_config_overrides: Deprecated. Don't use.
867
867
  """
@@ -875,7 +875,7 @@ class DbSystemSourceArgs:
875
875
  @pulumi.getter(name="sourceType")
876
876
  def source_type(self) -> pulumi.Input[str]:
877
877
  """
878
- The source descriminator. Example: `{"source_type": "BACKUP"}`.
878
+ The source descriminator.
879
879
  """
880
880
  return pulumi.get(self, "source_type")
881
881
 
@@ -923,7 +923,7 @@ class DbSystemStorageDetailsArgs:
923
923
  ** IMPORTANT **
924
924
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
925
925
  :param pulumi.Input[str] availability_domain: Specifies the availability domain of AD-local storage. If `isRegionallyDurable` is set to true, `availabilityDomain` should not be specified. If `isRegionallyDurable` is set to false, `availabilityDomain` must be specified.
926
- :param pulumi.Input[str] iops: (Updatable) Guaranteed input/output storage requests per second (IOPS) available to the database system. Find more about the supported Peformance Tiers [here](https://docs.oracle.com/en-us/iaas/Content/postgresql/performance-tiers.htm).
926
+ :param pulumi.Input[str] iops: (Updatable) Guaranteed input/output storage requests per second (IOPS) available to the database system.
927
927
  """
928
928
  pulumi.set(__self__, "is_regionally_durable", is_regionally_durable)
929
929
  pulumi.set(__self__, "system_type", system_type)
@@ -976,7 +976,7 @@ class DbSystemStorageDetailsArgs:
976
976
  @pulumi.getter
977
977
  def iops(self) -> Optional[pulumi.Input[str]]:
978
978
  """
979
- (Updatable) Guaranteed input/output storage requests per second (IOPS) available to the database system. Find more about the supported Peformance Tiers [here](https://docs.oracle.com/en-us/iaas/Content/postgresql/performance-tiers.htm).
979
+ (Updatable) Guaranteed input/output storage requests per second (IOPS) available to the database system.
980
980
  """
981
981
  return pulumi.get(self, "iops")
982
982