pulumi-oci 1.35.0a1715306721__py3-none-any.whl → 1.36.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (130) hide show
  1. pulumi_oci/__init__.py +208 -0
  2. pulumi_oci/core/__init__.py +3 -0
  3. pulumi_oci/core/_inputs.py +40 -0
  4. pulumi_oci/core/get_ip_inventory_subnet.py +171 -0
  5. pulumi_oci/core/get_ip_inventory_subnet_cidr.py +171 -0
  6. pulumi_oci/core/get_ip_inventory_vcn_overlaps.py +206 -0
  7. pulumi_oci/core/outputs.py +261 -0
  8. pulumi_oci/database/_inputs.py +304 -0
  9. pulumi_oci/database/cloud_exadata_infrastructure.py +28 -0
  10. pulumi_oci/database/cloud_vm_cluster.py +55 -0
  11. pulumi_oci/database/exadata_infrastructure.py +28 -0
  12. pulumi_oci/database/get_cloud_exadata_infrastructure.py +14 -1
  13. pulumi_oci/database/get_cloud_vm_cluster.py +14 -1
  14. pulumi_oci/database/get_exadata_infrastructure.py +14 -1
  15. pulumi_oci/database/get_vm_cluster.py +14 -1
  16. pulumi_oci/database/outputs.py +734 -6
  17. pulumi_oci/database/vm_cluster.py +55 -0
  18. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  19. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  20. pulumi_oci/datasafe/__init__.py +1 -0
  21. pulumi_oci/datasafe/masking_report_management.py +693 -0
  22. pulumi_oci/disasterrecovery/_inputs.py +16 -0
  23. pulumi_oci/disasterrecovery/outputs.py +36 -0
  24. pulumi_oci/email/__init__.py +3 -0
  25. pulumi_oci/email/_inputs.py +46 -0
  26. pulumi_oci/email/dkim.py +4 -4
  27. pulumi_oci/email/email_domain.py +77 -0
  28. pulumi_oci/email/email_return_path.py +642 -0
  29. pulumi_oci/email/get_email_domain.py +27 -1
  30. pulumi_oci/email/get_email_return_path.py +274 -0
  31. pulumi_oci/email/get_email_return_paths.py +203 -0
  32. pulumi_oci/email/outputs.py +231 -0
  33. pulumi_oci/loadbalancer/_inputs.py +160 -20
  34. pulumi_oci/loadbalancer/backend.py +49 -0
  35. pulumi_oci/loadbalancer/backend_set.py +57 -0
  36. pulumi_oci/loadbalancer/get_listener_rules.py +2 -2
  37. pulumi_oci/loadbalancer/listener.py +2 -0
  38. pulumi_oci/loadbalancer/load_balancer.py +98 -7
  39. pulumi_oci/loadbalancer/outputs.py +375 -36
  40. pulumi_oci/loadbalancer/rule_set.py +10 -0
  41. pulumi_oci/loganalytics/namespace.py +4 -4
  42. pulumi_oci/networkloadbalancer/get_listener.py +14 -1
  43. pulumi_oci/networkloadbalancer/listener.py +51 -2
  44. pulumi_oci/networkloadbalancer/outputs.py +11 -0
  45. pulumi_oci/osmanagementhub/__init__.py +48 -0
  46. pulumi_oci/osmanagementhub/_inputs.py +3635 -493
  47. pulumi_oci/osmanagementhub/event.py +701 -0
  48. pulumi_oci/osmanagementhub/get_entitlements.py +178 -0
  49. pulumi_oci/osmanagementhub/get_errata.py +283 -0
  50. pulumi_oci/osmanagementhub/get_erratum.py +308 -0
  51. pulumi_oci/osmanagementhub/get_event.py +314 -0
  52. pulumi_oci/osmanagementhub/get_events.py +314 -0
  53. pulumi_oci/osmanagementhub/get_lifecycle_environment.py +26 -13
  54. pulumi_oci/osmanagementhub/get_lifecycle_environments.py +48 -11
  55. pulumi_oci/osmanagementhub/get_lifecycle_stage.py +28 -15
  56. pulumi_oci/osmanagementhub/get_lifecycle_stages.py +86 -19
  57. pulumi_oci/osmanagementhub/get_managed_instance.py +587 -0
  58. pulumi_oci/osmanagementhub/get_managed_instance_available_packages.py +187 -0
  59. pulumi_oci/osmanagementhub/get_managed_instance_available_software_sources.py +190 -0
  60. pulumi_oci/osmanagementhub/get_managed_instance_available_windows_updates.py +238 -0
  61. pulumi_oci/osmanagementhub/get_managed_instance_errata.py +204 -0
  62. pulumi_oci/osmanagementhub/get_managed_instance_group.py +62 -10
  63. pulumi_oci/osmanagementhub/get_managed_instance_group_available_modules.py +7 -9
  64. pulumi_oci/osmanagementhub/get_managed_instance_group_available_packages.py +7 -7
  65. pulumi_oci/osmanagementhub/get_managed_instance_group_available_software_sources.py +8 -10
  66. pulumi_oci/osmanagementhub/get_managed_instance_group_installed_packages.py +220 -0
  67. pulumi_oci/osmanagementhub/get_managed_instance_group_modules.py +244 -0
  68. pulumi_oci/osmanagementhub/get_managed_instance_groups.py +71 -16
  69. pulumi_oci/osmanagementhub/get_managed_instance_installed_packages.py +221 -0
  70. pulumi_oci/osmanagementhub/get_managed_instance_installed_windows_updates.py +204 -0
  71. pulumi_oci/osmanagementhub/get_managed_instance_modules.py +187 -0
  72. pulumi_oci/osmanagementhub/get_managed_instance_updatable_packages.py +221 -0
  73. pulumi_oci/osmanagementhub/get_managed_instances.py +537 -0
  74. pulumi_oci/osmanagementhub/get_management_station.py +42 -19
  75. pulumi_oci/osmanagementhub/get_management_station_mirrors.py +4 -4
  76. pulumi_oci/osmanagementhub/get_management_stations.py +15 -15
  77. pulumi_oci/osmanagementhub/get_profile.py +51 -12
  78. pulumi_oci/osmanagementhub/get_profiles.py +76 -16
  79. pulumi_oci/osmanagementhub/get_scheduled_job.py +426 -0
  80. pulumi_oci/osmanagementhub/get_scheduled_jobs.py +433 -0
  81. pulumi_oci/osmanagementhub/get_software_package.py +301 -0
  82. pulumi_oci/osmanagementhub/get_software_package_software_source.py +329 -0
  83. pulumi_oci/osmanagementhub/get_software_packages.py +232 -0
  84. pulumi_oci/osmanagementhub/get_software_source.py +109 -18
  85. pulumi_oci/osmanagementhub/get_software_source_module_stream.py +5 -5
  86. pulumi_oci/osmanagementhub/get_software_source_module_stream_profile.py +6 -6
  87. pulumi_oci/osmanagementhub/get_software_source_module_stream_profiles.py +8 -8
  88. pulumi_oci/osmanagementhub/get_software_source_module_streams.py +9 -9
  89. pulumi_oci/osmanagementhub/get_software_source_package_group.py +8 -8
  90. pulumi_oci/osmanagementhub/get_software_source_package_groups.py +7 -7
  91. pulumi_oci/osmanagementhub/get_software_source_software_package.py +23 -10
  92. pulumi_oci/osmanagementhub/get_software_source_software_packages.py +6 -6
  93. pulumi_oci/osmanagementhub/get_software_source_vendors.py +2 -2
  94. pulumi_oci/osmanagementhub/get_software_sources.py +78 -21
  95. pulumi_oci/osmanagementhub/get_windows_update.py +222 -0
  96. pulumi_oci/osmanagementhub/get_windows_updates.py +187 -0
  97. pulumi_oci/osmanagementhub/lifecycle_environment.py +159 -86
  98. pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +249 -0
  99. pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +249 -0
  100. pulumi_oci/osmanagementhub/lifecycle_stage_promote_software_source_management.py +296 -0
  101. pulumi_oci/osmanagementhub/managed_instance.py +1327 -0
  102. pulumi_oci/osmanagementhub/managed_instance_attach_profile_management.py +266 -0
  103. pulumi_oci/osmanagementhub/managed_instance_detach_profile_management.py +214 -0
  104. pulumi_oci/osmanagementhub/managed_instance_group.py +264 -86
  105. pulumi_oci/osmanagementhub/managed_instance_group_attach_managed_instances_management.py +293 -0
  106. pulumi_oci/osmanagementhub/managed_instance_group_attach_software_sources_management.py +293 -0
  107. pulumi_oci/osmanagementhub/managed_instance_group_detach_managed_instances_management.py +264 -0
  108. pulumi_oci/osmanagementhub/managed_instance_group_detach_software_sources_management.py +293 -0
  109. pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +293 -0
  110. pulumi_oci/osmanagementhub/managed_instance_group_install_windows_updates_management.py +293 -0
  111. pulumi_oci/osmanagementhub/managed_instance_group_manage_module_streams_management.py +526 -0
  112. pulumi_oci/osmanagementhub/managed_instance_group_remove_packages_management.py +293 -0
  113. pulumi_oci/osmanagementhub/managed_instance_group_update_all_packages_management.py +292 -0
  114. pulumi_oci/osmanagementhub/managed_instance_install_windows_updates_management.py +341 -0
  115. pulumi_oci/osmanagementhub/managed_instance_update_packages_management.py +341 -0
  116. pulumi_oci/osmanagementhub/management_station.py +184 -81
  117. pulumi_oci/osmanagementhub/management_station_mirror_synchronize_management.py +264 -0
  118. pulumi_oci/osmanagementhub/management_station_refresh_management.py +212 -0
  119. pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +264 -0
  120. pulumi_oci/osmanagementhub/outputs.py +10867 -2365
  121. pulumi_oci/osmanagementhub/profile.py +200 -78
  122. pulumi_oci/osmanagementhub/scheduled_job.py +1331 -0
  123. pulumi_oci/osmanagementhub/software_source.py +365 -181
  124. pulumi_oci/osmanagementhub/software_source_add_packages_management.py +266 -0
  125. pulumi_oci/osmanagementhub/software_source_change_availability_management.py +194 -0
  126. pulumi_oci/pulumi-plugin.json +2 -1
  127. {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/METADATA +1 -1
  128. {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/RECORD +130 -75
  129. {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/WHEEL +0 -0
  130. {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/top_level.txt +0 -0
@@ -523,11 +523,13 @@ class DrPlanPlanGroupArgs:
523
523
  def __init__(__self__, *,
524
524
  display_name: Optional[pulumi.Input[str]] = None,
525
525
  id: Optional[pulumi.Input[str]] = None,
526
+ is_pause_enabled: Optional[pulumi.Input[bool]] = None,
526
527
  steps: Optional[pulumi.Input[Sequence[pulumi.Input['DrPlanPlanGroupStepArgs']]]] = None,
527
528
  type: Optional[pulumi.Input[str]] = None):
528
529
  """
529
530
  :param pulumi.Input[str] display_name: (Updatable) The display name of the DR plan being created. Example: `EBS Switchover PHX to IAD`
530
531
  :param pulumi.Input[str] id: The unique id of the step. Must not be modified by the user. Example: `sgid1.step..uniqueID`
532
+ :param pulumi.Input[bool] is_pause_enabled: A flag indicating whether this group should be enabled for execution. This flag is only applicable to the `USER_DEFINED_PAUSE` group. The flag should be null for the remaining group types. Example: `true`
531
533
  :param pulumi.Input[Sequence[pulumi.Input['DrPlanPlanGroupStepArgs']]] steps: The list of steps in the group.
532
534
  :param pulumi.Input[str] type: The type of DR plan to be created.
533
535
 
@@ -539,6 +541,8 @@ class DrPlanPlanGroupArgs:
539
541
  pulumi.set(__self__, "display_name", display_name)
540
542
  if id is not None:
541
543
  pulumi.set(__self__, "id", id)
544
+ if is_pause_enabled is not None:
545
+ pulumi.set(__self__, "is_pause_enabled", is_pause_enabled)
542
546
  if steps is not None:
543
547
  pulumi.set(__self__, "steps", steps)
544
548
  if type is not None:
@@ -568,6 +572,18 @@ class DrPlanPlanGroupArgs:
568
572
  def id(self, value: Optional[pulumi.Input[str]]):
569
573
  pulumi.set(self, "id", value)
570
574
 
575
+ @property
576
+ @pulumi.getter(name="isPauseEnabled")
577
+ def is_pause_enabled(self) -> Optional[pulumi.Input[bool]]:
578
+ """
579
+ A flag indicating whether this group should be enabled for execution. This flag is only applicable to the `USER_DEFINED_PAUSE` group. The flag should be null for the remaining group types. Example: `true`
580
+ """
581
+ return pulumi.get(self, "is_pause_enabled")
582
+
583
+ @is_pause_enabled.setter
584
+ def is_pause_enabled(self, value: Optional[pulumi.Input[bool]]):
585
+ pulumi.set(self, "is_pause_enabled", value)
586
+
571
587
  @property
572
588
  @pulumi.getter
573
589
  def steps(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DrPlanPlanGroupStepArgs']]]]:
@@ -543,6 +543,8 @@ class DrPlanPlanGroup(dict):
543
543
  suggest = None
544
544
  if key == "displayName":
545
545
  suggest = "display_name"
546
+ elif key == "isPauseEnabled":
547
+ suggest = "is_pause_enabled"
546
548
 
547
549
  if suggest:
548
550
  pulumi.log.warn(f"Key '{key}' not found in DrPlanPlanGroup. Access the value via the '{suggest}' property getter instead.")
@@ -558,11 +560,13 @@ class DrPlanPlanGroup(dict):
558
560
  def __init__(__self__, *,
559
561
  display_name: Optional[str] = None,
560
562
  id: Optional[str] = None,
563
+ is_pause_enabled: Optional[bool] = None,
561
564
  steps: Optional[Sequence['outputs.DrPlanPlanGroupStep']] = None,
562
565
  type: Optional[str] = None):
563
566
  """
564
567
  :param str display_name: (Updatable) The display name of the DR plan being created. Example: `EBS Switchover PHX to IAD`
565
568
  :param str id: The unique id of the step. Must not be modified by the user. Example: `sgid1.step..uniqueID`
569
+ :param bool is_pause_enabled: A flag indicating whether this group should be enabled for execution. This flag is only applicable to the `USER_DEFINED_PAUSE` group. The flag should be null for the remaining group types. Example: `true`
566
570
  :param Sequence['DrPlanPlanGroupStepArgs'] steps: The list of steps in the group.
567
571
  :param str type: The type of DR plan to be created.
568
572
 
@@ -574,6 +578,8 @@ class DrPlanPlanGroup(dict):
574
578
  pulumi.set(__self__, "display_name", display_name)
575
579
  if id is not None:
576
580
  pulumi.set(__self__, "id", id)
581
+ if is_pause_enabled is not None:
582
+ pulumi.set(__self__, "is_pause_enabled", is_pause_enabled)
577
583
  if steps is not None:
578
584
  pulumi.set(__self__, "steps", steps)
579
585
  if type is not None:
@@ -595,6 +601,14 @@ class DrPlanPlanGroup(dict):
595
601
  """
596
602
  return pulumi.get(self, "id")
597
603
 
604
+ @property
605
+ @pulumi.getter(name="isPauseEnabled")
606
+ def is_pause_enabled(self) -> Optional[bool]:
607
+ """
608
+ A flag indicating whether this group should be enabled for execution. This flag is only applicable to the `USER_DEFINED_PAUSE` group. The flag should be null for the remaining group types. Example: `true`
609
+ """
610
+ return pulumi.get(self, "is_pause_enabled")
611
+
598
612
  @property
599
613
  @pulumi.getter
600
614
  def steps(self) -> Optional[Sequence['outputs.DrPlanPlanGroupStep']]:
@@ -2805,16 +2819,19 @@ class GetDrPlanPlanGroupResult(dict):
2805
2819
  def __init__(__self__, *,
2806
2820
  display_name: str,
2807
2821
  id: str,
2822
+ is_pause_enabled: bool,
2808
2823
  steps: Sequence['outputs.GetDrPlanPlanGroupStepResult'],
2809
2824
  type: str):
2810
2825
  """
2811
2826
  :param str display_name: The display name of the group. Example: `DATABASE_SWITCHOVER`
2812
2827
  :param str id: The unique id of the step. Must not be modified by the user. Example: `sgid1.step..uniqueID`
2828
+ :param bool is_pause_enabled: A flag indicating whether this group should be enabled for execution. This flag is only applicable to the `USER_DEFINED_PAUSE` group. The flag should be null for the remaining group types. Example: `true`
2813
2829
  :param Sequence['GetDrPlanPlanGroupStepArgs'] steps: The list of steps in the group.
2814
2830
  :param str type: The type of the DR plan.
2815
2831
  """
2816
2832
  pulumi.set(__self__, "display_name", display_name)
2817
2833
  pulumi.set(__self__, "id", id)
2834
+ pulumi.set(__self__, "is_pause_enabled", is_pause_enabled)
2818
2835
  pulumi.set(__self__, "steps", steps)
2819
2836
  pulumi.set(__self__, "type", type)
2820
2837
 
@@ -2834,6 +2851,14 @@ class GetDrPlanPlanGroupResult(dict):
2834
2851
  """
2835
2852
  return pulumi.get(self, "id")
2836
2853
 
2854
+ @property
2855
+ @pulumi.getter(name="isPauseEnabled")
2856
+ def is_pause_enabled(self) -> bool:
2857
+ """
2858
+ A flag indicating whether this group should be enabled for execution. This flag is only applicable to the `USER_DEFINED_PAUSE` group. The flag should be null for the remaining group types. Example: `true`
2859
+ """
2860
+ return pulumi.get(self, "is_pause_enabled")
2861
+
2837
2862
  @property
2838
2863
  @pulumi.getter
2839
2864
  def steps(self) -> Sequence['outputs.GetDrPlanPlanGroupStepResult']:
@@ -3292,16 +3317,19 @@ class GetDrPlansDrPlanCollectionItemPlanGroupResult(dict):
3292
3317
  def __init__(__self__, *,
3293
3318
  display_name: str,
3294
3319
  id: str,
3320
+ is_pause_enabled: bool,
3295
3321
  steps: Sequence['outputs.GetDrPlansDrPlanCollectionItemPlanGroupStepResult'],
3296
3322
  type: str):
3297
3323
  """
3298
3324
  :param str display_name: A filter to return only resources that match the given display name. Example: `MyResourceDisplayName`
3299
3325
  :param str id: The unique id of the step. Must not be modified by the user. Example: `sgid1.step..uniqueID`
3326
+ :param bool is_pause_enabled: A flag indicating whether this group should be enabled for execution. This flag is only applicable to the `USER_DEFINED_PAUSE` group. The flag should be null for the remaining group types. Example: `true`
3300
3327
  :param Sequence['GetDrPlansDrPlanCollectionItemPlanGroupStepArgs'] steps: The list of steps in the group.
3301
3328
  :param str type: The type of the DR plan.
3302
3329
  """
3303
3330
  pulumi.set(__self__, "display_name", display_name)
3304
3331
  pulumi.set(__self__, "id", id)
3332
+ pulumi.set(__self__, "is_pause_enabled", is_pause_enabled)
3305
3333
  pulumi.set(__self__, "steps", steps)
3306
3334
  pulumi.set(__self__, "type", type)
3307
3335
 
@@ -3321,6 +3349,14 @@ class GetDrPlansDrPlanCollectionItemPlanGroupResult(dict):
3321
3349
  """
3322
3350
  return pulumi.get(self, "id")
3323
3351
 
3352
+ @property
3353
+ @pulumi.getter(name="isPauseEnabled")
3354
+ def is_pause_enabled(self) -> bool:
3355
+ """
3356
+ A flag indicating whether this group should be enabled for execution. This flag is only applicable to the `USER_DEFINED_PAUSE` group. The flag should be null for the remaining group types. Example: `true`
3357
+ """
3358
+ return pulumi.get(self, "is_pause_enabled")
3359
+
3324
3360
  @property
3325
3361
  @pulumi.getter
3326
3362
  def steps(self) -> Sequence['outputs.GetDrPlansDrPlanCollectionItemPlanGroupStepResult']:
@@ -7,11 +7,14 @@ import typing
7
7
  # Export this package's modules as members:
8
8
  from .dkim import *
9
9
  from .email_domain import *
10
+ from .email_return_path import *
10
11
  from .get_configuration import *
11
12
  from .get_dkim import *
12
13
  from .get_dkims import *
13
14
  from .get_email_domain import *
14
15
  from .get_email_domains import *
16
+ from .get_email_return_path import *
17
+ from .get_email_return_paths import *
15
18
  from .get_sender import *
16
19
  from .get_senders import *
17
20
  from .get_suppression import *
@@ -12,6 +12,7 @@ from .. import _utilities
12
12
  __all__ = [
13
13
  'GetDkimsFilterArgs',
14
14
  'GetEmailDomainsFilterArgs',
15
+ 'GetEmailReturnPathsFilterArgs',
15
16
  'GetSendersFilterArgs',
16
17
  'GetSuppressionsFilterArgs',
17
18
  ]
@@ -106,6 +107,51 @@ class GetEmailDomainsFilterArgs:
106
107
  pulumi.set(self, "regex", value)
107
108
 
108
109
 
110
+ @pulumi.input_type
111
+ class GetEmailReturnPathsFilterArgs:
112
+ def __init__(__self__, *,
113
+ name: str,
114
+ values: Sequence[str],
115
+ regex: Optional[bool] = None):
116
+ """
117
+ :param str name: A filter to only return resources that match the given name exactly.
118
+ """
119
+ pulumi.set(__self__, "name", name)
120
+ pulumi.set(__self__, "values", values)
121
+ if regex is not None:
122
+ pulumi.set(__self__, "regex", regex)
123
+
124
+ @property
125
+ @pulumi.getter
126
+ def name(self) -> str:
127
+ """
128
+ A filter to only return resources that match the given name exactly.
129
+ """
130
+ return pulumi.get(self, "name")
131
+
132
+ @name.setter
133
+ def name(self, value: str):
134
+ pulumi.set(self, "name", value)
135
+
136
+ @property
137
+ @pulumi.getter
138
+ def values(self) -> Sequence[str]:
139
+ return pulumi.get(self, "values")
140
+
141
+ @values.setter
142
+ def values(self, value: Sequence[str]):
143
+ pulumi.set(self, "values", value)
144
+
145
+ @property
146
+ @pulumi.getter
147
+ def regex(self) -> Optional[bool]:
148
+ return pulumi.get(self, "regex")
149
+
150
+ @regex.setter
151
+ def regex(self, value: Optional[bool]):
152
+ pulumi.set(self, "regex", value)
153
+
154
+
109
155
  @pulumi.input_type
110
156
  class GetSendersFilterArgs:
111
157
  def __init__(__self__, *,
pulumi_oci/email/dkim.py CHANGED
@@ -137,7 +137,7 @@ 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.
@@ -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
 
@@ -545,7 +545,7 @@ class Dkim(pulumi.CustomResource):
545
545
  :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.
546
546
  :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"}`
547
547
  :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.
548
- :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.
548
+ :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
549
549
  :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.
550
550
  :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"}`
551
551
  :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.
@@ -620,7 +620,7 @@ class Dkim(pulumi.CustomResource):
620
620
  @pulumi.getter(name="dnsSubdomainName")
621
621
  def dns_subdomain_name(self) -> pulumi.Output[str]:
622
622
  """
623
- 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.
623
+ 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
624
624
  """
625
625
  return pulumi.get(self, "dns_subdomain_name")
626
626
 
@@ -17,6 +17,7 @@ class EmailDomainArgs:
17
17
  compartment_id: pulumi.Input[str],
18
18
  defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
19
19
  description: Optional[pulumi.Input[str]] = None,
20
+ domain_verification_id: Optional[pulumi.Input[str]] = None,
20
21
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
21
22
  name: Optional[pulumi.Input[str]] = None):
22
23
  """
@@ -24,6 +25,7 @@ class EmailDomainArgs:
24
25
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment for this email domain.
25
26
  :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
27
  :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.
28
+ :param pulumi.Input[str] domain_verification_id: (Updatable) Id for Domain in Domain Management (under governance) if DOMAINID verification method used.
27
29
  :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
30
  :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
31
 
@@ -36,6 +38,8 @@ class EmailDomainArgs:
36
38
  pulumi.set(__self__, "defined_tags", defined_tags)
37
39
  if description is not None:
38
40
  pulumi.set(__self__, "description", description)
41
+ if domain_verification_id is not None:
42
+ pulumi.set(__self__, "domain_verification_id", domain_verification_id)
39
43
  if freeform_tags is not None:
40
44
  pulumi.set(__self__, "freeform_tags", freeform_tags)
41
45
  if name is not None:
@@ -77,6 +81,18 @@ class EmailDomainArgs:
77
81
  def description(self, value: Optional[pulumi.Input[str]]):
78
82
  pulumi.set(self, "description", value)
79
83
 
84
+ @property
85
+ @pulumi.getter(name="domainVerificationId")
86
+ def domain_verification_id(self) -> Optional[pulumi.Input[str]]:
87
+ """
88
+ (Updatable) Id for Domain in Domain Management (under governance) if DOMAINID verification method used.
89
+ """
90
+ return pulumi.get(self, "domain_verification_id")
91
+
92
+ @domain_verification_id.setter
93
+ def domain_verification_id(self, value: Optional[pulumi.Input[str]]):
94
+ pulumi.set(self, "domain_verification_id", value)
95
+
80
96
  @property
81
97
  @pulumi.getter(name="freeformTags")
82
98
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
@@ -113,6 +129,8 @@ class _EmailDomainState:
113
129
  compartment_id: Optional[pulumi.Input[str]] = None,
114
130
  defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
115
131
  description: Optional[pulumi.Input[str]] = None,
132
+ domain_verification_id: Optional[pulumi.Input[str]] = None,
133
+ domain_verification_status: Optional[pulumi.Input[str]] = None,
116
134
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
117
135
  is_spf: Optional[pulumi.Input[bool]] = None,
118
136
  name: Optional[pulumi.Input[str]] = None,
@@ -125,6 +143,8 @@ class _EmailDomainState:
125
143
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment for this email domain.
126
144
  :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"}`
127
145
  :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.
146
+ :param pulumi.Input[str] domain_verification_id: (Updatable) Id for Domain in Domain Management (under governance) if DOMAINID verification method used.
147
+ :param pulumi.Input[str] domain_verification_status: The current domain verification status.
128
148
  :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
149
  :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
150
  :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).
@@ -144,6 +164,10 @@ class _EmailDomainState:
144
164
  pulumi.set(__self__, "defined_tags", defined_tags)
145
165
  if description is not None:
146
166
  pulumi.set(__self__, "description", description)
167
+ if domain_verification_id is not None:
168
+ pulumi.set(__self__, "domain_verification_id", domain_verification_id)
169
+ if domain_verification_status is not None:
170
+ pulumi.set(__self__, "domain_verification_status", domain_verification_status)
147
171
  if freeform_tags is not None:
148
172
  pulumi.set(__self__, "freeform_tags", freeform_tags)
149
173
  if is_spf is not None:
@@ -205,6 +229,30 @@ class _EmailDomainState:
205
229
  def description(self, value: Optional[pulumi.Input[str]]):
206
230
  pulumi.set(self, "description", value)
207
231
 
232
+ @property
233
+ @pulumi.getter(name="domainVerificationId")
234
+ def domain_verification_id(self) -> Optional[pulumi.Input[str]]:
235
+ """
236
+ (Updatable) Id for Domain in Domain Management (under governance) if DOMAINID verification method used.
237
+ """
238
+ return pulumi.get(self, "domain_verification_id")
239
+
240
+ @domain_verification_id.setter
241
+ def domain_verification_id(self, value: Optional[pulumi.Input[str]]):
242
+ pulumi.set(self, "domain_verification_id", value)
243
+
244
+ @property
245
+ @pulumi.getter(name="domainVerificationStatus")
246
+ def domain_verification_status(self) -> Optional[pulumi.Input[str]]:
247
+ """
248
+ The current domain verification status.
249
+ """
250
+ return pulumi.get(self, "domain_verification_status")
251
+
252
+ @domain_verification_status.setter
253
+ def domain_verification_status(self, value: Optional[pulumi.Input[str]]):
254
+ pulumi.set(self, "domain_verification_status", value)
255
+
208
256
  @property
209
257
  @pulumi.getter(name="freeformTags")
210
258
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
@@ -290,6 +338,7 @@ class EmailDomain(pulumi.CustomResource):
290
338
  compartment_id: Optional[pulumi.Input[str]] = None,
291
339
  defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
292
340
  description: Optional[pulumi.Input[str]] = None,
341
+ domain_verification_id: Optional[pulumi.Input[str]] = None,
293
342
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
294
343
  name: Optional[pulumi.Input[str]] = None,
295
344
  __props__=None):
@@ -311,6 +360,7 @@ class EmailDomain(pulumi.CustomResource):
311
360
  "Operations.CostCenter": "42",
312
361
  },
313
362
  description=email_domain_description,
363
+ domain_verification_id=test_domain_verification["id"],
314
364
  freeform_tags={
315
365
  "Department": "Finance",
316
366
  })
