pulumi-oci 1.32.0a1712988952__py3-none-any.whl → 1.32.0a1713427052__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 +16 -0
  2. pulumi_oci/database/__init__.py +3 -0
  3. pulumi_oci/database/_inputs.py +192 -0
  4. pulumi_oci/database/autonomous_container_database.py +83 -8
  5. pulumi_oci/database/autonomous_database_software_image.py +638 -0
  6. pulumi_oci/database/autonomous_vm_cluster.py +12 -4
  7. pulumi_oci/database/get_autonomous_container_database.py +26 -5
  8. pulumi_oci/database/get_autonomous_container_database_resource_usage.py +3 -3
  9. pulumi_oci/database/get_autonomous_database_software_image.py +262 -0
  10. pulumi_oci/database/get_autonomous_database_software_images.py +200 -0
  11. pulumi_oci/database/get_autonomous_vm_cluster.py +3 -1
  12. pulumi_oci/database/outputs.py +538 -28
  13. pulumi_oci/datascience/_inputs.py +17 -1
  14. pulumi_oci/datascience/model_deployment.py +2 -0
  15. pulumi_oci/datascience/outputs.py +39 -3
  16. pulumi_oci/meteringcomputation/__init__.py +3 -0
  17. pulumi_oci/meteringcomputation/_inputs.py +110 -0
  18. pulumi_oci/meteringcomputation/get_schedule.py +1 -1
  19. pulumi_oci/meteringcomputation/get_scheduled_run.py +2 -2
  20. pulumi_oci/meteringcomputation/get_usage_statement_email_recipients_group.py +173 -0
  21. pulumi_oci/meteringcomputation/get_usage_statement_email_recipients_groups.py +157 -0
  22. pulumi_oci/meteringcomputation/outputs.py +292 -2
  23. pulumi_oci/meteringcomputation/schedule.py +7 -7
  24. pulumi_oci/meteringcomputation/usage_statement_email_recipients_group.py +392 -0
  25. pulumi_oci/opa/opa_instance.py +41 -22
  26. pulumi_oci/psql/_inputs.py +4 -4
  27. pulumi_oci/psql/db_system.py +7 -7
  28. pulumi_oci/psql/outputs.py +4 -4
  29. pulumi_oci/redis/get_redis_cluster.py +14 -1
  30. pulumi_oci/redis/outputs.py +11 -0
  31. pulumi_oci/redis/redis_cluster.py +52 -3
  32. {pulumi_oci-1.32.0a1712988952.dist-info → pulumi_oci-1.32.0a1713427052.dist-info}/METADATA +1 -1
  33. {pulumi_oci-1.32.0a1712988952.dist-info → pulumi_oci-1.32.0a1713427052.dist-info}/RECORD +35 -29
  34. {pulumi_oci-1.32.0a1712988952.dist-info → pulumi_oci-1.32.0a1713427052.dist-info}/WHEEL +0 -0
  35. {pulumi_oci-1.32.0a1712988952.dist-info → pulumi_oci-1.32.0a1713427052.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,157 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+ from . import outputs
12
+ from ._inputs import *
13
+
14
+ __all__ = [
15
+ 'GetUsageStatementEmailRecipientsGroupsResult',
16
+ 'AwaitableGetUsageStatementEmailRecipientsGroupsResult',
17
+ 'get_usage_statement_email_recipients_groups',
18
+ 'get_usage_statement_email_recipients_groups_output',
19
+ ]
20
+
21
+ @pulumi.output_type
22
+ class GetUsageStatementEmailRecipientsGroupsResult:
23
+ """
24
+ A collection of values returned by getUsageStatementEmailRecipientsGroups.
25
+ """
26
+ def __init__(__self__, compartment_id=None, email_recipients_group_collections=None, filters=None, id=None, subscription_id=None):
27
+ if compartment_id and not isinstance(compartment_id, str):
28
+ raise TypeError("Expected argument 'compartment_id' to be a str")
29
+ pulumi.set(__self__, "compartment_id", compartment_id)
30
+ if email_recipients_group_collections and not isinstance(email_recipients_group_collections, list):
31
+ raise TypeError("Expected argument 'email_recipients_group_collections' to be a list")
32
+ pulumi.set(__self__, "email_recipients_group_collections", email_recipients_group_collections)
33
+ if filters and not isinstance(filters, list):
34
+ raise TypeError("Expected argument 'filters' to be a list")
35
+ pulumi.set(__self__, "filters", filters)
36
+ if id and not isinstance(id, str):
37
+ raise TypeError("Expected argument 'id' to be a str")
38
+ pulumi.set(__self__, "id", id)
39
+ if subscription_id and not isinstance(subscription_id, str):
40
+ raise TypeError("Expected argument 'subscription_id' to be a str")
41
+ pulumi.set(__self__, "subscription_id", subscription_id)
42
+
43
+ @property
44
+ @pulumi.getter(name="compartmentId")
45
+ def compartment_id(self) -> str:
46
+ """
47
+ The customer tenancy OCID.
48
+ """
49
+ return pulumi.get(self, "compartment_id")
50
+
51
+ @property
52
+ @pulumi.getter(name="emailRecipientsGroupCollections")
53
+ def email_recipients_group_collections(self) -> Sequence['outputs.GetUsageStatementEmailRecipientsGroupsEmailRecipientsGroupCollectionResult']:
54
+ """
55
+ The list of email_recipients_group_collection.
56
+ """
57
+ return pulumi.get(self, "email_recipients_group_collections")
58
+
59
+ @property
60
+ @pulumi.getter
61
+ def filters(self) -> Optional[Sequence['outputs.GetUsageStatementEmailRecipientsGroupsFilterResult']]:
62
+ return pulumi.get(self, "filters")
63
+
64
+ @property
65
+ @pulumi.getter
66
+ def id(self) -> str:
67
+ """
68
+ The provider-assigned unique ID for this managed resource.
69
+ """
70
+ return pulumi.get(self, "id")
71
+
72
+ @property
73
+ @pulumi.getter(name="subscriptionId")
74
+ def subscription_id(self) -> str:
75
+ return pulumi.get(self, "subscription_id")
76
+
77
+
78
+ class AwaitableGetUsageStatementEmailRecipientsGroupsResult(GetUsageStatementEmailRecipientsGroupsResult):
79
+ # pylint: disable=using-constant-test
80
+ def __await__(self):
81
+ if False:
82
+ yield self
83
+ return GetUsageStatementEmailRecipientsGroupsResult(
84
+ compartment_id=self.compartment_id,
85
+ email_recipients_group_collections=self.email_recipients_group_collections,
86
+ filters=self.filters,
87
+ id=self.id,
88
+ subscription_id=self.subscription_id)
89
+
90
+
91
+ def get_usage_statement_email_recipients_groups(compartment_id: Optional[str] = None,
92
+ filters: Optional[Sequence[pulumi.InputType['GetUsageStatementEmailRecipientsGroupsFilterArgs']]] = None,
93
+ subscription_id: Optional[str] = None,
94
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetUsageStatementEmailRecipientsGroupsResult:
95
+ """
96
+ This data source provides the list of Usage Statement Email Recipients Groups in Oracle Cloud Infrastructure Metering Computation service.
97
+
98
+ Return the saved usage statement email recipient group.
99
+
100
+ ## Example Usage
101
+
102
+ <!--Start PulumiCodeChooser -->
103
+ ```python
104
+ import pulumi
105
+ import pulumi_oci as oci
106
+
107
+ test_usage_statement_email_recipients_groups = oci.MeteringComputation.get_usage_statement_email_recipients_groups(compartment_id=var["compartment_id"],
108
+ subscription_id=oci_onesubscription_subscription["test_subscription"]["id"])
109
+ ```
110
+ <!--End PulumiCodeChooser -->
111
+
112
+
113
+ :param str compartment_id: The compartment ID in which to list resources.
114
+ :param str subscription_id: The UsageStatement Subscription unique OCID.
115
+ """
116
+ __args__ = dict()
117
+ __args__['compartmentId'] = compartment_id
118
+ __args__['filters'] = filters
119
+ __args__['subscriptionId'] = subscription_id
120
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
121
+ __ret__ = pulumi.runtime.invoke('oci:MeteringComputation/getUsageStatementEmailRecipientsGroups:getUsageStatementEmailRecipientsGroups', __args__, opts=opts, typ=GetUsageStatementEmailRecipientsGroupsResult).value
122
+
123
+ return AwaitableGetUsageStatementEmailRecipientsGroupsResult(
124
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
125
+ email_recipients_group_collections=pulumi.get(__ret__, 'email_recipients_group_collections'),
126
+ filters=pulumi.get(__ret__, 'filters'),
127
+ id=pulumi.get(__ret__, 'id'),
128
+ subscription_id=pulumi.get(__ret__, 'subscription_id'))
129
+
130
+
131
+ @_utilities.lift_output_func(get_usage_statement_email_recipients_groups)
132
+ def get_usage_statement_email_recipients_groups_output(compartment_id: Optional[pulumi.Input[str]] = None,
133
+ filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetUsageStatementEmailRecipientsGroupsFilterArgs']]]]] = None,
134
+ subscription_id: Optional[pulumi.Input[str]] = None,
135
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetUsageStatementEmailRecipientsGroupsResult]:
136
+ """
137
+ This data source provides the list of Usage Statement Email Recipients Groups in Oracle Cloud Infrastructure Metering Computation service.
138
+
139
+ Return the saved usage statement email recipient group.
140
+
141
+ ## Example Usage
142
+
143
+ <!--Start PulumiCodeChooser -->
144
+ ```python
145
+ import pulumi
146
+ import pulumi_oci as oci
147
+
148
+ test_usage_statement_email_recipients_groups = oci.MeteringComputation.get_usage_statement_email_recipients_groups(compartment_id=var["compartment_id"],
149
+ subscription_id=oci_onesubscription_subscription["test_subscription"]["id"])
150
+ ```
151
+ <!--End PulumiCodeChooser -->
152
+
153
+
154
+ :param str compartment_id: The compartment ID in which to list resources.
155
+ :param str subscription_id: The UsageStatement Subscription unique OCID.
156
+ """
157
+ ...
@@ -33,6 +33,7 @@ __all__ = [
33
33
  'UsageGroupByTag',
34
34
  'UsageItem',
35
35
  'UsageItemTag',
36
+ 'UsageStatementEmailRecipientsGroupRecipientsList',
36
37
  'GetConfigurationItemResult',
37
38
  'GetCustomTableSavedCustomTableResult',
38
39
  'GetCustomTableSavedCustomTableGroupByTagResult',
@@ -80,6 +81,11 @@ __all__ = [
80
81
  'GetUsageCarbonEmissionsQueryQueryDefinitionCostAnalysisUiResult',
81
82
  'GetUsageCarbonEmissionsQueryQueryDefinitionReportQueryResult',
82
83
  'GetUsageCarbonEmissionsQueryQueryDefinitionReportQueryGroupByTagResult',
84
+ 'GetUsageStatementEmailRecipientsGroupRecipientsListResult',
85
+ 'GetUsageStatementEmailRecipientsGroupsEmailRecipientsGroupCollectionResult',
86
+ 'GetUsageStatementEmailRecipientsGroupsEmailRecipientsGroupCollectionItemResult',
87
+ 'GetUsageStatementEmailRecipientsGroupsEmailRecipientsGroupCollectionItemRecipientsListResult',
88
+ 'GetUsageStatementEmailRecipientsGroupsFilterResult',
83
89
  ]
84
90
 
85
91
  @pulumi.output_type
@@ -2201,6 +2207,80 @@ class UsageItemTag(dict):
2201
2207
  return pulumi.get(self, "value")
2202
2208
 
2203
2209
 
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
+
2204
2284
  @pulumi.output_type
2205
2285
  class GetConfigurationItemResult(dict):
2206
2286
  def __init__(__self__, *,
@@ -3643,7 +3723,7 @@ class GetSchedulesScheduleCollectionItemResult(dict):
3643
3723
  :param Sequence['GetSchedulesScheduleCollectionItemQueryPropertyArgs'] query_properties: The query properties.
3644
3724
  :param Sequence['GetSchedulesScheduleCollectionItemResultLocationArgs'] result_locations: The location where usage or cost CSVs will be uploaded defined by `locationType`, which corresponds with type-specific characteristics.
3645
3725
  :param str saved_report_id: The saved report ID which can also be used to generate a query.
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.
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.
3647
3727
  :param str state: The schedule lifecycle state.
3648
3728
  :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"}`
3649
3729
  :param str time_created: The date and time the schedule was created.
@@ -3751,7 +3831,7 @@ class GetSchedulesScheduleCollectionItemResult(dict):
3751
3831
  @pulumi.getter(name="scheduleRecurrences")
3752
3832
  def schedule_recurrences(self) -> str:
3753
3833
  """
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.
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.
3755
3835
  """
3756
3836
  return pulumi.get(self, "schedule_recurrences")
3757
3837
 
@@ -4589,3 +4669,213 @@ class GetUsageCarbonEmissionsQueryQueryDefinitionReportQueryGroupByTagResult(dic
4589
4669
  return pulumi.get(self, "value")
4590
4670
 
4591
4671
 
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