pulumi-oci 1.30.0__py3-none-any.whl → 1.30.0a1711740723__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 (44) hide show
  1. pulumi_oci/cloudguard/_inputs.py +2 -10
  2. pulumi_oci/cloudguard/cloud_guard_configuration.py +2 -2
  3. pulumi_oci/cloudguard/cloud_guard_data_source.py +24 -45
  4. pulumi_oci/cloudguard/data_mask_rule.py +2 -2
  5. pulumi_oci/cloudguard/detector_recipe.py +2 -2
  6. pulumi_oci/cloudguard/get_cloud_guard_configuration.py +2 -2
  7. pulumi_oci/cloudguard/get_data_mask_rule.py +2 -2
  8. pulumi_oci/cloudguard/get_data_mask_rules.py +2 -2
  9. pulumi_oci/cloudguard/get_detector_recipe.py +2 -2
  10. pulumi_oci/cloudguard/get_detector_recipes.py +2 -2
  11. pulumi_oci/cloudguard/get_managed_list.py +2 -2
  12. pulumi_oci/cloudguard/get_managed_lists.py +2 -2
  13. pulumi_oci/cloudguard/managed_list.py +2 -2
  14. pulumi_oci/cloudguard/outputs.py +2 -10
  15. pulumi_oci/disasterrecovery/dr_protection_group.py +1 -1
  16. pulumi_oci/email/__init__.py +0 -1
  17. pulumi_oci/email/dkim.py +21 -21
  18. pulumi_oci/email/email_domain.py +7 -7
  19. pulumi_oci/email/get_dkim.py +2 -2
  20. pulumi_oci/email/get_dkims.py +2 -2
  21. pulumi_oci/email/get_email_domain.py +2 -2
  22. pulumi_oci/email/get_email_domains.py +1 -1
  23. pulumi_oci/email/get_sender.py +2 -15
  24. pulumi_oci/email/get_suppression.py +2 -2
  25. pulumi_oci/email/get_suppressions.py +4 -4
  26. pulumi_oci/email/outputs.py +12 -23
  27. pulumi_oci/email/sender.py +4 -32
  28. pulumi_oci/email/suppression.py +8 -8
  29. pulumi_oci/loadbalancer/_inputs.py +2 -2
  30. pulumi_oci/loadbalancer/outputs.py +4 -4
  31. pulumi_oci/loadbalancer/ssl_cipher_suite.py +0 -42
  32. pulumi_oci/managementagent/_inputs.py +44 -0
  33. pulumi_oci/managementagent/get_management_agents.py +3 -20
  34. pulumi_oci/managementagent/management_agent.py +79 -27
  35. pulumi_oci/managementagent/outputs.py +44 -0
  36. pulumi_oci/networkloadbalancer/_inputs.py +4 -4
  37. pulumi_oci/networkloadbalancer/get_network_load_balancer.py +1 -31
  38. pulumi_oci/networkloadbalancer/network_load_balancer.py +23 -184
  39. pulumi_oci/networkloadbalancer/outputs.py +4 -25
  40. {pulumi_oci-1.30.0.dist-info → pulumi_oci-1.30.0a1711740723.dist-info}/METADATA +1 -1
  41. {pulumi_oci-1.30.0.dist-info → pulumi_oci-1.30.0a1711740723.dist-info}/RECORD +43 -44
  42. pulumi_oci/email/get_configuration.py +0 -138
  43. {pulumi_oci-1.30.0.dist-info → pulumi_oci-1.30.0a1711740723.dist-info}/WHEEL +0 -0
  44. {pulumi_oci-1.30.0.dist-info → pulumi_oci-1.30.0a1711740723.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 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).
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 may be subscribed to. Selectors limited to ASCII characters may 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 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).
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 may be subscribed to. Selectors limited to ASCII characters may 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 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).
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 may be subscribed to. Selectors limited to ASCII characters may 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 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.
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 can not be used, such as when the cnameRecordValue would exceed the maximum length for a DNS entry. This can also be used by customers who have an existing procedure to directly provision TXT records for DKIM. Be aware that many DNS APIs will require you to break this string into segments of less 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 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).
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 may be subscribed to. Selectors limited to ASCII characters may 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 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.
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 can not be used, such as when the cnameRecordValue would exceed the maximum length for a DNS entry. This can also be used by customers who have an existing procedure to directly provision TXT records for DKIM. Be aware that many DNS APIs will require you to break this string into segments of less 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 an email domain.
380
- This DKIM signs all approved senders in the tenancy that are in this email domain.
379
+ Creates a new DKIM for a email domain.
380
+ This DKIM will sign 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 seamlessly pick up the new key
382
+ When a second DKIM is applied, all senders will 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 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).
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 may be subscribed to. Selectors limited to ASCII characters may 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 an email domain.
438
- This DKIM signs all approved senders in the tenancy that are in this email domain.
437
+ Creates a new DKIM for a email domain.
438
+ This DKIM will sign 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 seamlessly pick up the new key
440
+ When a second DKIM is applied, all senders will 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 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).
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 may be subscribed to. Selectors limited to ASCII characters may 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 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.
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 can not be used, such as when the cnameRecordValue would exceed the maximum length for a DNS entry. This can also be used by customers who have an existing procedure to directly provision TXT records for DKIM. Be aware that many DNS APIs will require you to break this string into segments of less 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 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).
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 may be subscribed to. Selectors limited to ASCII characters may 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 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.
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 can not be used, such as when the cnameRecordValue would exceed the maximum length for a DNS entry. This can also be used by customers who have an existing procedure to directly provision TXT records for DKIM. Be aware that many DNS APIs will require you to break this string into segments of less than 255 characters.
706
706
  """
707
707
  return pulumi.get(self, "txt_record_value")
708
708
 
@@ -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, 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).
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, please see: 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, 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).
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, please see: 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, 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).
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, please see: 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, 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).
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, please see: 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, 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).
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, please see: 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, 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).
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, please see: 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, 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).
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, please see: 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 **
@@ -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 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.
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 can not be used, such as when the cnameRecordValue would exceed the maximum length for a DNS entry. This can also be used by customers who have an existing procedure to directly provision TXT records for DKIM. Be aware that many DNS APIs will require you to break this string into segments of less than 255 characters.
196
196
  """
