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/email/dkim.py
CHANGED
@@ -25,7 +25,7 @@ class DkimArgs:
|
|
25
25
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined 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). Example: `{"Operations.CostCenter": "42"}`
|
26
26
|
:param pulumi.Input[str] description: (Updatable) A string that describes the details about the DKIM. It does not have to be unique, and you can change it. Avoid entering confidential information.
|
27
27
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
28
|
-
:param pulumi.Input[str] name: The DKIM selector. This selector is required to be globally unique for this email domain. If you do not provide the selector, we will generate one for you. If you do provide the selector, we suggest adding a short region indicator to differentiate from your signing of emails in other regions you
|
28
|
+
:param pulumi.Input[str] name: The DKIM selector. This selector is required to be globally unique for this email domain. If you do not provide the selector, we will generate one for you. If you do provide the selector, we suggest adding a short region indicator to differentiate from your signing of emails in other regions you might be subscribed to. Selectors limited to ASCII characters can use alphanumeric, dash ("-"), and dot (".") characters. Non-ASCII selector names should adopt IDNA2008 normalization (RFC 5891-5892).
|
29
29
|
|
30
30
|
Avoid entering confidential information.
|
31
31
|
|
@@ -97,7 +97,7 @@ class DkimArgs:
|
|
97
97
|
@pulumi.getter
|
98
98
|
def name(self) -> Optional[pulumi.Input[str]]:
|
99
99
|
"""
|
100
|
-
The DKIM selector. This selector is required to be globally unique for this email domain. If you do not provide the selector, we will generate one for you. If you do provide the selector, we suggest adding a short region indicator to differentiate from your signing of emails in other regions you
|
100
|
+
The DKIM selector. This selector is required to be globally unique for this email domain. If you do not provide the selector, we will generate one for you. If you do provide the selector, we suggest adding a short region indicator to differentiate from your signing of emails in other regions you might be subscribed to. Selectors limited to ASCII characters can use alphanumeric, dash ("-"), and dot (".") characters. Non-ASCII selector names should adopt IDNA2008 normalization (RFC 5891-5892).
|
101
101
|
|
102
102
|
Avoid entering confidential information.
|
103
103
|
|
@@ -137,11 +137,11 @@ class _DkimState:
|
|
137
137
|
:param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains this DKIM.
|
138
138
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined 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). Example: `{"Operations.CostCenter": "42"}`
|
139
139
|
:param pulumi.Input[str] description: (Updatable) A string that describes the details about the DKIM. It does not have to be unique, and you can change it. Avoid entering confidential information.
|
140
|
-
:param pulumi.Input[str] dns_subdomain_name: The name of the DNS subdomain that must be provisioned to enable email recipients to verify DKIM signatures. It is usually created with a CNAME record set to the cnameRecordValue
|
140
|
+
:param pulumi.Input[str] dns_subdomain_name: The name of the DNS subdomain that must be provisioned to enable email recipients to verify DKIM signatures. It is usually created with a CNAME record set to the cnameRecordValue.
|
141
141
|
:param pulumi.Input[str] email_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the EmailDomain for this DKIM.
|
142
142
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
143
143
|
:param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource.
|
144
|
-
:param pulumi.Input[str] name: The DKIM selector. This selector is required to be globally unique for this email domain. If you do not provide the selector, we will generate one for you. If you do provide the selector, we suggest adding a short region indicator to differentiate from your signing of emails in other regions you
|
144
|
+
:param pulumi.Input[str] name: The DKIM selector. This selector is required to be globally unique for this email domain. If you do not provide the selector, we will generate one for you. If you do provide the selector, we suggest adding a short region indicator to differentiate from your signing of emails in other regions you might be subscribed to. Selectors limited to ASCII characters can use alphanumeric, dash ("-"), and dot (".") characters. Non-ASCII selector names should adopt IDNA2008 normalization (RFC 5891-5892).
|
145
145
|
|
146
146
|
Avoid entering confidential information.
|
147
147
|
|
@@ -154,7 +154,7 @@ class _DkimState:
|
|
154
154
|
: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"}`
|
155
155
|
:param pulumi.Input[str] time_created: The time the DKIM was created. Times are expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, "YYYY-MM-ddThh:mmZ". Example: `2021-02-12T22:47:12.613Z`
|
156
156
|
:param pulumi.Input[str] time_updated: The time of the last change to the DKIM configuration, due to a state change or an update operation. Times are expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, "YYYY-MM-ddThh:mmZ".
|
157
|
-
:param pulumi.Input[str] txt_record_value: The DNS TXT record value to provision to the DKIM DNS subdomain in place of using a CNAME record. This is used in cases where a CNAME
|
157
|
+
:param pulumi.Input[str] txt_record_value: The DNS TXT record value to provision to the DKIM DNS subdomain in place of using a CNAME record. This is used in cases where a CNAME cannot be used, such as when the cnameRecordValue would exceed the maximum length for a DNS entry. You can also use this if you have an existing procedure to directly provision TXT records for DKIM. Many DNS APIs require you to break this string into segments of fewer than 255 characters.
|
158
158
|
"""
|
159
159
|
if cname_record_value is not None:
|
160
160
|
pulumi.set(__self__, "cname_record_value", cname_record_value)
|
@@ -237,7 +237,7 @@ class _DkimState:
|
|
237
237
|
@pulumi.getter(name="dnsSubdomainName")
|
238
238
|
def dns_subdomain_name(self) -> Optional[pulumi.Input[str]]:
|
239
239
|
"""
|
240
|
-
The name of the DNS subdomain that must be provisioned to enable email recipients to verify DKIM signatures. It is usually created with a CNAME record set to the cnameRecordValue
|
240
|
+
The name of the DNS subdomain that must be provisioned to enable email recipients to verify DKIM signatures. It is usually created with a CNAME record set to the cnameRecordValue.
|
241
241
|
"""
|
242
242
|
return pulumi.get(self, "dns_subdomain_name")
|
243
243
|
|
@@ -285,7 +285,7 @@ class _DkimState:
|
|
285
285
|
@pulumi.getter
|
286
286
|
def name(self) -> Optional[pulumi.Input[str]]:
|
287
287
|
"""
|
288
|
-
The DKIM selector. This selector is required to be globally unique for this email domain. If you do not provide the selector, we will generate one for you. If you do provide the selector, we suggest adding a short region indicator to differentiate from your signing of emails in other regions you
|
288
|
+
The DKIM selector. This selector is required to be globally unique for this email domain. If you do not provide the selector, we will generate one for you. If you do provide the selector, we suggest adding a short region indicator to differentiate from your signing of emails in other regions you might be subscribed to. Selectors limited to ASCII characters can use alphanumeric, dash ("-"), and dot (".") characters. Non-ASCII selector names should adopt IDNA2008 normalization (RFC 5891-5892).
|
289
289
|
|
290
290
|
Avoid entering confidential information.
|
291
291
|
|
@@ -353,7 +353,7 @@ class _DkimState:
|
|
353
353
|
@pulumi.getter(name="txtRecordValue")
|
354
354
|
def txt_record_value(self) -> Optional[pulumi.Input[str]]:
|
355
355
|
"""
|
356
|
-
The DNS TXT record value to provision to the DKIM DNS subdomain in place of using a CNAME record. This is used in cases where a CNAME
|
356
|
+
The DNS TXT record value to provision to the DKIM DNS subdomain in place of using a CNAME record. This is used in cases where a CNAME cannot be used, such as when the cnameRecordValue would exceed the maximum length for a DNS entry. You can also use this if you have an existing procedure to directly provision TXT records for DKIM. Many DNS APIs require you to break this string into segments of fewer than 255 characters.
|
357
357
|
"""
|
358
358
|
return pulumi.get(self, "txt_record_value")
|
359
359
|
|
@@ -376,10 +376,10 @@ class Dkim(pulumi.CustomResource):
|
|
376
376
|
"""
|
377
377
|
This resource provides the Dkim resource in Oracle Cloud Infrastructure Email service.
|
378
378
|
|
379
|
-
Creates a new DKIM for
|
380
|
-
This DKIM
|
379
|
+
Creates a new DKIM for an email domain.
|
380
|
+
This DKIM signs all approved senders in the tenancy that are in this email domain.
|
381
381
|
Best security practices indicate to periodically rotate the DKIM that is doing the signing.
|
382
|
-
When a second DKIM is applied, all senders
|
382
|
+
When a second DKIM is applied, all senders seamlessly pick up the new key
|
383
383
|
without interruption in signing.
|
384
384
|
|
385
385
|
## Example Usage
|
@@ -415,7 +415,7 @@ class Dkim(pulumi.CustomResource):
|
|
415
415
|
:param pulumi.Input[str] description: (Updatable) A string that describes the details about the DKIM. It does not have to be unique, and you can change it. Avoid entering confidential information.
|
416
416
|
:param pulumi.Input[str] email_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the EmailDomain for this DKIM.
|
417
417
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
418
|
-
:param pulumi.Input[str] name: The DKIM selector. This selector is required to be globally unique for this email domain. If you do not provide the selector, we will generate one for you. If you do provide the selector, we suggest adding a short region indicator to differentiate from your signing of emails in other regions you
|
418
|
+
:param pulumi.Input[str] name: The DKIM selector. This selector is required to be globally unique for this email domain. If you do not provide the selector, we will generate one for you. If you do provide the selector, we suggest adding a short region indicator to differentiate from your signing of emails in other regions you might be subscribed to. Selectors limited to ASCII characters can use alphanumeric, dash ("-"), and dot (".") characters. Non-ASCII selector names should adopt IDNA2008 normalization (RFC 5891-5892).
|
419
419
|
|
420
420
|
Avoid entering confidential information.
|
421
421
|
|
@@ -434,10 +434,10 @@ class Dkim(pulumi.CustomResource):
|
|
434
434
|
"""
|
435
435
|
This resource provides the Dkim resource in Oracle Cloud Infrastructure Email service.
|
436
436
|
|
437
|
-
Creates a new DKIM for
|
438
|
-
This DKIM
|
437
|
+
Creates a new DKIM for an email domain.
|
438
|
+
This DKIM signs all approved senders in the tenancy that are in this email domain.
|
439
439
|
Best security practices indicate to periodically rotate the DKIM that is doing the signing.
|
440
|
-
When a second DKIM is applied, all senders
|
440
|
+
When a second DKIM is applied, all senders seamlessly pick up the new key
|
441
441
|
without interruption in signing.
|
442
442
|
|
443
443
|
## Example Usage
|
@@ -547,11 +547,11 @@ class Dkim(pulumi.CustomResource):
|
|
547
547
|
:param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains this DKIM.
|
548
548
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined 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). Example: `{"Operations.CostCenter": "42"}`
|
549
549
|
:param pulumi.Input[str] description: (Updatable) A string that describes the details about the DKIM. It does not have to be unique, and you can change it. Avoid entering confidential information.
|
550
|
-
:param pulumi.Input[str] dns_subdomain_name: The name of the DNS subdomain that must be provisioned to enable email recipients to verify DKIM signatures. It is usually created with a CNAME record set to the cnameRecordValue
|
550
|
+
:param pulumi.Input[str] dns_subdomain_name: The name of the DNS subdomain that must be provisioned to enable email recipients to verify DKIM signatures. It is usually created with a CNAME record set to the cnameRecordValue.
|
551
551
|
:param pulumi.Input[str] email_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the EmailDomain for this DKIM.
|
552
552
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
553
553
|
:param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource.
|
554
|
-
:param pulumi.Input[str] name: The DKIM selector. This selector is required to be globally unique for this email domain. If you do not provide the selector, we will generate one for you. If you do provide the selector, we suggest adding a short region indicator to differentiate from your signing of emails in other regions you
|
554
|
+
:param pulumi.Input[str] name: The DKIM selector. This selector is required to be globally unique for this email domain. If you do not provide the selector, we will generate one for you. If you do provide the selector, we suggest adding a short region indicator to differentiate from your signing of emails in other regions you might be subscribed to. Selectors limited to ASCII characters can use alphanumeric, dash ("-"), and dot (".") characters. Non-ASCII selector names should adopt IDNA2008 normalization (RFC 5891-5892).
|
555
555
|
|
556
556
|
Avoid entering confidential information.
|
557
557
|
|
@@ -564,7 +564,7 @@ class Dkim(pulumi.CustomResource):
|
|
564
564
|
: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"}`
|
565
565
|
:param pulumi.Input[str] time_created: The time the DKIM was created. Times are expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, "YYYY-MM-ddThh:mmZ". Example: `2021-02-12T22:47:12.613Z`
|
566
566
|
:param pulumi.Input[str] time_updated: The time of the last change to the DKIM configuration, due to a state change or an update operation. Times are expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, "YYYY-MM-ddThh:mmZ".
|
567
|
-
:param pulumi.Input[str] txt_record_value: The DNS TXT record value to provision to the DKIM DNS subdomain in place of using a CNAME record. This is used in cases where a CNAME
|
567
|
+
:param pulumi.Input[str] txt_record_value: The DNS TXT record value to provision to the DKIM DNS subdomain in place of using a CNAME record. This is used in cases where a CNAME cannot be used, such as when the cnameRecordValue would exceed the maximum length for a DNS entry. You can also use this if you have an existing procedure to directly provision TXT records for DKIM. Many DNS APIs require you to break this string into segments of fewer than 255 characters.
|
568
568
|
"""
|
569
569
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
570
570
|
|
@@ -622,7 +622,7 @@ class Dkim(pulumi.CustomResource):
|
|
622
622
|
@pulumi.getter(name="dnsSubdomainName")
|
623
623
|
def dns_subdomain_name(self) -> pulumi.Output[str]:
|
624
624
|
"""
|
625
|
-
The name of the DNS subdomain that must be provisioned to enable email recipients to verify DKIM signatures. It is usually created with a CNAME record set to the cnameRecordValue
|
625
|
+
The name of the DNS subdomain that must be provisioned to enable email recipients to verify DKIM signatures. It is usually created with a CNAME record set to the cnameRecordValue.
|
626
626
|
"""
|
627
627
|
return pulumi.get(self, "dns_subdomain_name")
|
628
628
|
|
@@ -654,7 +654,7 @@ class Dkim(pulumi.CustomResource):
|
|
654
654
|
@pulumi.getter
|
655
655
|
def name(self) -> pulumi.Output[str]:
|
656
656
|
"""
|
657
|
-
The DKIM selector. This selector is required to be globally unique for this email domain. If you do not provide the selector, we will generate one for you. If you do provide the selector, we suggest adding a short region indicator to differentiate from your signing of emails in other regions you
|
657
|
+
The DKIM selector. This selector is required to be globally unique for this email domain. If you do not provide the selector, we will generate one for you. If you do provide the selector, we suggest adding a short region indicator to differentiate from your signing of emails in other regions you might be subscribed to. Selectors limited to ASCII characters can use alphanumeric, dash ("-"), and dot (".") characters. Non-ASCII selector names should adopt IDNA2008 normalization (RFC 5891-5892).
|
658
658
|
|
659
659
|
Avoid entering confidential information.
|
660
660
|
|
@@ -702,7 +702,7 @@ class Dkim(pulumi.CustomResource):
|
|
702
702
|
@pulumi.getter(name="txtRecordValue")
|
703
703
|
def txt_record_value(self) -> pulumi.Output[str]:
|
704
704
|
"""
|
705
|
-
The DNS TXT record value to provision to the DKIM DNS subdomain in place of using a CNAME record. This is used in cases where a CNAME
|
705
|
+
The DNS TXT record value to provision to the DKIM DNS subdomain in place of using a CNAME record. This is used in cases where a CNAME cannot be used, such as when the cnameRecordValue would exceed the maximum length for a DNS entry. You can also use this if you have an existing procedure to directly provision TXT records for DKIM. Many DNS APIs require you to break this string into segments of fewer than 255 characters.
|
706
706
|
"""
|
707
707
|
return pulumi.get(self, "txt_record_value")
|
708
708
|
|
pulumi_oci/email/email_domain.py
CHANGED
@@ -25,7 +25,7 @@ class EmailDomainArgs:
|
|
25
25
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined 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). Example: `{"Operations.CostCenter": "42"}`
|
26
26
|
:param pulumi.Input[str] description: (Updatable) A string that describes the details about the domain. It does not have to be unique, and you can change it. Avoid entering confidential information.
|
27
27
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
28
|
-
:param pulumi.Input[str] name: The name of the email domain in the Internet Domain Name System (DNS). The email domain name must be unique in the region for this tenancy. Domain names limited to ASCII characters use alphanumeric, dash ("-"), and dot (".") characters. The dash and dot are only allowed between alphanumeric characters. For details,
|
28
|
+
:param pulumi.Input[str] name: The name of the email domain in the Internet Domain Name System (DNS). The email domain name must be unique in the region for this tenancy. Domain names limited to ASCII characters use alphanumeric, dash ("-"), and dot (".") characters. The dash and dot are only allowed between alphanumeric characters. For details, see [RFC 5321, section 4.1.2](https://tools.ietf.org/html/rfc5321#section-4.1.2) Non-ASCII domain names should adopt IDNA2008 normalization (RFC 5891-5892).
|
29
29
|
|
30
30
|
|
31
31
|
** IMPORTANT **
|
@@ -93,7 +93,7 @@ class EmailDomainArgs:
|
|
93
93
|
@pulumi.getter
|
94
94
|
def name(self) -> Optional[pulumi.Input[str]]:
|
95
95
|
"""
|
96
|
-
The name of the email domain in the Internet Domain Name System (DNS). The email domain name must be unique in the region for this tenancy. Domain names limited to ASCII characters use alphanumeric, dash ("-"), and dot (".") characters. The dash and dot are only allowed between alphanumeric characters. For details,
|
96
|
+
The name of the email domain in the Internet Domain Name System (DNS). The email domain name must be unique in the region for this tenancy. Domain names limited to ASCII characters use alphanumeric, dash ("-"), and dot (".") characters. The dash and dot are only allowed between alphanumeric characters. For details, see [RFC 5321, section 4.1.2](https://tools.ietf.org/html/rfc5321#section-4.1.2) Non-ASCII domain names should adopt IDNA2008 normalization (RFC 5891-5892).
|
97
97
|
|
98
98
|
|
99
99
|
** IMPORTANT **
|
@@ -127,7 +127,7 @@ class _EmailDomainState:
|
|
127
127
|
:param pulumi.Input[str] description: (Updatable) A string that describes the details about the domain. It does not have to be unique, and you can change it. Avoid entering confidential information.
|
128
128
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
129
129
|
:param pulumi.Input[bool] is_spf: Value of the SPF field. For more information about SPF, please see [SPF Authentication](https://docs.cloud.oracle.com/iaas/Content/Email/Concepts/overview.htm#components).
|
130
|
-
:param pulumi.Input[str] name: The name of the email domain in the Internet Domain Name System (DNS). The email domain name must be unique in the region for this tenancy. Domain names limited to ASCII characters use alphanumeric, dash ("-"), and dot (".") characters. The dash and dot are only allowed between alphanumeric characters. For details,
|
130
|
+
:param pulumi.Input[str] name: The name of the email domain in the Internet Domain Name System (DNS). The email domain name must be unique in the region for this tenancy. Domain names limited to ASCII characters use alphanumeric, dash ("-"), and dot (".") characters. The dash and dot are only allowed between alphanumeric characters. For details, see [RFC 5321, section 4.1.2](https://tools.ietf.org/html/rfc5321#section-4.1.2) Non-ASCII domain names should adopt IDNA2008 normalization (RFC 5891-5892).
|
131
131
|
|
132
132
|
|
133
133
|
** IMPORTANT **
|
@@ -233,7 +233,7 @@ class _EmailDomainState:
|
|
233
233
|
@pulumi.getter
|
234
234
|
def name(self) -> Optional[pulumi.Input[str]]:
|
235
235
|
"""
|
236
|
-
The name of the email domain in the Internet Domain Name System (DNS). The email domain name must be unique in the region for this tenancy. Domain names limited to ASCII characters use alphanumeric, dash ("-"), and dot (".") characters. The dash and dot are only allowed between alphanumeric characters. For details,
|
236
|
+
The name of the email domain in the Internet Domain Name System (DNS). The email domain name must be unique in the region for this tenancy. Domain names limited to ASCII characters use alphanumeric, dash ("-"), and dot (".") characters. The dash and dot are only allowed between alphanumeric characters. For details, see [RFC 5321, section 4.1.2](https://tools.ietf.org/html/rfc5321#section-4.1.2) Non-ASCII domain names should adopt IDNA2008 normalization (RFC 5891-5892).
|
237
237
|
|
238
238
|
|
239
239
|
** IMPORTANT **
|
@@ -331,7 +331,7 @@ class EmailDomain(pulumi.CustomResource):
|
|
331
331
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined 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). Example: `{"Operations.CostCenter": "42"}`
|
332
332
|
:param pulumi.Input[str] description: (Updatable) A string that describes the details about the domain. It does not have to be unique, and you can change it. Avoid entering confidential information.
|
333
333
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
334
|
-
:param pulumi.Input[str] name: The name of the email domain in the Internet Domain Name System (DNS). The email domain name must be unique in the region for this tenancy. Domain names limited to ASCII characters use alphanumeric, dash ("-"), and dot (".") characters. The dash and dot are only allowed between alphanumeric characters. For details,
|
334
|
+
:param pulumi.Input[str] name: The name of the email domain in the Internet Domain Name System (DNS). The email domain name must be unique in the region for this tenancy. Domain names limited to ASCII characters use alphanumeric, dash ("-"), and dot (".") characters. The dash and dot are only allowed between alphanumeric characters. For details, see [RFC 5321, section 4.1.2](https://tools.ietf.org/html/rfc5321#section-4.1.2) Non-ASCII domain names should adopt IDNA2008 normalization (RFC 5891-5892).
|
335
335
|
|
336
336
|
|
337
337
|
** IMPORTANT **
|
@@ -449,7 +449,7 @@ class EmailDomain(pulumi.CustomResource):
|
|
449
449
|
:param pulumi.Input[str] description: (Updatable) A string that describes the details about the domain. It does not have to be unique, and you can change it. Avoid entering confidential information.
|
450
450
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
451
451
|
:param pulumi.Input[bool] is_spf: Value of the SPF field. For more information about SPF, please see [SPF Authentication](https://docs.cloud.oracle.com/iaas/Content/Email/Concepts/overview.htm#components).
|
452
|
-
:param pulumi.Input[str] name: The name of the email domain in the Internet Domain Name System (DNS). The email domain name must be unique in the region for this tenancy. Domain names limited to ASCII characters use alphanumeric, dash ("-"), and dot (".") characters. The dash and dot are only allowed between alphanumeric characters. For details,
|
452
|
+
:param pulumi.Input[str] name: The name of the email domain in the Internet Domain Name System (DNS). The email domain name must be unique in the region for this tenancy. Domain names limited to ASCII characters use alphanumeric, dash ("-"), and dot (".") characters. The dash and dot are only allowed between alphanumeric characters. For details, see [RFC 5321, section 4.1.2](https://tools.ietf.org/html/rfc5321#section-4.1.2) Non-ASCII domain names should adopt IDNA2008 normalization (RFC 5891-5892).
|
453
453
|
|
454
454
|
|
455
455
|
** IMPORTANT **
|
@@ -526,7 +526,7 @@ class EmailDomain(pulumi.CustomResource):
|
|
526
526
|
@pulumi.getter
|
527
527
|
def name(self) -> pulumi.Output[str]:
|
528
528
|
"""
|
529
|
-
The name of the email domain in the Internet Domain Name System (DNS). The email domain name must be unique in the region for this tenancy. Domain names limited to ASCII characters use alphanumeric, dash ("-"), and dot (".") characters. The dash and dot are only allowed between alphanumeric characters. For details,
|
529
|
+
The name of the email domain in the Internet Domain Name System (DNS). The email domain name must be unique in the region for this tenancy. Domain names limited to ASCII characters use alphanumeric, dash ("-"), and dot (".") characters. The dash and dot are only allowed between alphanumeric characters. For details, see [RFC 5321, section 4.1.2](https://tools.ietf.org/html/rfc5321#section-4.1.2) Non-ASCII domain names should adopt IDNA2008 normalization (RFC 5891-5892).
|
530
530
|
|
531
531
|
|
532
532
|
** IMPORTANT **
|
@@ -0,0 +1,138 @@
|
|
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
|
+
|
12
|
+
__all__ = [
|
13
|
+
'GetConfigurationResult',
|
14
|
+
'AwaitableGetConfigurationResult',
|
15
|
+
'get_configuration',
|
16
|
+
'get_configuration_output',
|
17
|
+
]
|
18
|
+
|
19
|
+
@pulumi.output_type
|
20
|
+
class GetConfigurationResult:
|
21
|
+
"""
|
22
|
+
A collection of values returned by getConfiguration.
|
23
|
+
"""
|
24
|
+
def __init__(__self__, compartment_id=None, http_submit_endpoint=None, id=None, smtp_submit_endpoint=None):
|
25
|
+
if compartment_id and not isinstance(compartment_id, str):
|
26
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
27
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
28
|
+
if http_submit_endpoint and not isinstance(http_submit_endpoint, str):
|
29
|
+
raise TypeError("Expected argument 'http_submit_endpoint' to be a str")
|
30
|
+
pulumi.set(__self__, "http_submit_endpoint", http_submit_endpoint)
|
31
|
+
if id and not isinstance(id, str):
|
32
|
+
raise TypeError("Expected argument 'id' to be a str")
|
33
|
+
pulumi.set(__self__, "id", id)
|
34
|
+
if smtp_submit_endpoint and not isinstance(smtp_submit_endpoint, str):
|
35
|
+
raise TypeError("Expected argument 'smtp_submit_endpoint' to be a str")
|
36
|
+
pulumi.set(__self__, "smtp_submit_endpoint", smtp_submit_endpoint)
|
37
|
+
|
38
|
+
@property
|
39
|
+
@pulumi.getter(name="compartmentId")
|
40
|
+
def compartment_id(self) -> str:
|
41
|
+
"""
|
42
|
+
The root compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) (same as the tenancy OCID)
|
43
|
+
"""
|
44
|
+
return pulumi.get(self, "compartment_id")
|
45
|
+
|
46
|
+
@property
|
47
|
+
@pulumi.getter(name="httpSubmitEndpoint")
|
48
|
+
def http_submit_endpoint(self) -> str:
|
49
|
+
"""
|
50
|
+
Endpoint used to submit emails via the HTTP email submission API
|
51
|
+
"""
|
52
|
+
return pulumi.get(self, "http_submit_endpoint")
|
53
|
+
|
54
|
+
@property
|
55
|
+
@pulumi.getter
|
56
|
+
def id(self) -> str:
|
57
|
+
"""
|
58
|
+
The provider-assigned unique ID for this managed resource.
|
59
|
+
"""
|
60
|
+
return pulumi.get(self, "id")
|
61
|
+
|
62
|
+
@property
|
63
|
+
@pulumi.getter(name="smtpSubmitEndpoint")
|
64
|
+
def smtp_submit_endpoint(self) -> str:
|
65
|
+
"""
|
66
|
+
Endpoint used to submit emails via the standard SMTP submission protocol. Note that TLS 1.2 and standard SMTP authentication is required for submission.
|
67
|
+
"""
|
68
|
+
return pulumi.get(self, "smtp_submit_endpoint")
|
69
|
+
|
70
|
+
|
71
|
+
class AwaitableGetConfigurationResult(GetConfigurationResult):
|
72
|
+
# pylint: disable=using-constant-test
|
73
|
+
def __await__(self):
|
74
|
+
if False:
|
75
|
+
yield self
|
76
|
+
return GetConfigurationResult(
|
77
|
+
compartment_id=self.compartment_id,
|
78
|
+
http_submit_endpoint=self.http_submit_endpoint,
|
79
|
+
id=self.id,
|
80
|
+
smtp_submit_endpoint=self.smtp_submit_endpoint)
|
81
|
+
|
82
|
+
|
83
|
+
def get_configuration(compartment_id: Optional[str] = None,
|
84
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetConfigurationResult:
|
85
|
+
"""
|
86
|
+
This data source provides details about a specific Configuration resource in Oracle Cloud Infrastructure Email service.
|
87
|
+
|
88
|
+
Returns email configuration associated with the specified compartment.
|
89
|
+
|
90
|
+
## Example Usage
|
91
|
+
|
92
|
+
<!--Start PulumiCodeChooser -->
|
93
|
+
```python
|
94
|
+
import pulumi
|
95
|
+
import pulumi_oci as oci
|
96
|
+
|
97
|
+
test_configuration = oci.Email.get_configuration(compartment_id=var["compartment_id"])
|
98
|
+
```
|
99
|
+
<!--End PulumiCodeChooser -->
|
100
|
+
|
101
|
+
|
102
|
+
:param str compartment_id: The OCID for the compartment.
|
103
|
+
"""
|
104
|
+
__args__ = dict()
|
105
|
+
__args__['compartmentId'] = compartment_id
|
106
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
107
|
+
__ret__ = pulumi.runtime.invoke('oci:Email/getConfiguration:getConfiguration', __args__, opts=opts, typ=GetConfigurationResult).value
|
108
|
+
|
109
|
+
return AwaitableGetConfigurationResult(
|
110
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
111
|
+
http_submit_endpoint=pulumi.get(__ret__, 'http_submit_endpoint'),
|
112
|
+
id=pulumi.get(__ret__, 'id'),
|
113
|
+
smtp_submit_endpoint=pulumi.get(__ret__, 'smtp_submit_endpoint'))
|
114
|
+
|
115
|
+
|
116
|
+
@_utilities.lift_output_func(get_configuration)
|
117
|
+
def get_configuration_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
118
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetConfigurationResult]:
|
119
|
+
"""
|
120
|
+
This data source provides details about a specific Configuration resource in Oracle Cloud Infrastructure Email service.
|
121
|
+
|
122
|
+
Returns email configuration associated with the specified compartment.
|
123
|
+
|
124
|
+
## Example Usage
|
125
|
+
|
126
|
+
<!--Start PulumiCodeChooser -->
|
127
|
+
```python
|
128
|
+
import pulumi
|
129
|
+
import pulumi_oci as oci
|
130
|
+
|
131
|
+
test_configuration = oci.Email.get_configuration(compartment_id=var["compartment_id"])
|
132
|
+
```
|
133
|
+
<!--End PulumiCodeChooser -->
|
134
|
+
|
135
|
+
|
136
|
+
:param str compartment_id: The OCID for the compartment.
|
137
|
+
"""
|
138
|
+
...
|
pulumi_oci/email/get_dkim.py
CHANGED
@@ -112,7 +112,7 @@ class GetDkimResult:
|
|
112
112
|
@pulumi.getter(name="dnsSubdomainName")
|
113
113
|
def dns_subdomain_name(self) -> str:
|
114
114
|
"""
|
115
|
-
The name of the DNS subdomain that must be provisioned to enable email recipients to verify DKIM signatures. It is usually created with a CNAME record set to the cnameRecordValue
|
115
|
+
The name of the DNS subdomain that must be provisioned to enable email recipients to verify DKIM signatures. It is usually created with a CNAME record set to the cnameRecordValue.
|
116
116
|
"""
|
117
117
|
return pulumi.get(self, "dns_subdomain_name")
|
118
118
|
|
@@ -192,7 +192,7 @@ class GetDkimResult:
|
|
192
192
|
@pulumi.getter(name="txtRecordValue")
|
193
193
|
def txt_record_value(self) -> str:
|
194
194
|
"""
|
195
|
-
The DNS TXT record value to provision to the DKIM DNS subdomain in place of using a CNAME record. This is used in cases where a CNAME
|
195
|
+
The DNS TXT record value to provision to the DKIM DNS subdomain in place of using a CNAME record. This is used in cases where a CNAME cannot be used, such as when the cnameRecordValue would exceed the maximum length for a DNS entry. You can also use this if you have an existing procedure to directly provision TXT records for DKIM. Many DNS APIs require you to break this string into segments of fewer than 255 characters.
|
196
196
|
"""
|
197
197
|
return pulumi.get(self, "txt_record_value")
|
198
198
|
|
pulumi_oci/email/get_dkims.py
CHANGED
@@ -112,7 +112,7 @@ def get_dkims(email_domain_id: Optional[str] = None,
|
|
112
112
|
"""
|
113
113
|
This data source provides the list of Dkims in Oracle Cloud Infrastructure Email service.
|
114
114
|
|
115
|
-
Lists DKIMs for
|
115
|
+
Lists DKIMs for an email domain.
|
116
116
|
|
117
117
|
## Example Usage
|
118
118
|
|
@@ -162,7 +162,7 @@ def get_dkims_output(email_domain_id: Optional[pulumi.Input[str]] = None,
|
|
162
162
|
"""
|
163
163
|
This data source provides the list of Dkims in Oracle Cloud Infrastructure Email service.
|
164
164
|
|
165
|
-
Lists DKIMs for
|
165
|
+
Lists DKIMs for an email domain.
|
166
166
|
|
167
167
|
## Example Usage
|
168
168
|
|
@@ -87,7 +87,7 @@ class GetEmailDomainResult:
|
|
87
87
|
@pulumi.getter
|
88
88
|
def description(self) -> str:
|
89
89
|
"""
|
90
|
-
The description of
|
90
|
+
The description of an email domain.
|
91
91
|
"""
|
92
92
|
return pulumi.get(self, "description")
|
93
93
|
|
@@ -124,7 +124,7 @@ class GetEmailDomainResult:
|
|
124
124
|
@pulumi.getter
|
125
125
|
def name(self) -> str:
|
126
126
|
"""
|
127
|
-
The name of the email domain in the Internet Domain Name System (DNS). Example: `example.
|
127
|
+
The name of the email domain in the Internet Domain Name System (DNS). Example: `mydomain.example.com`
|
128
128
|
"""
|
129
129
|
return pulumi.get(self, "name")
|
130
130
|
|
@@ -76,7 +76,7 @@ class GetEmailDomainsResult:
|
|
76
76
|
@pulumi.getter
|
77
77
|
def name(self) -> Optional[str]:
|
78
78
|
"""
|
79
|
-
The name of the email domain in the Internet Domain Name System (DNS). Example: `example.
|
79
|
+
The name of the email domain in the Internet Domain Name System (DNS). Example: `mydomain.example.com`
|
80
80
|
"""
|
81
81
|
return pulumi.get(self, "name")
|
82
82
|
|
pulumi_oci/email/get_sender.py
CHANGED
@@ -21,7 +21,7 @@ class GetSenderResult:
|
|
21
21
|
"""
|
22
22
|
A collection of values returned by getSender.
|
23
23
|
"""
|
24
|
-
def __init__(__self__, compartment_id=None, defined_tags=None, email_address=None, email_domain_id=None, freeform_tags=None, id=None, is_spf=None, sender_id=None, state=None, time_created=None):
|
24
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, email_address=None, email_domain_id=None, freeform_tags=None, id=None, is_spf=None, sender_id=None, state=None, system_tags=None, time_created=None):
|
25
25
|
if compartment_id and not isinstance(compartment_id, str):
|
26
26
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
27
27
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -49,6 +49,9 @@ class GetSenderResult:
|
|
49
49
|
if state and not isinstance(state, str):
|
50
50
|
raise TypeError("Expected argument 'state' to be a str")
|
51
51
|
pulumi.set(__self__, "state", state)
|
52
|
+
if system_tags and not isinstance(system_tags, dict):
|
53
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
54
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
52
55
|
if time_created and not isinstance(time_created, str):
|
53
56
|
raise TypeError("Expected argument 'time_created' to be a str")
|
54
57
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -122,11 +125,19 @@ class GetSenderResult:
|
|
122
125
|
"""
|
123
126
|
return pulumi.get(self, "state")
|
124
127
|
|
128
|
+
@property
|
129
|
+
@pulumi.getter(name="systemTags")
|
130
|
+
def system_tags(self) -> Mapping[str, Any]:
|
131
|
+
"""
|
132
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
133
|
+
"""
|
134
|
+
return pulumi.get(self, "system_tags")
|
135
|
+
|
125
136
|
@property
|
126
137
|
@pulumi.getter(name="timeCreated")
|
127
138
|
def time_created(self) -> str:
|
128
139
|
"""
|
129
|
-
The date and time the approved sender was added in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
|
140
|
+
The date and time the approved sender was added in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
|
130
141
|
"""
|
131
142
|
return pulumi.get(self, "time_created")
|
132
143
|
|
@@ -146,6 +157,7 @@ class AwaitableGetSenderResult(GetSenderResult):
|
|
146
157
|
is_spf=self.is_spf,
|
147
158
|
sender_id=self.sender_id,
|
148
159
|
state=self.state,
|
160
|
+
system_tags=self.system_tags,
|
149
161
|
time_created=self.time_created)
|
150
162
|
|
151
163
|
|
@@ -185,6 +197,7 @@ def get_sender(sender_id: Optional[str] = None,
|
|
185
197
|
is_spf=pulumi.get(__ret__, 'is_spf'),
|
186
198
|
sender_id=pulumi.get(__ret__, 'sender_id'),
|
187
199
|
state=pulumi.get(__ret__, 'state'),
|
200
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
188
201
|
time_created=pulumi.get(__ret__, 'time_created'))
|
189
202
|
|
190
203
|
|
@@ -118,7 +118,7 @@ class GetSuppressionResult:
|
|
118
118
|
@pulumi.getter(name="timeCreated")
|
119
119
|
def time_created(self) -> str:
|
120
120
|
"""
|
121
|
-
The date and time a recipient's email address was added to the suppression list, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
|
121
|
+
The date and time a recipient's email address was added to the suppression list, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
|
122
122
|
"""
|
123
123
|
return pulumi.get(self, "time_created")
|
124
124
|
|
@@ -126,7 +126,7 @@ class GetSuppressionResult:
|
|
126
126
|
@pulumi.getter(name="timeLastSuppressed")
|
127
127
|
def time_last_suppressed(self) -> str:
|
128
128
|
"""
|
129
|
-
The last date and time the suppression prevented submission in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
|
129
|
+
The last date and time the suppression prevented submission in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
|
130
130
|
"""
|
131
131
|
return pulumi.get(self, "time_last_suppressed")
|
132
132
|
|
@@ -139,10 +139,10 @@ def get_suppressions(compartment_id: Optional[str] = None,
|
|
139
139
|
|
140
140
|
:param str compartment_id: The OCID for the compartment.
|
141
141
|
:param str email_address: The email address of the suppression.
|
142
|
-
:param str time_created_greater_than_or_equal_to: Search for suppressions that were created within a specific date range, using this parameter to specify the earliest creation date for the returned list (inclusive). Specifying this parameter without the corresponding `timeCreatedLessThan` parameter will retrieve suppressions created from the given `timeCreatedGreaterThanOrEqualTo` to the current time, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
|
142
|
+
:param str time_created_greater_than_or_equal_to: Search for suppressions that were created within a specific date range, using this parameter to specify the earliest creation date for the returned list (inclusive). Specifying this parameter without the corresponding `timeCreatedLessThan` parameter will retrieve suppressions created from the given `timeCreatedGreaterThanOrEqualTo` to the current time, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
|
143
143
|
|
144
144
|
**Example:** 2016-12-19T16:39:57.600Z
|
145
|
-
:param str time_created_less_than: Search for suppressions that were created within a specific date range, using this parameter to specify the latest creation date for the returned list (exclusive). Specifying this parameter without the corresponding `timeCreatedGreaterThanOrEqualTo` parameter will retrieve all suppressions created before the specified end date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
|
145
|
+
:param str time_created_less_than: Search for suppressions that were created within a specific date range, using this parameter to specify the latest creation date for the returned list (exclusive). Specifying this parameter without the corresponding `timeCreatedGreaterThanOrEqualTo` parameter will retrieve all suppressions created before the specified end date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
|
146
146
|
|
147
147
|
**Example:** 2016-12-19T16:39:57.600Z
|
148
148
|
"""
|
@@ -196,10 +196,10 @@ def get_suppressions_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
|
196
196
|
|
197
197
|
:param str compartment_id: The OCID for the compartment.
|
198
198
|
:param str email_address: The email address of the suppression.
|
199
|
-
:param str time_created_greater_than_or_equal_to: Search for suppressions that were created within a specific date range, using this parameter to specify the earliest creation date for the returned list (inclusive). Specifying this parameter without the corresponding `timeCreatedLessThan` parameter will retrieve suppressions created from the given `timeCreatedGreaterThanOrEqualTo` to the current time, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
|
199
|
+
:param str time_created_greater_than_or_equal_to: Search for suppressions that were created within a specific date range, using this parameter to specify the earliest creation date for the returned list (inclusive). Specifying this parameter without the corresponding `timeCreatedLessThan` parameter will retrieve suppressions created from the given `timeCreatedGreaterThanOrEqualTo` to the current time, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
|
200
200
|
|
201
201
|
**Example:** 2016-12-19T16:39:57.600Z
|
202
|
-
:param str time_created_less_than: Search for suppressions that were created within a specific date range, using this parameter to specify the latest creation date for the returned list (exclusive). Specifying this parameter without the corresponding `timeCreatedGreaterThanOrEqualTo` parameter will retrieve all suppressions created before the specified end date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
|
202
|
+
:param str time_created_less_than: Search for suppressions that were created within a specific date range, using this parameter to specify the latest creation date for the returned list (exclusive). Specifying this parameter without the corresponding `timeCreatedGreaterThanOrEqualTo` parameter will retrieve all suppressions created before the specified end date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
|
203
203
|
|
204
204
|
**Example:** 2016-12-19T16:39:57.600Z
|
205
205
|
"""
|