@@ -329,6 +379,7 @@ class EmailDomain(pulumi.CustomResource):
329
379
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment for this email domain.
330
380
  :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"}`
331
381
  :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.
382
+ :param pulumi.Input[str] domain_verification_id: (Updatable) Id for Domain in Domain Management (under governance) if DOMAINID verification method used.
332
383
  :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"}`
333
384
  :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
385
 
@@ -360,6 +411,7 @@ class EmailDomain(pulumi.CustomResource):
360
411
  "Operations.CostCenter": "42",
361
412
  },
362
413
  description=email_domain_description,
414
+ domain_verification_id=test_domain_verification["id"],
363
415
  freeform_tags={
364
416
  "Department": "Finance",
365
417
  })
@@ -391,6 +443,7 @@ class EmailDomain(pulumi.CustomResource):
391
443
  compartment_id: Optional[pulumi.Input[str]] = None,
392
444
  defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
393
445
  description: Optional[pulumi.Input[str]] = None,
446
+ domain_verification_id: Optional[pulumi.Input[str]] = None,
394
447
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
395
448
  name: Optional[pulumi.Input[str]] = None,
396
449
  __props__=None):
@@ -407,9 +460,11 @@ class EmailDomain(pulumi.CustomResource):
407
460
  __props__.__dict__["compartment_id"] = compartment_id