197
197
  return pulumi.get(self, "txt_record_value")
198
198
 
@@ -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 an email domain.
115
+ Lists DKIMs for a 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 an email domain.
165
+ Lists DKIMs for a 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 an email domain.
90
+ The description of a 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: `mydomain.example.com`
127
+ The name of the email domain in the Internet Domain Name System (DNS). Example: `example.net`
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: `mydomain.example.com`
79
+ The name of the email domain in the Internet Domain Name System (DNS). Example: `example.net`
80
80
  """
81
81
  return pulumi.get(self, "name")
82
82
 
@@ -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, system_tags=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, 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,9 +49,6 @@ 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)
55
52
  if time_created and not isinstance(time_created, str):
56
53
  raise TypeError("Expected argument 'time_created' to be a str")
57
54
  pulumi.set(__self__, "time_created", time_created)
@@ -125,19 +122,11 @@ class GetSenderResult:
125
122
  """
126
123
  return pulumi.get(self, "state")
127
124
 
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
-
136
125
  @property
137
126
  @pulumi.getter(name="timeCreated")
138
127
  def time_created(self) -> str:
139
128
  """
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).
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.
141
130
  """
142
131
  return pulumi.get(self, "time_created")
143
132
 
@@ -157,7 +146,6 @@ class AwaitableGetSenderResult(GetSenderResult):
157
146
  is_spf=self.is_spf,
158
147
  sender_id=self.sender_id,
159
148
  state=self.state,
160
- system_tags=self.system_tags,
161
149
  time_created=self.time_created)
162
150
 
163
151
 
@@ -197,7 +185,6 @@ def get_sender(sender_id: Optional[str] = None,
197
185
  is_spf=pulumi.get(__ret__, 'is_spf'),
198
186
  sender_id=pulumi.get(__ret__, 'sender_id'),
199
187
  state=pulumi.get(__ret__, 'state'),
200
- system_tags=pulumi.get(__ret__, 'system_tags'),
201
188
  time_created=pulumi.get(__ret__, 'time_created'))
202
189
 
203
190
 
@@ -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](https://tools.ietf.org/html/rfc3339).
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.
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](https://tools.ietf.org/html/rfc3339).
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.
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](https://tools.ietf.org/html/rfc3339).
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.
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](https://tools.ietf.org/html/rfc3339).
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.
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](https://tools.ietf.org/html/rfc3339).
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.
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](https://tools.ietf.org/html/rfc3339).
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.
203
203
 
204
204
  **Example:** 2016-12-19T16:39:57.600Z
205
205
  """
@@ -58,7 +58,7 @@ class GetDkimsDkimCollectionItemResult(dict):
58
58
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains this DKIM.
59
59
  :param Mapping[str, Any] defined_tags: 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"}`
60
60
  :param str description: The description of the DKIM. Avoid entering confidential information.
61
- :param 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.
61
+ :param 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
62
62
  :param str email_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the email domain to which this DKIM belongs.
63
63
  :param Mapping[str, Any] freeform_tags: 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"}`
64
64
  :param str id: A filter to only return resources that match the given id exactly.
@@ -68,7 +68,7 @@ class GetDkimsDkimCollectionItemResult(dict):
68
68
  :param Mapping[str, Any] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
69
69
  :param 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`
70
70
  :param 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".
71
- :param 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.
71
+ :param 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 can not be used, such as when the cnameRecordValue would exceed the maximum length for a DNS entry. This can also be used by customers who have an existing procedure to directly provision TXT records for DKIM. Be aware that many DNS APIs will require you to break this string into segments of less than 255 characters.
72
72
  """
73
73
  pulumi.set(__self__, "cname_record_value", cname_record_value)
74
74
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -122,7 +122,7 @@ class GetDkimsDkimCollectionItemResult(dict):
122
122
  @pulumi.getter(name="dnsSubdomainName")
123
123
  def dns_subdomain_name(self) -> str:
124
124
  """
125
- 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.
125
+ 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
126
126
  """
127
127
  return pulumi.get(self, "dns_subdomain_name")
128
128
 
@@ -202,7 +202,7 @@ class GetDkimsDkimCollectionItemResult(dict):
202
202
  @pulumi.getter(name="txtRecordValue")
203
203
  def txt_record_value(self) -> str:
204
204
  """
205
- 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.
205
+ 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 can not be used, such as when the cnameRecordValue would exceed the maximum length for a DNS entry. This can also be used by customers who have an existing procedure to directly provision TXT records for DKIM. Be aware that many DNS APIs will require you to break this string into segments of less than 255 characters.
206
206
  """
207
207
  return pulumi.get(self, "txt_record_value")
208
208
 
@@ -270,7 +270,7 @@ class GetEmailDomainsEmailDomainCollectionItemResult(dict):
270
270
  :param str active_dkim_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DKIM key that will be used to sign mail sent from this email domain.
271
271
  :param str compartment_id: The OCID for the compartment.
272
272
  :param Mapping[str, Any] defined_tags: 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"}`
273
- :param str description: The description of an email domain.
273
+ :param str description: The description of a email domain.
274
274
  :param Mapping[str, Any] freeform_tags: 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"}`
275
275
  :param str id: A filter to only return resources that match the given id exactly.
276
276
  :param 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).
@@ -319,7 +319,7 @@ class GetEmailDomainsEmailDomainCollectionItemResult(dict):
319
319
  @pulumi.getter
320
320
  def description(self) -> str:
321
321
  """
322
- The description of an email domain.
322
+ The description of a email domain.
323
323
  """
324
324
  return pulumi.get(self, "description")
325
325
 
@@ -451,7 +451,6 @@ class GetSendersSenderResult(dict):
451
451
  id: str,
452
452
  is_spf: bool,
453
453
  state: str,
454
- system_tags: Mapping[str, Any],
455
454
  time_created: str):
456
455
  """
457
456
  :param str compartment_id: The OCID for the compartment.
@@ -462,8 +461,7 @@ class GetSendersSenderResult(dict):
462
461
  :param str id: The unique OCID of the sender.
463
462
  :param 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).
464
463
  :param str state: The current state of a sender.
465
- :param Mapping[str, Any] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
466
- :param str time_created: 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).
464
+ :param str time_created: The date and time the approved sender was added in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
467
465
  """
468
466
  pulumi.set(__self__, "compartment_id", compartment_id)
469
467
  pulumi.set(__self__, "defined_tags", defined_tags)
@@ -473,7 +471,6 @@ class GetSendersSenderResult(dict):
473
471
  pulumi.set(__self__, "id", id)
474
472
  pulumi.set(__self__, "is_spf", is_spf)
475
473
  pulumi.set(__self__, "state", state)
476
- pulumi.set(__self__, "system_tags", system_tags)
477
474
  pulumi.set(__self__, "time_created", time_created)
478
475
 
479
476
  @property
@@ -540,19 +537,11 @@ class GetSendersSenderResult(dict):
540
537
  """
541
538
  return pulumi.get(self, "state")
542
539
 
543
- @property
544
- @pulumi.getter(name="systemTags")
545
- def system_tags(self) -> Mapping[str, Any]:
546
- """
547
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
548
- """
549
- return pulumi.get(self, "system_tags")
550
-
551
540
  @property
552
541
  @pulumi.getter(name="timeCreated")
553
542
  def time_created(self) -> str:
554
543
  """
555
- 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).
544
+ The date and time the approved sender was added in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
556
545
  """
557
546
  return pulumi.get(self, "time_created")
558
547
 
@@ -604,8 +593,8 @@ class GetSuppressionsSuppressionResult(dict):
604
593
  :param str id: The unique OCID of the suppression.
605
594
  :param str message_id: The value of the Message-ID header from the email that triggered a suppression. This value is as defined in RFC 5322 section 3.6.4, excluding angle-brackets. Not provided for all types of suppressions.
606
595
  :param str reason: The reason that the email address was suppressed. For more information on the types of bounces, see [Suppression List](https://docs.cloud.oracle.com/iaas/Content/Email/Concepts/overview.htm#components).
607
- :param str time_created: 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).
608
- :param str time_last_suppressed: 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).
596
+ :param str time_created: 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.
597
+ :param str time_last_suppressed: The last date and time the suppression prevented submission in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
609
598
  """
610
599
  pulumi.set(__self__, "compartment_id", compartment_id)
611
600
  pulumi.set(__self__, "email_address", email_address)
@@ -677,7 +666,7 @@ class GetSuppressionsSuppressionResult(dict):
677
666
  @pulumi.getter(name="timeCreated")
678
667
  def time_created(self) -> str:
679
668
  """
680
- 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).
669
+ 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.
681
670
  """
682
671
  return pulumi.get(self, "time_created")
683
672
 
@@ -685,7 +674,7 @@ class GetSuppressionsSuppressionResult(dict):
685
674
  @pulumi.getter(name="timeLastSuppressed")
686
675
  def time_last_suppressed(self) -> str:
687
676
  """
688
- 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).
677
+ The last date and time the suppression prevented submission in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.
689
678
  """
690
679
  return pulumi.get(self, "time_last_suppressed")
691
680