pulumi-oci 1.30.0a1711740723__py3-none-any.whl → 1.30.0a1712219839__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.
- pulumi_oci/cloudguard/_inputs.py +10 -2
- pulumi_oci/cloudguard/cloud_guard_configuration.py +2 -2
- pulumi_oci/cloudguard/cloud_guard_data_source.py +45 -24
- pulumi_oci/cloudguard/data_mask_rule.py +2 -2
- pulumi_oci/cloudguard/detector_recipe.py +2 -2
- pulumi_oci/cloudguard/get_cloud_guard_configuration.py +2 -2
- pulumi_oci/cloudguard/get_data_mask_rule.py +2 -2
- pulumi_oci/cloudguard/get_data_mask_rules.py +2 -2
- pulumi_oci/cloudguard/get_detector_recipe.py +2 -2
- pulumi_oci/cloudguard/get_detector_recipes.py +2 -2
- pulumi_oci/cloudguard/get_managed_list.py +2 -2
- pulumi_oci/cloudguard/get_managed_lists.py +2 -2
- pulumi_oci/cloudguard/managed_list.py +2 -2
- pulumi_oci/cloudguard/outputs.py +10 -2
- pulumi_oci/disasterrecovery/dr_protection_group.py +1 -1
- pulumi_oci/email/__init__.py +1 -0
- pulumi_oci/email/dkim.py +21 -21
- pulumi_oci/email/email_domain.py +7 -7
- pulumi_oci/email/get_configuration.py +138 -0
- pulumi_oci/email/get_dkim.py +2 -2
- pulumi_oci/email/get_dkims.py +2 -2
- pulumi_oci/email/get_email_domain.py +2 -2
- pulumi_oci/email/get_email_domains.py +1 -1
- pulumi_oci/email/get_sender.py +15 -2
- pulumi_oci/email/get_suppression.py +2 -2
- pulumi_oci/email/get_suppressions.py +4 -4
- pulumi_oci/email/outputs.py +23 -12
- pulumi_oci/email/sender.py +32 -4
- pulumi_oci/email/suppression.py +8 -8
- pulumi_oci/loadbalancer/_inputs.py +2 -2
- pulumi_oci/loadbalancer/outputs.py +4 -4
- pulumi_oci/loadbalancer/ssl_cipher_suite.py +42 -0
- pulumi_oci/managementagent/_inputs.py +0 -44
- pulumi_oci/managementagent/get_management_agents.py +20 -3
- pulumi_oci/managementagent/management_agent.py +27 -79
- pulumi_oci/managementagent/outputs.py +0 -44
- pulumi_oci/networkloadbalancer/_inputs.py +4 -4
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +31 -1
- pulumi_oci/networkloadbalancer/network_load_balancer.py +184 -23
- pulumi_oci/networkloadbalancer/outputs.py +25 -4
- {pulumi_oci-1.30.0a1711740723.dist-info → pulumi_oci-1.30.0a1712219839.dist-info}/METADATA +1 -1
- {pulumi_oci-1.30.0a1711740723.dist-info → pulumi_oci-1.30.0a1712219839.dist-info}/RECORD +44 -43
- {pulumi_oci-1.30.0a1711740723.dist-info → pulumi_oci-1.30.0a1712219839.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.30.0a1711740723.dist-info → pulumi_oci-1.30.0a1712219839.dist-info}/top_level.txt +0 -0
pulumi_oci/cloudguard/_inputs.py
CHANGED
@@ -358,7 +358,11 @@ class CloudGuardDataSourceRegionStatusDetailArgs:
|
|
358
358
|
status: Optional[pulumi.Input[str]] = None):
|
359
359
|
"""
|
360
360
|
:param pulumi.Input[str] region: Data Source replication region.
|
361
|
-
:param pulumi.Input[str] status: Status of
|
361
|
+
:param pulumi.Input[str] status: (Updatable) Status of DataSource. Default value is DISABLED.
|
362
|
+
|
363
|
+
|
364
|
+
** IMPORTANT **
|
365
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
362
366
|
"""
|
363
367
|
if region is not None:
|
364
368
|
pulumi.set(__self__, "region", region)
|
@@ -381,7 +385,11 @@ class CloudGuardDataSourceRegionStatusDetailArgs:
|
|
381
385
|
@pulumi.getter
|
382
386
|
def status(self) -> Optional[pulumi.Input[str]]:
|
383
387
|
"""
|
384
|
-
Status of
|
388
|
+
(Updatable) Status of DataSource. Default value is DISABLED.
|
389
|
+
|
390
|
+
|
391
|
+
** IMPORTANT **
|
392
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
385
393
|
"""
|
386
394
|
return pulumi.get(self, "status")
|
387
395
|
|
@@ -181,7 +181,7 @@ class CloudGuardConfiguration(pulumi.CustomResource):
|
|
181
181
|
"""
|
182
182
|
This resource provides the Cloud Guard Configuration resource in Oracle Cloud Infrastructure Cloud Guard service.
|
183
183
|
|
184
|
-
|
184
|
+
Update configuration details for a Cloud Guard tenancy, identified by root compartment OCID. The reporting region cannot be updated once created.
|
185
185
|
|
186
186
|
## Example Usage
|
187
187
|
|
@@ -222,7 +222,7 @@ class CloudGuardConfiguration(pulumi.CustomResource):
|
|
222
222
|
"""
|
223
223
|
This resource provides the Cloud Guard Configuration resource in Oracle Cloud Infrastructure Cloud Guard service.
|
224
224
|
|
225
|
-
|
225
|
+
Update configuration details for a Cloud Guard tenancy, identified by root compartment OCID. The reporting region cannot be updated once created.
|
226
226
|
|
227
227
|
## Example Usage
|
228
228
|
|
@@ -21,7 +21,8 @@ class CloudGuardDataSourceArgs:
|
|
21
21
|
display_name: pulumi.Input[str],
|
22
22
|
data_source_details: Optional[pulumi.Input['CloudGuardDataSourceDataSourceDetailsArgs']] = None,
|
23
23
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
24
|
-
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None
|
24
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
25
|
+
status: Optional[pulumi.Input[str]] = None):
|
25
26
|
"""
|
26
27
|
The set of arguments for constructing a CloudGuardDataSource resource.
|
27
28
|
:param pulumi.Input[str] compartment_id: (Updatable) CompartmentId of Data Source.
|
@@ -32,6 +33,7 @@ class CloudGuardDataSourceArgs:
|
|
32
33
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
33
34
|
|
34
35
|
Avoid entering confidential information.
|
36
|
+
:param pulumi.Input[str] status: (Updatable) Status of DataSource. Default value is DISABLED.
|
35
37
|
|
36
38
|
|
37
39
|
** IMPORTANT **
|
@@ -46,6 +48,8 @@ class CloudGuardDataSourceArgs:
|
|
46
48
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
47
49
|
if freeform_tags is not None:
|
48
50
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
51
|
+
if status is not None:
|
52
|
+
pulumi.set(__self__, "status", status)
|
49
53
|
|
50
54
|
@property
|
51
55
|
@pulumi.getter(name="compartmentId")
|
@@ -114,10 +118,6 @@ class CloudGuardDataSourceArgs:
|
|
114
118
|
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
115
119
|
|
116
120
|
Avoid entering confidential information.
|
117
|
-
|
118
|
-
|
119
|
-
** IMPORTANT **
|
120
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
121
121
|
"""
|
122
122
|
return pulumi.get(self, "freeform_tags")
|
123
123
|
|
@@ -125,6 +125,22 @@ class CloudGuardDataSourceArgs:
|
|
125
125
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
126
126
|
pulumi.set(self, "freeform_tags", value)
|
127
127
|
|
128
|
+
@property
|
129
|
+
@pulumi.getter
|
130
|
+
def status(self) -> Optional[pulumi.Input[str]]:
|
131
|
+
"""
|
132
|
+
(Updatable) Status of DataSource. Default value is DISABLED.
|
133
|
+
|
134
|
+
|
135
|
+
** IMPORTANT **
|
136
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
137
|
+
"""
|
138
|
+
return pulumi.get(self, "status")
|
139
|
+
|
140
|
+
@status.setter
|
141
|
+
def status(self, value: Optional[pulumi.Input[str]]):
|
142
|
+
pulumi.set(self, "status", value)
|
143
|
+
|
128
144
|
|
129
145
|
@pulumi.input_type
|
130
146
|
class _CloudGuardDataSourceState:
|
@@ -153,13 +169,13 @@ class _CloudGuardDataSourceState:
|
|
153
169
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
154
170
|
|
155
171
|
Avoid entering confidential information.
|
172
|
+
:param pulumi.Input[Sequence[pulumi.Input['CloudGuardDataSourceRegionStatusDetailArgs']]] region_status_details: Information about the region and status of query replication
|
173
|
+
:param pulumi.Input[str] state: The current state of the resource.
|
174
|
+
:param pulumi.Input[str] status: (Updatable) Status of DataSource. Default value is DISABLED.
|
156
175
|
|
157
176
|
|
158
177
|
** IMPORTANT **
|
159
178
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
160
|
-
:param pulumi.Input[Sequence[pulumi.Input['CloudGuardDataSourceRegionStatusDetailArgs']]] region_status_details: Information about the region and status of query replication
|
161
|
-
:param pulumi.Input[str] state: The current state of the resource.
|
162
|
-
:param pulumi.Input[str] status: Status of data Source
|
163
179
|
:param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
164
180
|
:param pulumi.Input[str] time_created: The date and time the Data source was created. Format defined by RFC3339.
|
165
181
|
:param pulumi.Input[str] time_updated: The date and time the Data source was updated. Format defined by RFC3339.
|
@@ -270,10 +286,6 @@ class _CloudGuardDataSourceState:
|
|
270
286
|
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
271
287
|
|
272
288
|
Avoid entering confidential information.
|
273
|
-
|
274
|
-
|
275
|
-
** IMPORTANT **
|
276
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
277
289
|
"""
|
278
290
|
return pulumi.get(self, "freeform_tags")
|
279
291
|
|
@@ -309,7 +321,11 @@ class _CloudGuardDataSourceState:
|
|
309
321
|
@pulumi.getter
|
310
322
|
def status(self) -> Optional[pulumi.Input[str]]:
|
311
323
|
"""
|
312
|
-
Status of
|
324
|
+
(Updatable) Status of DataSource. Default value is DISABLED.
|
325
|
+
|
326
|
+
|
327
|
+
** IMPORTANT **
|
328
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
313
329
|
"""
|
314
330
|
return pulumi.get(self, "status")
|
315
331
|
|
@@ -365,6 +381,7 @@ class CloudGuardDataSource(pulumi.CustomResource):
|
|
365
381
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
366
382
|
display_name: Optional[pulumi.Input[str]] = None,
|
367
383
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
384
|
+
status: Optional[pulumi.Input[str]] = None,
|
368
385
|
__props__=None):
|
369
386
|
"""
|
370
387
|
This resource provides the Data Source resource in Oracle Cloud Infrastructure Cloud Guard service.
|
@@ -405,7 +422,8 @@ class CloudGuardDataSource(pulumi.CustomResource):
|
|
405
422
|
},
|
406
423
|
freeform_tags={
|
407
424
|
"bar-key": "value",
|
408
|
-
}
|
425
|
+
},
|
426
|
+
status=var["data_source_status"])
|
409
427
|
```
|
410
428
|
<!--End PulumiCodeChooser -->
|
411
429
|
|
@@ -427,6 +445,7 @@ class CloudGuardDataSource(pulumi.CustomResource):
|
|
427
445
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
428
446
|
|
429
447
|
Avoid entering confidential information.
|
448
|
+
:param pulumi.Input[str] status: (Updatable) Status of DataSource. Default value is DISABLED.
|
430
449
|
|
431
450
|
|
432
451
|
** IMPORTANT **
|
@@ -477,7 +496,8 @@ class CloudGuardDataSource(pulumi.CustomResource):
|
|
477
496
|
},
|
478
497
|
freeform_tags={
|
479
498
|
"bar-key": "value",
|
480
|
-
}
|
499
|
+
},
|
500
|
+
status=var["data_source_status"])
|
481
501
|
```
|
482
502
|
<!--End PulumiCodeChooser -->
|
483
503
|
|
@@ -510,6 +530,7 @@ class CloudGuardDataSource(pulumi.CustomResource):
|
|
510
530
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
511
531
|
display_name: Optional[pulumi.Input[str]] = None,
|
512
532
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
533
|
+
status: Optional[pulumi.Input[str]] = None,
|
513
534
|
__props__=None):
|
514
535
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
515
536
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -531,10 +552,10 @@ class CloudGuardDataSource(pulumi.CustomResource):
|
|
531
552
|
raise TypeError("Missing required property 'display_name'")
|
532
553
|
__props__.__dict__["display_name"] = display_name
|
533
554
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
555
|
+
__props__.__dict__["status"] = status
|
534
556
|
__props__.__dict__["data_source_detector_mapping_infos"] = None
|
535
557
|
__props__.__dict__["region_status_details"] = None
|
536
558
|
__props__.__dict__["state"] = None
|
537
|
-
__props__.__dict__["status"] = None
|
538
559
|
__props__.__dict__["system_tags"] = None
|
539
560
|
__props__.__dict__["time_created"] = None
|
540
561
|
__props__.__dict__["time_updated"] = None
|
@@ -577,13 +598,13 @@ class CloudGuardDataSource(pulumi.CustomResource):
|
|
577
598
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
578
599
|
|
579
600
|
Avoid entering confidential information.
|
601
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CloudGuardDataSourceRegionStatusDetailArgs']]]] region_status_details: Information about the region and status of query replication
|
602
|
+
:param pulumi.Input[str] state: The current state of the resource.
|
603
|
+
:param pulumi.Input[str] status: (Updatable) Status of DataSource. Default value is DISABLED.
|
580
604
|
|
581
605
|
|
582
606
|
** IMPORTANT **
|
583
607
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
584
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CloudGuardDataSourceRegionStatusDetailArgs']]]] region_status_details: Information about the region and status of query replication
|
585
|
-
:param pulumi.Input[str] state: The current state of the resource.
|
586
|
-
:param pulumi.Input[str] status: Status of data Source
|
587
608
|
:param pulumi.Input[Mapping[str, Any]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
588
609
|
:param pulumi.Input[str] time_created: The date and time the Data source was created. Format defined by RFC3339.
|
589
610
|
:param pulumi.Input[str] time_updated: The date and time the Data source was updated. Format defined by RFC3339.
|
@@ -662,10 +683,6 @@ class CloudGuardDataSource(pulumi.CustomResource):
|
|
662
683
|
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
663
684
|
|
664
685
|
Avoid entering confidential information.
|
665
|
-
|
666
|
-
|
667
|
-
** IMPORTANT **
|
668
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
669
686
|
"""
|
670
687
|
return pulumi.get(self, "freeform_tags")
|
671
688
|
|
@@ -689,7 +706,11 @@ class CloudGuardDataSource(pulumi.CustomResource):
|
|
689
706
|
@pulumi.getter
|
690
707
|
def status(self) -> pulumi.Output[str]:
|
691
708
|
"""
|
692
|
-
Status of
|
709
|
+
(Updatable) Status of DataSource. Default value is DISABLED.
|
710
|
+
|
711
|
+
|
712
|
+
** IMPORTANT **
|
713
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
693
714
|
"""
|
694
715
|
return pulumi.get(self, "status")
|
695
716
|
|
@@ -443,7 +443,7 @@ class DataMaskRule(pulumi.CustomResource):
|
|
443
443
|
"""
|
444
444
|
This resource provides the Data Mask Rule resource in Oracle Cloud Infrastructure Cloud Guard service.
|
445
445
|
|
446
|
-
Creates a new
|
446
|
+
Creates a new DataMaskRule object definition.
|
447
447
|
|
448
448
|
## Example Usage
|
449
449
|
|
@@ -507,7 +507,7 @@ class DataMaskRule(pulumi.CustomResource):
|
|
507
507
|
"""
|
508
508
|
This resource provides the Data Mask Rule resource in Oracle Cloud Infrastructure Cloud Guard service.
|
509
509
|
|
510
|
-
Creates a new
|
510
|
+
Creates a new DataMaskRule object definition.
|
511
511
|
|
512
512
|
## Example Usage
|
513
513
|
|
@@ -444,7 +444,7 @@ class DetectorRecipe(pulumi.CustomResource):
|
|
444
444
|
"""
|
445
445
|
This resource provides the Detector Recipe resource in Oracle Cloud Infrastructure Cloud Guard service.
|
446
446
|
|
447
|
-
Creates a DetectorRecipe
|
447
|
+
Creates a new DetectorRecipe object.
|
448
448
|
|
449
449
|
## Import
|
450
450
|
|
@@ -482,7 +482,7 @@ class DetectorRecipe(pulumi.CustomResource):
|
|
482
482
|
"""
|
483
483
|
This resource provides the Detector Recipe resource in Oracle Cloud Infrastructure Cloud Guard service.
|
484
484
|
|
485
|
-
Creates a DetectorRecipe
|
485
|
+
Creates a new DetectorRecipe object.
|
486
486
|
|
487
487
|
## Import
|
488
488
|
|
@@ -91,7 +91,7 @@ def get_cloud_guard_configuration(compartment_id: Optional[str] = None,
|
|
91
91
|
"""
|
92
92
|
This data source provides details about a specific Cloud Guard Configuration resource in Oracle Cloud Infrastructure Cloud Guard service.
|
93
93
|
|
94
|
-
|
94
|
+
Returns the configuration details for a Cloud Guard tenancy, identified by root compartment OCID.
|
95
95
|
|
96
96
|
## Example Usage
|
97
97
|
|
@@ -126,7 +126,7 @@ def get_cloud_guard_configuration_output(compartment_id: Optional[pulumi.Input[s
|
|
126
126
|
"""
|
127
127
|
This data source provides details about a specific Cloud Guard Configuration resource in Oracle Cloud Infrastructure Cloud Guard service.
|
128
128
|
|
129
|
-
|
129
|
+
Returns the configuration details for a Cloud Guard tenancy, identified by root compartment OCID.
|
130
130
|
|
131
131
|
## Example Usage
|
132
132
|
|
@@ -227,7 +227,7 @@ def get_data_mask_rule(data_mask_rule_id: Optional[str] = None,
|
|
227
227
|
"""
|
228
228
|
This data source provides details about a specific Data Mask Rule resource in Oracle Cloud Infrastructure Cloud Guard service.
|
229
229
|
|
230
|
-
Returns a DataMaskRule identified by DataMaskRuleId
|
230
|
+
Returns a DataMaskRule object, identified by DataMaskRuleId.
|
231
231
|
|
232
232
|
## Example Usage
|
233
233
|
|
@@ -273,7 +273,7 @@ def get_data_mask_rule_output(data_mask_rule_id: Optional[pulumi.Input[str]] = N
|
|
273
273
|
"""
|
274
274
|
This data source provides details about a specific Data Mask Rule resource in Oracle Cloud Infrastructure Cloud Guard service.
|
275
275
|
|
276
|
-
Returns a DataMaskRule identified by DataMaskRuleId
|
276
|
+
Returns a DataMaskRule object, identified by DataMaskRuleId.
|
277
277
|
|
278
278
|
## Example Usage
|
279
279
|
|
@@ -167,7 +167,7 @@ def get_data_mask_rules(access_level: Optional[str] = None,
|
|
167
167
|
"""
|
168
168
|
This data source provides the list of Data Mask Rules in Oracle Cloud Infrastructure Cloud Guard service.
|
169
169
|
|
170
|
-
Returns a list of all
|
170
|
+
Returns a list of all DataMaskRule objects in the specified compartmentId (OCID) and its subcompartments.
|
171
171
|
|
172
172
|
## Example Usage
|
173
173
|
|
@@ -238,7 +238,7 @@ def get_data_mask_rules_output(access_level: Optional[pulumi.Input[Optional[str]
|
|
238
238
|
"""
|
239
239
|
This data source provides the list of Data Mask Rules in Oracle Cloud Infrastructure Cloud Guard service.
|
240
240
|
|
241
|
-
Returns a list of all
|
241
|
+
Returns a list of all DataMaskRule objects in the specified compartmentId (OCID) and its subcompartments.
|
242
242
|
|
243
243
|
## Example Usage
|
244
244
|
|
@@ -239,7 +239,7 @@ def get_detector_recipe(detector_recipe_id: Optional[str] = None,
|
|
239
239
|
"""
|
240
240
|
This data source provides details about a specific Detector Recipe resource in Oracle Cloud Infrastructure Cloud Guard service.
|
241
241
|
|
242
|
-
Returns a DetectorRecipe identified by detectorRecipeId
|
242
|
+
Returns a detector recipe (DetectorRecipe object) identified by detectorRecipeId.
|
243
243
|
|
244
244
|
## Example Usage
|
245
245
|
|
@@ -286,7 +286,7 @@ def get_detector_recipe_output(detector_recipe_id: Optional[pulumi.Input[str]] =
|
|
286
286
|
"""
|
287
287
|
This data source provides details about a specific Detector Recipe resource in Oracle Cloud Infrastructure Cloud Guard service.
|
288
288
|
|
289
|
-
Returns a DetectorRecipe identified by detectorRecipeId
|
289
|
+
Returns a detector recipe (DetectorRecipe object) identified by detectorRecipeId.
|
290
290
|
|
291
291
|
## Example Usage
|
292
292
|
|
@@ -141,7 +141,7 @@ def get_detector_recipes(access_level: Optional[str] = None,
|
|
141
141
|
"""
|
142
142
|
This data source provides the list of Detector Recipes in Oracle Cloud Infrastructure Cloud Guard service.
|
143
143
|
|
144
|
-
Returns a list of all
|
144
|
+
Returns a list of all detector recipes (DetectorRecipe objects) in a compartment, identified by compartmentId.
|
145
145
|
|
146
146
|
The ListDetectorRecipes operation returns only the detector recipes in `compartmentId` passed.
|
147
147
|
The list does not include any subcompartments of the compartmentId passed.
|
@@ -216,7 +216,7 @@ def get_detector_recipes_output(access_level: Optional[pulumi.Input[Optional[str
|
|
216
216
|
"""
|
217
217
|
This data source provides the list of Detector Recipes in Oracle Cloud Infrastructure Cloud Guard service.
|
218
218
|
|
219
|
-
Returns a list of all
|
219
|
+
Returns a list of all detector recipes (DetectorRecipe objects) in a compartment, identified by compartmentId.
|
220
220
|
|
221
221
|
The ListDetectorRecipes operation returns only the detector recipes in `compartmentId` passed.
|
222
222
|
The list does not include any subcompartments of the compartmentId passed.
|
@@ -238,7 +238,7 @@ def get_managed_list(managed_list_id: Optional[str] = None,
|
|
238
238
|
"""
|
239
239
|
This data source provides details about a specific Managed List resource in Oracle Cloud Infrastructure Cloud Guard service.
|
240
240
|
|
241
|
-
Returns a managed list identified by managedListId
|
241
|
+
Returns a managed list identified by managedListId.
|
242
242
|
|
243
243
|
## Example Usage
|
244
244
|
|
@@ -285,7 +285,7 @@ def get_managed_list_output(managed_list_id: Optional[pulumi.Input[str]] = None,
|
|
285
285
|
"""
|
286
286
|
This data source provides details about a specific Managed List resource in Oracle Cloud Infrastructure Cloud Guard service.
|
287
287
|
|
288
|
-
Returns a managed list identified by managedListId
|
288
|
+
Returns a managed list identified by managedListId.
|
289
289
|
|
290
290
|
## Example Usage
|
291
291
|
|
@@ -154,7 +154,7 @@ def get_managed_lists(access_level: Optional[str] = None,
|
|
154
154
|
"""
|
155
155
|
This data source provides the list of Managed Lists in Oracle Cloud Infrastructure Cloud Guard service.
|
156
156
|
|
157
|
-
Returns a list of
|
157
|
+
Returns a list of all ManagedList objects in a compartment, identified by compartmentId.
|
158
158
|
The ListManagedLists operation returns only the managed lists in `compartmentId` passed.
|
159
159
|
The list does not include any subcompartments of the compartmentId passed.
|
160
160
|
|
@@ -233,7 +233,7 @@ def get_managed_lists_output(access_level: Optional[pulumi.Input[Optional[str]]]
|
|
233
233
|
"""
|
234
234
|
This data source provides the list of Managed Lists in Oracle Cloud Infrastructure Cloud Guard service.
|
235
235
|
|
236
|
-
Returns a list of
|
236
|
+
Returns a list of all ManagedList objects in a compartment, identified by compartmentId.
|
237
237
|
The ListManagedLists operation returns only the managed lists in `compartmentId` passed.
|
238
238
|
The list does not include any subcompartments of the compartmentId passed.
|
239
239
|
|
@@ -450,7 +450,7 @@ class ManagedList(pulumi.CustomResource):
|
|
450
450
|
"""
|
451
451
|
This resource provides the Managed List resource in Oracle Cloud Infrastructure Cloud Guard service.
|
452
452
|
|
453
|
-
Creates a new ManagedList.
|
453
|
+
Creates a new ManagedList object.
|
454
454
|
|
455
455
|
## Import
|
456
456
|
|
@@ -490,7 +490,7 @@ class ManagedList(pulumi.CustomResource):
|
|
490
490
|
"""
|
491
491
|
This resource provides the Managed List resource in Oracle Cloud Infrastructure Cloud Guard service.
|
492
492
|
|
493
|
-
Creates a new ManagedList.
|
493
|
+
Creates a new ManagedList object.
|
494
494
|
|
495
495
|
## Import
|
496
496
|
|
pulumi_oci/cloudguard/outputs.py
CHANGED
@@ -501,7 +501,11 @@ class CloudGuardDataSourceRegionStatusDetail(dict):
|
|
501
501
|
status: Optional[str] = None):
|
502
502
|
"""
|
503
503
|
:param str region: Data Source replication region.
|
504
|
-
:param str status: Status of
|
504
|
+
:param str status: (Updatable) Status of DataSource. Default value is DISABLED.
|
505
|
+
|
506
|
+
|
507
|
+
** IMPORTANT **
|
508
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
505
509
|
"""
|
506
510
|
if region is not None:
|
507
511
|
pulumi.set(__self__, "region", region)
|
@@ -520,7 +524,11 @@ class CloudGuardDataSourceRegionStatusDetail(dict):
|
|
520
524
|
@pulumi.getter
|
521
525
|
def status(self) -> Optional[str]:
|
522
526
|
"""
|
523
|
-
Status of
|
527
|
+
(Updatable) Status of DataSource. Default value is DISABLED.
|
528
|
+
|
529
|
+
|
530
|
+
** IMPORTANT **
|
531
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
524
532
|
"""
|
525
533
|
return pulumi.get(self, "status")
|
526
534
|
|
@@ -755,7 +755,7 @@ class DrProtectionGroup(pulumi.CustomResource):
|
|
755
755
|
|
756
756
|
@property
|
757
757
|
@pulumi.getter
|
758
|
-
def members(self) -> pulumi.Output[Sequence['outputs.DrProtectionGroupMember']]:
|
758
|
+
def members(self) -> pulumi.Output[Optional[Sequence['outputs.DrProtectionGroupMember']]]:
|
759
759
|
"""
|
760
760
|
(Updatable) A list of DR protection group members.
|
761
761
|
"""
|
pulumi_oci/email/__init__.py
CHANGED