408
461
  __props__.__dict__["defined_tags"] = defined_tags
409
462
  __props__.__dict__["description"] = description
463
+ __props__.__dict__["domain_verification_id"] = domain_verification_id
410
464
  __props__.__dict__["freeform_tags"] = freeform_tags
411
465
  __props__.__dict__["name"] = name
412
466
  __props__.__dict__["active_dkim_id"] = None
467
+ __props__.__dict__["domain_verification_status"] = None
413
468
  __props__.__dict__["is_spf"] = None
414
469
  __props__.__dict__["state"] = None
415
470
  __props__.__dict__["system_tags"] = None
@@ -428,6 +483,8 @@ class EmailDomain(pulumi.CustomResource):
428
483
  compartment_id: Optional[pulumi.Input[str]] = None,
429
484
  defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
430
485
  description: Optional[pulumi.Input[str]] = None,
486
+ domain_verification_id: Optional[pulumi.Input[str]] = None,
487
+ domain_verification_status: Optional[pulumi.Input[str]] = None,
431
488
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
432
489
  is_spf: Optional[pulumi.Input[bool]] = None,
433
490
  name: Optional[pulumi.Input[str]] = None,
@@ -445,6 +502,8 @@ class EmailDomain(pulumi.CustomResource):
445
502
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment for this email domain.
446
503
  :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"}`
