pulumi-oci 1.31.0a1712729931__py3-none-any.whl → 1.32.0__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 (57) 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/dataflow/get_invoke_run.py +11 -1
  14. pulumi_oci/dataflow/invoke_run.py +49 -0
  15. pulumi_oci/dataflow/outputs.py +7 -0
  16. pulumi_oci/datascience/_inputs.py +17 -1
  17. pulumi_oci/datascience/model_deployment.py +2 -0
  18. pulumi_oci/datascience/outputs.py +39 -3
  19. pulumi_oci/devops/_inputs.py +380 -10
  20. pulumi_oci/devops/outputs.py +953 -32
  21. pulumi_oci/filestorage/replication.py +4 -4
  22. pulumi_oci/meteringcomputation/__init__.py +3 -0
  23. pulumi_oci/meteringcomputation/_inputs.py +110 -0
  24. pulumi_oci/meteringcomputation/get_schedule.py +1 -1
  25. pulumi_oci/meteringcomputation/get_scheduled_run.py +2 -2
  26. pulumi_oci/meteringcomputation/get_usage_statement_email_recipients_group.py +173 -0
  27. pulumi_oci/meteringcomputation/get_usage_statement_email_recipients_groups.py +157 -0
  28. pulumi_oci/meteringcomputation/outputs.py +292 -2
  29. pulumi_oci/meteringcomputation/schedule.py +7 -7
  30. pulumi_oci/meteringcomputation/usage_statement_email_recipients_group.py +392 -0
  31. pulumi_oci/networkfirewall/outputs.py +12 -16
  32. pulumi_oci/networkloadbalancer/_inputs.py +222 -10
  33. pulumi_oci/networkloadbalancer/backend_set.py +70 -7
  34. pulumi_oci/networkloadbalancer/get_backend_set.py +15 -2
  35. pulumi_oci/networkloadbalancer/network_load_balancer.py +7 -62
  36. pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +70 -7
  37. pulumi_oci/networkloadbalancer/outputs.py +397 -28
  38. pulumi_oci/opa/opa_instance.py +41 -22
  39. pulumi_oci/psql/_inputs.py +4 -4
  40. pulumi_oci/psql/db_system.py +7 -7
  41. pulumi_oci/psql/outputs.py +4 -4
  42. pulumi_oci/redis/get_redis_cluster.py +14 -1
  43. pulumi_oci/redis/outputs.py +11 -0
  44. pulumi_oci/redis/redis_cluster.py +52 -3
  45. pulumi_oci/stackmonitoring/_inputs.py +209 -1
  46. pulumi_oci/stackmonitoring/get_monitored_resource.py +27 -1
  47. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +27 -1
  48. pulumi_oci/stackmonitoring/get_monitored_resources.py +18 -1
  49. pulumi_oci/stackmonitoring/monitored_resource.py +56 -0
  50. pulumi_oci/stackmonitoring/monitored_resource_task.py +18 -0
  51. pulumi_oci/stackmonitoring/monitored_resource_type.py +117 -19
  52. pulumi_oci/stackmonitoring/monitored_resources_search.py +197 -1
  53. pulumi_oci/stackmonitoring/outputs.py +436 -1
  54. {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.32.0.dist-info}/METADATA +1 -1
  55. {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.32.0.dist-info}/RECORD +57 -51
  56. {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.32.0.dist-info}/WHEEL +0 -0
  57. {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.32.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,392 @@
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__ = ['UsageStatementEmailRecipientsGroupArgs', 'UsageStatementEmailRecipientsGroup']
15
+
16
+ @pulumi.input_type
17
+ class UsageStatementEmailRecipientsGroupArgs:
18
+ def __init__(__self__, *,
19
+ compartment_id: pulumi.Input[str],
20
+ recipients_lists: pulumi.Input[Sequence[pulumi.Input['UsageStatementEmailRecipientsGroupRecipientsListArgs']]],
21
+ subscription_id: pulumi.Input[str],
22
+ email_recipients_group_id: Optional[pulumi.Input[str]] = None):
23
+ """
24
+ The set of arguments for constructing a UsageStatementEmailRecipientsGroup resource.
25
+ :param pulumi.Input[str] compartment_id: (Updatable) The customer tenancy.
26
+ :param pulumi.Input[Sequence[pulumi.Input['UsageStatementEmailRecipientsGroupRecipientsListArgs']]] recipients_lists: (Updatable) The list of recipient will receive the usage statement email.
27
+ :param pulumi.Input[str] subscription_id: The UsageStatement Subscription unique OCID.
28
+
29
+
30
+ ** IMPORTANT **
31
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
32
+ """
33
+ pulumi.set(__self__, "compartment_id", compartment_id)
34
+ pulumi.set(__self__, "recipients_lists", recipients_lists)
35
+ pulumi.set(__self__, "subscription_id", subscription_id)
36
+ if email_recipients_group_id is not None:
37
+ pulumi.set(__self__, "email_recipients_group_id", email_recipients_group_id)
38
+
39
+ @property
40
+ @pulumi.getter(name="compartmentId")
41
+ def compartment_id(self) -> pulumi.Input[str]:
42
+ """
43
+ (Updatable) The customer tenancy.
44
+ """
45
+ return pulumi.get(self, "compartment_id")
46
+
47
+ @compartment_id.setter
48
+ def compartment_id(self, value: pulumi.Input[str]):
49
+ pulumi.set(self, "compartment_id", value)
50
+
51
+ @property
52
+ @pulumi.getter(name="recipientsLists")
53
+ def recipients_lists(self) -> pulumi.Input[Sequence[pulumi.Input['UsageStatementEmailRecipientsGroupRecipientsListArgs']]]:
54
+ """
55
+ (Updatable) The list of recipient will receive the usage statement email.
56
+ """
57
+ return pulumi.get(self, "recipients_lists")
58
+
59
+ @recipients_lists.setter
60
+ def recipients_lists(self, value: pulumi.Input[Sequence[pulumi.Input['UsageStatementEmailRecipientsGroupRecipientsListArgs']]]):
61
+ pulumi.set(self, "recipients_lists", value)
62
+
63
+ @property
64
+ @pulumi.getter(name="subscriptionId")
65
+ def subscription_id(self) -> pulumi.Input[str]:
66
+ """
67
+ The UsageStatement Subscription unique OCID.
68
+
69
+
70
+ ** IMPORTANT **
71
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
72
+ """
73
+ return pulumi.get(self, "subscription_id")
74
+
75
+ @subscription_id.setter
76
+ def subscription_id(self, value: pulumi.Input[str]):
77
+ pulumi.set(self, "subscription_id", value)
78
+
79
+ @property
80
+ @pulumi.getter(name="emailRecipientsGroupId")
81
+ def email_recipients_group_id(self) -> Optional[pulumi.Input[str]]:
82
+ return pulumi.get(self, "email_recipients_group_id")
83
+
84
+ @email_recipients_group_id.setter
85
+ def email_recipients_group_id(self, value: Optional[pulumi.Input[str]]):
86
+ pulumi.set(self, "email_recipients_group_id", value)
87
+
88
+
89
+ @pulumi.input_type
90
+ class _UsageStatementEmailRecipientsGroupState:
91
+ def __init__(__self__, *,
92
+ compartment_id: Optional[pulumi.Input[str]] = None,
93
+ email_recipients_group_id: Optional[pulumi.Input[str]] = None,
94
+ recipients_lists: Optional[pulumi.Input[Sequence[pulumi.Input['UsageStatementEmailRecipientsGroupRecipientsListArgs']]]] = None,
95
+ state: Optional[pulumi.Input[str]] = None,
96
+ subscription_id: Optional[pulumi.Input[str]] = None):
97
+ """
98
+ Input properties used for looking up and filtering UsageStatementEmailRecipientsGroup resources.
99
+ :param pulumi.Input[str] compartment_id: (Updatable) The customer tenancy.
100
+ :param pulumi.Input[Sequence[pulumi.Input['UsageStatementEmailRecipientsGroupRecipientsListArgs']]] recipients_lists: (Updatable) The list of recipient will receive the usage statement email.
101
+ :param pulumi.Input[str] state: (Updatable) The email recipient lifecycle state.
102
+ :param pulumi.Input[str] subscription_id: The UsageStatement Subscription unique OCID.
103
+
104
+
105
+ ** IMPORTANT **
106
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
107
+ """
108
+ if compartment_id is not None:
109
+ pulumi.set(__self__, "compartment_id", compartment_id)
110
+ if email_recipients_group_id is not None:
111
+ pulumi.set(__self__, "email_recipients_group_id", email_recipients_group_id)
112
+ if recipients_lists is not None:
113
+ pulumi.set(__self__, "recipients_lists", recipients_lists)
114
+ if state is not None:
115
+ pulumi.set(__self__, "state", state)
116
+ if subscription_id is not None:
117
+ pulumi.set(__self__, "subscription_id", subscription_id)
118
+
119
+ @property
120
+ @pulumi.getter(name="compartmentId")
121
+ def compartment_id(self) -> Optional[pulumi.Input[str]]:
122
+ """
123
+ (Updatable) The customer tenancy.
124
+ """
125
+ return pulumi.get(self, "compartment_id")
126
+
127
+ @compartment_id.setter
128
+ def compartment_id(self, value: Optional[pulumi.Input[str]]):
129
+ pulumi.set(self, "compartment_id", value)
130
+
131
+ @property
132
+ @pulumi.getter(name="emailRecipientsGroupId")
133
+ def email_recipients_group_id(self) -> Optional[pulumi.Input[str]]:
134
+ return pulumi.get(self, "email_recipients_group_id")
135
+
136
+ @email_recipients_group_id.setter
137
+ def email_recipients_group_id(self, value: Optional[pulumi.Input[str]]):
138
+ pulumi.set(self, "email_recipients_group_id", value)
139
+
140
+ @property
141
+ @pulumi.getter(name="recipientsLists")
142
+ def recipients_lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['UsageStatementEmailRecipientsGroupRecipientsListArgs']]]]:
143
+ """
144
+ (Updatable) The list of recipient will receive the usage statement email.
145
+ """
146
+ return pulumi.get(self, "recipients_lists")
147
+
148
+ @recipients_lists.setter
149
+ def recipients_lists(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['UsageStatementEmailRecipientsGroupRecipientsListArgs']]]]):
150
+ pulumi.set(self, "recipients_lists", value)
151
+
152
+ @property
153
+ @pulumi.getter
154
+ def state(self) -> Optional[pulumi.Input[str]]:
155
+ """
156
+ (Updatable) The email recipient lifecycle state.
157
+ """
158
+ return pulumi.get(self, "state")
159
+
160
+ @state.setter
161
+ def state(self, value: Optional[pulumi.Input[str]]):
162
+ pulumi.set(self, "state", value)
163
+
164
+ @property
165
+ @pulumi.getter(name="subscriptionId")
166
+ def subscription_id(self) -> Optional[pulumi.Input[str]]:
167
+ """
168
+ The UsageStatement Subscription unique OCID.
169
+
170
+
171
+ ** IMPORTANT **
172
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
173
+ """
174
+ return pulumi.get(self, "subscription_id")
175
+
176
+ @subscription_id.setter
177
+ def subscription_id(self, value: Optional[pulumi.Input[str]]):
178
+ pulumi.set(self, "subscription_id", value)
179
+
180
+
181
+ class UsageStatementEmailRecipientsGroup(pulumi.CustomResource):
182
+ @overload
183
+ def __init__(__self__,
184
+ resource_name: str,
185
+ opts: Optional[pulumi.ResourceOptions] = None,
186
+ compartment_id: Optional[pulumi.Input[str]] = None,
187
+ email_recipients_group_id: Optional[pulumi.Input[str]] = None,
188
+ recipients_lists: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['UsageStatementEmailRecipientsGroupRecipientsListArgs']]]]] = None,
189
+ subscription_id: Optional[pulumi.Input[str]] = None,
190
+ __props__=None):
191
+ """
192
+ This resource provides the Usage Statement Email Recipients Group resource in Oracle Cloud Infrastructure Metering Computation service.
193
+
194
+ Add a list of email recipients that can receive usage statements for the subscription.
195
+
196
+ ## Example Usage
197
+
198
+ <!--Start PulumiCodeChooser -->
199
+ ```python
200
+ import pulumi
201
+ import pulumi_oci as oci
202
+
203
+ test_usage_statement_email_recipients_group = oci.metering_computation.UsageStatementEmailRecipientsGroup("testUsageStatementEmailRecipientsGroup",
204
+ compartment_id=var["compartment_id"],
205
+ recipients_lists=[oci.metering_computation.UsageStatementEmailRecipientsGroupRecipientsListArgs(
206
+ email_id=oci_metering_computation_email["test_email"]["id"],
207
+ state=var["usage_statement_email_recipients_group_recipients_list_state"],
208
+ first_name=var["usage_statement_email_recipients_group_recipients_list_first_name"],
209
+ last_name=var["usage_statement_email_recipients_group_recipients_list_last_name"],
210
+ )],
211
+ subscription_id=oci_onesubscription_subscription["test_subscription"]["id"])
212
+ ```
213
+ <!--End PulumiCodeChooser -->
214
+
215
+ ## Import
216
+
217
+ UsageStatementEmailRecipientsGroups can be imported using the `id`, e.g.
218
+
219
+ ```sh
220
+ $ pulumi import oci:MeteringComputation/usageStatementEmailRecipientsGroup:UsageStatementEmailRecipientsGroup test_usage_statement_email_recipients_group "usageStatements/{subscriptionId}/emailRecipientsGroups/{emailRecipientsGroupId}/compartmentId/{compartmentId}"
221
+ ```
222
+
223
+ :param str resource_name: The name of the resource.
224
+ :param pulumi.ResourceOptions opts: Options for the resource.
225
+ :param pulumi.Input[str] compartment_id: (Updatable) The customer tenancy.
226
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['UsageStatementEmailRecipientsGroupRecipientsListArgs']]]] recipients_lists: (Updatable) The list of recipient will receive the usage statement email.
227
+ :param pulumi.Input[str] subscription_id: The UsageStatement Subscription unique OCID.
228
+
229
+
230
+ ** IMPORTANT **
231
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
232
+ """
233
+ ...
234
+ @overload
235
+ def __init__(__self__,
236
+ resource_name: str,
237
+ args: UsageStatementEmailRecipientsGroupArgs,
238
+ opts: Optional[pulumi.ResourceOptions] = None):
239
+ """
240
+ This resource provides the Usage Statement Email Recipients Group resource in Oracle Cloud Infrastructure Metering Computation service.
241
+
242
+ Add a list of email recipients that can receive usage statements for the subscription.
243
+
244
+ ## Example Usage
245
+
246
+ <!--Start PulumiCodeChooser -->
247
+ ```python
248
+ import pulumi
249
+ import pulumi_oci as oci
250
+
251
+ test_usage_statement_email_recipients_group = oci.metering_computation.UsageStatementEmailRecipientsGroup("testUsageStatementEmailRecipientsGroup",
252
+ compartment_id=var["compartment_id"],
253
+ recipients_lists=[oci.metering_computation.UsageStatementEmailRecipientsGroupRecipientsListArgs(
254
+ email_id=oci_metering_computation_email["test_email"]["id"],
255
+ state=var["usage_statement_email_recipients_group_recipients_list_state"],
256
+ first_name=var["usage_statement_email_recipients_group_recipients_list_first_name"],
257
+ last_name=var["usage_statement_email_recipients_group_recipients_list_last_name"],
258
+ )],
259
+ subscription_id=oci_onesubscription_subscription["test_subscription"]["id"])
260
+ ```
261
+ <!--End PulumiCodeChooser -->
262
+
263
+ ## Import
264
+
265
+ UsageStatementEmailRecipientsGroups can be imported using the `id`, e.g.
266
+
267
+ ```sh
268
+ $ pulumi import oci:MeteringComputation/usageStatementEmailRecipientsGroup:UsageStatementEmailRecipientsGroup test_usage_statement_email_recipients_group "usageStatements/{subscriptionId}/emailRecipientsGroups/{emailRecipientsGroupId}/compartmentId/{compartmentId}"
269
+ ```
270
+
271
+ :param str resource_name: The name of the resource.
272
+ :param UsageStatementEmailRecipientsGroupArgs args: The arguments to use to populate this resource's properties.
273
+ :param pulumi.ResourceOptions opts: Options for the resource.
274
+ """
275
+ ...
276
+ def __init__(__self__, resource_name: str, *args, **kwargs):
277
+ resource_args, opts = _utilities.get_resource_args_opts(UsageStatementEmailRecipientsGroupArgs, pulumi.ResourceOptions, *args, **kwargs)
278
+ if resource_args is not None:
279
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
280
+ else:
281
+ __self__._internal_init(resource_name, *args, **kwargs)
282
+
283
+ def _internal_init(__self__,
284
+ resource_name: str,
285
+ opts: Optional[pulumi.ResourceOptions] = None,
286
+ compartment_id: Optional[pulumi.Input[str]] = None,
287
+ email_recipients_group_id: Optional[pulumi.Input[str]] = None,
288
+ recipients_lists: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['UsageStatementEmailRecipientsGroupRecipientsListArgs']]]]] = None,
289
+ subscription_id: Optional[pulumi.Input[str]] = None,
290
+ __props__=None):
291
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
292
+ if not isinstance(opts, pulumi.ResourceOptions):
293
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
294
+ if opts.id is None:
295
+ if __props__ is not None:
296
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
297
+ __props__ = UsageStatementEmailRecipientsGroupArgs.__new__(UsageStatementEmailRecipientsGroupArgs)
298
+
299
+ if compartment_id is None and not opts.urn:
300
+ raise TypeError("Missing required property 'compartment_id'")
301
+ __props__.__dict__["compartment_id"] = compartment_id
302
+ __props__.__dict__["email_recipients_group_id"] = email_recipients_group_id
303
+ if recipients_lists is None and not opts.urn:
304
+ raise TypeError("Missing required property 'recipients_lists'")
305
+ __props__.__dict__["recipients_lists"] = recipients_lists
306
+ if subscription_id is None and not opts.urn:
307
+ raise TypeError("Missing required property 'subscription_id'")
308
+ __props__.__dict__["subscription_id"] = subscription_id
309
+ __props__.__dict__["state"] = None
310
+ super(UsageStatementEmailRecipientsGroup, __self__).__init__(
311
+ 'oci:MeteringComputation/usageStatementEmailRecipientsGroup:UsageStatementEmailRecipientsGroup',
312
+ resource_name,
313
+ __props__,
314
+ opts)
315
+
316
+ @staticmethod
317
+ def get(resource_name: str,
318
+ id: pulumi.Input[str],
319
+ opts: Optional[pulumi.ResourceOptions] = None,
320
+ compartment_id: Optional[pulumi.Input[str]] = None,
321
+ email_recipients_group_id: Optional[pulumi.Input[str]] = None,
322
+ recipients_lists: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['UsageStatementEmailRecipientsGroupRecipientsListArgs']]]]] = None,
323
+ state: Optional[pulumi.Input[str]] = None,
324
+ subscription_id: Optional[pulumi.Input[str]] = None) -> 'UsageStatementEmailRecipientsGroup':
325
+ """
326
+ Get an existing UsageStatementEmailRecipientsGroup resource's state with the given name, id, and optional extra
327
+ properties used to qualify the lookup.
328
+
329
+ :param str resource_name: The unique name of the resulting resource.
330
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
331
+ :param pulumi.ResourceOptions opts: Options for the resource.
332
+ :param pulumi.Input[str] compartment_id: (Updatable) The customer tenancy.
333
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['UsageStatementEmailRecipientsGroupRecipientsListArgs']]]] recipients_lists: (Updatable) The list of recipient will receive the usage statement email.
334
+ :param pulumi.Input[str] state: (Updatable) The email recipient lifecycle state.
335
+ :param pulumi.Input[str] subscription_id: The UsageStatement Subscription unique OCID.
336
+
337
+
338
+ ** IMPORTANT **
339
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
340
+ """
341
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
342
+
343
+ __props__ = _UsageStatementEmailRecipientsGroupState.__new__(_UsageStatementEmailRecipientsGroupState)
344
+
345
+ __props__.__dict__["compartment_id"] = compartment_id
346
+ __props__.__dict__["email_recipients_group_id"] = email_recipients_group_id
347
+ __props__.__dict__["recipients_lists"] = recipients_lists
348
+ __props__.__dict__["state"] = state
349
+ __props__.__dict__["subscription_id"] = subscription_id
350
+ return UsageStatementEmailRecipientsGroup(resource_name, opts=opts, __props__=__props__)
351
+
352
+ @property
353
+ @pulumi.getter(name="compartmentId")
354
+ def compartment_id(self) -> pulumi.Output[str]:
355
+ """
356
+ (Updatable) The customer tenancy.
357
+ """
358
+ return pulumi.get(self, "compartment_id")
359
+
360
+ @property
361
+ @pulumi.getter(name="emailRecipientsGroupId")
362
+ def email_recipients_group_id(self) -> pulumi.Output[str]:
363
+ return pulumi.get(self, "email_recipients_group_id")
364
+
365
+ @property
366
+ @pulumi.getter(name="recipientsLists")
367
+ def recipients_lists(self) -> pulumi.Output[Sequence['outputs.UsageStatementEmailRecipientsGroupRecipientsList']]:
368
+ """
369
+ (Updatable) The list of recipient will receive the usage statement email.
370
+ """
371
+ return pulumi.get(self, "recipients_lists")
372
+
373
+ @property
374
+ @pulumi.getter
375
+ def state(self) -> pulumi.Output[str]:
376
+ """
377
+ (Updatable) The email recipient lifecycle state.
378
+ """
379
+ return pulumi.get(self, "state")
380
+
381
+ @property
382
+ @pulumi.getter(name="subscriptionId")
383
+ def subscription_id(self) -> pulumi.Output[str]:
384
+ """
385
+ The UsageStatement Subscription unique OCID.
386
+
387
+
388
+ ** IMPORTANT **
389
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
390
+ """
391
+ return pulumi.get(self, "subscription_id")
392
+
@@ -1324,20 +1324,18 @@ class GetNetworkFirewallPolicyDecryptionRulesDecryptionRuleSummaryCollectionItem
1324
1324
  @pulumi.output_type
1325
1325
  class GetNetworkFirewallPolicyDecryptionRulesDecryptionRuleSummaryCollectionItemPositionResult(dict):
1326
1326
  def __init__(__self__, *,
1327
- after_rule: Optional[str] = None,
1328
- before_rule: Optional[str] = None):
1327
+ after_rule: str,
1328
+ before_rule: str):
1329
1329
  """
1330
1330
  :param str after_rule: Identifier for rule after which this rule lies.
1331
1331
  :param str before_rule: Identifier for rule before which this rule lies.
1332
1332
  """
1333
- if after_rule is not None:
1334
- pulumi.set(__self__, "after_rule", after_rule)
1335
- if before_rule is not None:
1336
- pulumi.set(__self__, "before_rule", before_rule)
1333
+ pulumi.set(__self__, "after_rule", after_rule)
1334
+ pulumi.set(__self__, "before_rule", before_rule)
1337
1335
 
1338
1336
  @property
1339
1337
  @pulumi.getter(name="afterRule")
1340
- def after_rule(self) -> Optional[str]:
1338
+ def after_rule(self) -> str:
1341
1339
  """
1342
1340
  Identifier for rule after which this rule lies.
1343
1341
  """
@@ -1345,7 +1343,7 @@ class GetNetworkFirewallPolicyDecryptionRulesDecryptionRuleSummaryCollectionItem
1345
1343
 
1346
1344
  @property
1347
1345
  @pulumi.getter(name="beforeRule")
1348
- def before_rule(self) -> Optional[str]:
1346
+ def before_rule(self) -> str:
1349
1347
  """
1350
1348
  Identifier for rule before which this rule lies.
1351
1349
  """
@@ -1792,20 +1790,18 @@ class GetNetworkFirewallPolicySecurityRulesSecurityRuleSummaryCollectionItemCond
1792
1790
  @pulumi.output_type
1793
1791
  class GetNetworkFirewallPolicySecurityRulesSecurityRuleSummaryCollectionItemPositionResult(dict):
1794
1792
  def __init__(__self__, *,
1795
- after_rule: Optional[str] = None,
1796
- before_rule: Optional[str] = None):
1793
+ after_rule: str,
1794
+ before_rule: str):
1797
1795
  """
1798
1796
  :param str after_rule: Identifier for rule after which this rule lies.
1799
1797
  :param str before_rule: Identifier for rule before which this rule lies.
1800
1798
  """
1801
- if after_rule is not None:
1802
- pulumi.set(__self__, "after_rule", after_rule)
1803
- if before_rule is not None:
1804
- pulumi.set(__self__, "before_rule", before_rule)
1799
+ pulumi.set(__self__, "after_rule", after_rule)
1800
+ pulumi.set(__self__, "before_rule", before_rule)
1805
1801
 
1806
1802
  @property
1807
1803
  @pulumi.getter(name="afterRule")
1808
- def after_rule(self) -> Optional[str]:
1804
+ def after_rule(self) -> str:
1809
1805
  """
1810
1806
  Identifier for rule after which this rule lies.
1811
1807
  """
@@ -1813,7 +1809,7 @@ class GetNetworkFirewallPolicySecurityRulesSecurityRuleSummaryCollectionItemPosi
1813
1809
 
1814
1810
  @property
1815
1811
  @pulumi.getter(name="beforeRule")
1816
- def before_rule(self) -> Optional[str]:
1812
+ def before_rule(self) -> str:
1817
1813
  """
1818
1814
  Identifier for rule before which this rule lies.
1819
1815
  """