447
504
  :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.
505
+ :param pulumi.Input[str] domain_verification_id: (Updatable) Id for Domain in Domain Management (under governance) if DOMAINID verification method used.
506
+ :param pulumi.Input[str] domain_verification_status: The current domain verification status.
448
507
  :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"}`
449
508
  :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).
450
509
  :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).
@@ -464,6 +523,8 @@ class EmailDomain(pulumi.CustomResource):
464
523
  __props__.__dict__["compartment_id"] = compartment_id
465
524
  __props__.__dict__["defined_tags"] = defined_tags
466
525
  __props__.__dict__["description"] = description
526
+ __props__.__dict__["domain_verification_id"] = domain_verification_id
527
+ __props__.__dict__["domain_verification_status"] = domain_verification_status
467
528
  __props__.__dict__["freeform_tags"] = freeform_tags
468
529
  __props__.__dict__["is_spf"] = is_spf
469
530
  __props__.__dict__["name"] = name
@@ -504,6 +565,22 @@ class EmailDomain(pulumi.CustomResource):
504
565
  """
505
566
  return pulumi.get(self, "description")
506
567
 
568
+ @property
569
+ @pulumi.getter(name="domainVerificationId")
570
+ def domain_verification_id(self) -> pulumi.Output[str]:
571
+ """
572
+ (Updatable) Id for Domain in Domain Management (under governance) if DOMAINID verification method used.
573
+ """
574
+ return pulumi.get(self, "domain_verification_id")
575
+
576
+ @property
577
+ @pulumi.getter(name="domainVerificationStatus")
578
+ def domain_verification_status(self) -> pulumi.Output[str]:
579
+ """
580
+ The current domain verification status.
581
+ """
582
+ return pulumi.get(self, "domain_verification_status")
583
+
507
584
  @property
508
585
  @pulumi.getter(name="freeformTags")
509
586
  def freeform_tags(self) -> pulumi.Output[Mapping[str, Any]]: