published on Friday, Mar 6, 2026 by Pulumi
published on Friday, Mar 6, 2026 by Pulumi
This resource provides the Email Ip Pool resource in Oracle Cloud Infrastructure Email service.
Creates a new EmailIpPool.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testEmailIpPool = new oci.email.EmailIpPool("test_email_ip_pool", {
compartmentId: compartmentId,
name: emailIpPoolName,
outboundIps: [],
definedTags: {
"Operations.CostCenter": "42",
},
description: emailIpPoolDescription,
freeformTags: {
Department: "Finance",
},
});
import pulumi
import pulumi_oci as oci
test_email_ip_pool = oci.email.EmailIpPool("test_email_ip_pool",
compartment_id=compartment_id,
name=email_ip_pool_name,
outbound_ips=[],
defined_tags={
"Operations.CostCenter": "42",
},
description=email_ip_pool_description,
freeform_tags={
"Department": "Finance",
})
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/email"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := email.NewEmailIpPool(ctx, "test_email_ip_pool", &email.EmailIpPoolArgs{
CompartmentId: pulumi.Any(compartmentId),
Name: pulumi.Any(emailIpPoolName),
OutboundIps: pulumi.StringArray{},
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
Description: pulumi.Any(emailIpPoolDescription),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testEmailIpPool = new Oci.Email.EmailIpPool("test_email_ip_pool", new()
{
CompartmentId = compartmentId,
Name = emailIpPoolName,
OutboundIps = new[] {},
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
Description = emailIpPoolDescription,
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Email.EmailIpPool;
import com.pulumi.oci.Email.EmailIpPoolArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testEmailIpPool = new EmailIpPool("testEmailIpPool", EmailIpPoolArgs.builder()
.compartmentId(compartmentId)
.name(emailIpPoolName)
.outboundIps()
.definedTags(Map.of("Operations.CostCenter", "42"))
.description(emailIpPoolDescription)
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
resources:
testEmailIpPool:
type: oci:Email:EmailIpPool
name: test_email_ip_pool
properties:
compartmentId: ${compartmentId}
name: ${emailIpPoolName}
outboundIps: []
definedTags:
Operations.CostCenter: '42'
description: ${emailIpPoolDescription}
freeformTags:
Department: Finance
Create EmailIpPool Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EmailIpPool(name: string, args: EmailIpPoolArgs, opts?: CustomResourceOptions);@overload
def EmailIpPool(resource_name: str,
args: EmailIpPoolArgs,
opts: Optional[ResourceOptions] = None)
@overload
def EmailIpPool(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
outbound_ips: Optional[Sequence[str]] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
name: Optional[str] = None)func NewEmailIpPool(ctx *Context, name string, args EmailIpPoolArgs, opts ...ResourceOption) (*EmailIpPool, error)public EmailIpPool(string name, EmailIpPoolArgs args, CustomResourceOptions? opts = null)
public EmailIpPool(String name, EmailIpPoolArgs args)
public EmailIpPool(String name, EmailIpPoolArgs args, CustomResourceOptions options)
type: oci:Email:EmailIpPool
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args EmailIpPoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args EmailIpPoolArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args EmailIpPoolArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EmailIpPoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EmailIpPoolArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var emailIpPoolResource = new Oci.Email.EmailIpPool("emailIpPoolResource", new()
{
CompartmentId = "string",
OutboundIps = new[]
{
"string",
},
DefinedTags =
{
{ "string", "string" },
},
Description = "string",
FreeformTags =
{
{ "string", "string" },
},
Name = "string",
});
example, err := email.NewEmailIpPool(ctx, "emailIpPoolResource", &email.EmailIpPoolArgs{
CompartmentId: pulumi.String("string"),
OutboundIps: pulumi.StringArray{
pulumi.String("string"),
},
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Description: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
})
var emailIpPoolResource = new EmailIpPool("emailIpPoolResource", EmailIpPoolArgs.builder()
.compartmentId("string")
.outboundIps("string")
.definedTags(Map.of("string", "string"))
.description("string")
.freeformTags(Map.of("string", "string"))
.name("string")
.build());
email_ip_pool_resource = oci.email.EmailIpPool("emailIpPoolResource",
compartment_id="string",
outbound_ips=["string"],
defined_tags={
"string": "string",
},
description="string",
freeform_tags={
"string": "string",
},
name="string")
const emailIpPoolResource = new oci.email.EmailIpPool("emailIpPoolResource", {
compartmentId: "string",
outboundIps: ["string"],
definedTags: {
string: "string",
},
description: "string",
freeformTags: {
string: "string",
},
name: "string",
});
type: oci:Email:EmailIpPool
properties:
compartmentId: string
definedTags:
string: string
description: string
freeformTags:
string: string
name: string
outboundIps:
- string
EmailIpPool Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The EmailIpPool resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment for this IpPool.
- Outbound
Ips List<string> A list of outbound public IPs for assignment to the IpPool. These IPs must be in the AVAILABLE state to be eligible for assignment.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Description string
- (Updatable) The description of the IpPool. Avoid entering confidential information.
- Dictionary<string, string>
- (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. Example:
{"Department": "Finance"} - Name string
- The name of the IpPool. The name must be unique within a region. The name is case sensitive and supported characters include alphanumeric, hyphens ("-") and underscore ("_") characters. Example: green_pool-1
- Compartment
Id string - (Updatable) The OCID of the compartment for this IpPool.
- Outbound
Ips []string A list of outbound public IPs for assignment to the IpPool. These IPs must be in the AVAILABLE state to be eligible for assignment.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Description string
- (Updatable) The description of the IpPool. Avoid entering confidential information.
- map[string]string
- (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. Example:
{"Department": "Finance"} - Name string
- The name of the IpPool. The name must be unique within a region. The name is case sensitive and supported characters include alphanumeric, hyphens ("-") and underscore ("_") characters. Example: green_pool-1
- compartment
Id String - (Updatable) The OCID of the compartment for this IpPool.
- outbound
Ips List<String> A list of outbound public IPs for assignment to the IpPool. These IPs must be in the AVAILABLE state to be eligible for assignment.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description String
- (Updatable) The description of the IpPool. Avoid entering confidential information.
- Map<String,String>
- (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. Example:
{"Department": "Finance"} - name String
- The name of the IpPool. The name must be unique within a region. The name is case sensitive and supported characters include alphanumeric, hyphens ("-") and underscore ("_") characters. Example: green_pool-1
- compartment
Id string - (Updatable) The OCID of the compartment for this IpPool.
- outbound
Ips string[] A list of outbound public IPs for assignment to the IpPool. These IPs must be in the AVAILABLE state to be eligible for assignment.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description string
- (Updatable) The description of the IpPool. Avoid entering confidential information.
- {[key: string]: string}
- (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. Example:
{"Department": "Finance"} - name string
- The name of the IpPool. The name must be unique within a region. The name is case sensitive and supported characters include alphanumeric, hyphens ("-") and underscore ("_") characters. Example: green_pool-1
- compartment_
id str - (Updatable) The OCID of the compartment for this IpPool.
- outbound_
ips Sequence[str] A list of outbound public IPs for assignment to the IpPool. These IPs must be in the AVAILABLE state to be eligible for assignment.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description str
- (Updatable) The description of the IpPool. Avoid entering confidential information.
- Mapping[str, str]
- (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. Example:
{"Department": "Finance"} - name str
- The name of the IpPool. The name must be unique within a region. The name is case sensitive and supported characters include alphanumeric, hyphens ("-") and underscore ("_") characters. Example: green_pool-1
- compartment
Id String - (Updatable) The OCID of the compartment for this IpPool.
- outbound
Ips List<String> A list of outbound public IPs for assignment to the IpPool. These IPs must be in the AVAILABLE state to be eligible for assignment.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description String
- (Updatable) The description of the IpPool. Avoid entering confidential information.
- Map<String>
- (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. Example:
{"Department": "Finance"} - name String
- The name of the IpPool. The name must be unique within a region. The name is case sensitive and supported characters include alphanumeric, hyphens ("-") and underscore ("_") characters. Example: green_pool-1
Outputs
All input properties are implicitly available as output properties. Additionally, the EmailIpPool resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
- Locks
List<Email
Ip Pool Lock> - Locks associated with this resource.
- Outbound
Ips List<EmailResponses Ip Pool Outbound Ips Response> - State string
- The current state of the IpPool.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example:
2021-02-12T22:47:12.613Z - Time
Updated string - The time of the last change to the IpPool, due to a state change or an update operation. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ".
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
- Locks
[]Email
Ip Pool Lock - Locks associated with this resource.
- Outbound
Ips []EmailResponses Ip Pool Outbound Ips Response - State string
- The current state of the IpPool.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example:
2021-02-12T22:47:12.613Z - Time
Updated string - The time of the last change to the IpPool, due to a state change or an update operation. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ".
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
- locks
List<Ip
Pool Lock> - Locks associated with this resource.
- outbound
Ips List<IpResponses Pool Outbound Ips Response> - state String
- The current state of the IpPool.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example:
2021-02-12T22:47:12.613Z - time
Updated String - The time of the last change to the IpPool, due to a state change or an update operation. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ".
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
- locks
Email
Ip Pool Lock[] - Locks associated with this resource.
- outbound
Ips EmailResponses Ip Pool Outbound Ips Response[] - state string
- The current state of the IpPool.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example:
2021-02-12T22:47:12.613Z - time
Updated string - The time of the last change to the IpPool, due to a state change or an update operation. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ".
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
- locks
Sequence[Email
Ip Pool Lock] - Locks associated with this resource.
- outbound_
ips_ Sequence[Emailresponses Ip Pool Outbound Ips Response] - state str
- The current state of the IpPool.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
created str - The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example:
2021-02-12T22:47:12.613Z - time_
updated str - The time of the last change to the IpPool, due to a state change or an update operation. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ".
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
- locks List<Property Map>
- Locks associated with this resource.
- outbound
Ips List<Property Map>Responses - state String
- The current state of the IpPool.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example:
2021-02-12T22:47:12.613Z - time
Updated String - The time of the last change to the IpPool, due to a state change or an update operation. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ".
Look up Existing EmailIpPool Resource
Get an existing EmailIpPool resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: EmailIpPoolState, opts?: CustomResourceOptions): EmailIpPool@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
lifecycle_details: Optional[str] = None,
locks: Optional[Sequence[EmailIpPoolLockArgs]] = None,
name: Optional[str] = None,
outbound_ips: Optional[Sequence[str]] = None,
outbound_ips_responses: Optional[Sequence[EmailIpPoolOutboundIpsResponseArgs]] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> EmailIpPoolfunc GetEmailIpPool(ctx *Context, name string, id IDInput, state *EmailIpPoolState, opts ...ResourceOption) (*EmailIpPool, error)public static EmailIpPool Get(string name, Input<string> id, EmailIpPoolState? state, CustomResourceOptions? opts = null)public static EmailIpPool get(String name, Output<String> id, EmailIpPoolState state, CustomResourceOptions options)resources: _: type: oci:Email:EmailIpPool get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Compartment
Id string - (Updatable) The OCID of the compartment for this IpPool.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Description string
- (Updatable) The description of the IpPool. Avoid entering confidential information.
- Dictionary<string, string>
- (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. Example:
{"Department": "Finance"} - Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
- Locks
List<Email
Ip Pool Lock> - Locks associated with this resource.
- Name string
- The name of the IpPool. The name must be unique within a region. The name is case sensitive and supported characters include alphanumeric, hyphens ("-") and underscore ("_") characters. Example: green_pool-1
- Outbound
Ips List<string> A list of outbound public IPs for assignment to the IpPool. These IPs must be in the AVAILABLE state to be eligible for assignment.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Outbound
Ips List<EmailResponses Ip Pool Outbound Ips Response> - State string
- The current state of the IpPool.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example:
2021-02-12T22:47:12.613Z - Time
Updated string - The time of the last change to the IpPool, due to a state change or an update operation. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ".
- Compartment
Id string - (Updatable) The OCID of the compartment for this IpPool.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Description string
- (Updatable) The description of the IpPool. Avoid entering confidential information.
- map[string]string
- (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. Example:
{"Department": "Finance"} - Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
- Locks
[]Email
Ip Pool Lock Args - Locks associated with this resource.
- Name string
- The name of the IpPool. The name must be unique within a region. The name is case sensitive and supported characters include alphanumeric, hyphens ("-") and underscore ("_") characters. Example: green_pool-1
- Outbound
Ips []string A list of outbound public IPs for assignment to the IpPool. These IPs must be in the AVAILABLE state to be eligible for assignment.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Outbound
Ips []EmailResponses Ip Pool Outbound Ips Response Args - State string
- The current state of the IpPool.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example:
2021-02-12T22:47:12.613Z - Time
Updated string - The time of the last change to the IpPool, due to a state change or an update operation. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ".
- compartment
Id String - (Updatable) The OCID of the compartment for this IpPool.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description String
- (Updatable) The description of the IpPool. Avoid entering confidential information.
- Map<String,String>
- (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. Example:
{"Department": "Finance"} - lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
- locks
List<Ip
Pool Lock> - Locks associated with this resource.
- name String
- The name of the IpPool. The name must be unique within a region. The name is case sensitive and supported characters include alphanumeric, hyphens ("-") and underscore ("_") characters. Example: green_pool-1
- outbound
Ips List<String> A list of outbound public IPs for assignment to the IpPool. These IPs must be in the AVAILABLE state to be eligible for assignment.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- outbound
Ips List<IpResponses Pool Outbound Ips Response> - state String
- The current state of the IpPool.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example:
2021-02-12T22:47:12.613Z - time
Updated String - The time of the last change to the IpPool, due to a state change or an update operation. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ".
- compartment
Id string - (Updatable) The OCID of the compartment for this IpPool.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description string
- (Updatable) The description of the IpPool. Avoid entering confidential information.
- {[key: string]: string}
- (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. Example:
{"Department": "Finance"} - lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
- locks
Email
Ip Pool Lock[] - Locks associated with this resource.
- name string
- The name of the IpPool. The name must be unique within a region. The name is case sensitive and supported characters include alphanumeric, hyphens ("-") and underscore ("_") characters. Example: green_pool-1
- outbound
Ips string[] A list of outbound public IPs for assignment to the IpPool. These IPs must be in the AVAILABLE state to be eligible for assignment.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- outbound
Ips EmailResponses Ip Pool Outbound Ips Response[] - state string
- The current state of the IpPool.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example:
2021-02-12T22:47:12.613Z - time
Updated string - The time of the last change to the IpPool, due to a state change or an update operation. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ".
- compartment_
id str - (Updatable) The OCID of the compartment for this IpPool.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description str
- (Updatable) The description of the IpPool. Avoid entering confidential information.
- Mapping[str, str]
- (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. Example:
{"Department": "Finance"} - lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
- locks
Sequence[Email
Ip Pool Lock Args] - Locks associated with this resource.
- name str
- The name of the IpPool. The name must be unique within a region. The name is case sensitive and supported characters include alphanumeric, hyphens ("-") and underscore ("_") characters. Example: green_pool-1
- outbound_
ips Sequence[str] A list of outbound public IPs for assignment to the IpPool. These IPs must be in the AVAILABLE state to be eligible for assignment.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- outbound_
ips_ Sequence[Emailresponses Ip Pool Outbound Ips Response Args] - state str
- The current state of the IpPool.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
created str - The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example:
2021-02-12T22:47:12.613Z - time_
updated str - The time of the last change to the IpPool, due to a state change or an update operation. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ".
- compartment
Id String - (Updatable) The OCID of the compartment for this IpPool.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description String
- (Updatable) The description of the IpPool. Avoid entering confidential information.
- Map<String>
- (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. Example:
{"Department": "Finance"} - lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
- locks List<Property Map>
- Locks associated with this resource.
- name String
- The name of the IpPool. The name must be unique within a region. The name is case sensitive and supported characters include alphanumeric, hyphens ("-") and underscore ("_") characters. Example: green_pool-1
- outbound
Ips List<String> A list of outbound public IPs for assignment to the IpPool. These IPs must be in the AVAILABLE state to be eligible for assignment.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- outbound
Ips List<Property Map>Responses - state String
- The current state of the IpPool.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example:
2021-02-12T22:47:12.613Z - time
Updated String - The time of the last change to the IpPool, due to a state change or an update operation. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ".
Supporting Types
EmailIpPoolLock, EmailIpPoolLockArgs
- Compartment
Id string - (Updatable) The OCID of the compartment for this IpPool.
- Message string
- A message added by the lock creator. The message typically gives an indication of why the resource is locked.
- string
- The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
- Time
Created string - The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example:
2021-02-12T22:47:12.613Z - Type string
- Lock type.
- Compartment
Id string - (Updatable) The OCID of the compartment for this IpPool.
- Message string
- A message added by the lock creator. The message typically gives an indication of why the resource is locked.
- string
- The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
- Time
Created string - The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example:
2021-02-12T22:47:12.613Z - Type string
- Lock type.
- compartment
Id String - (Updatable) The OCID of the compartment for this IpPool.
- message String
- A message added by the lock creator. The message typically gives an indication of why the resource is locked.
- String
- The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
- time
Created String - The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example:
2021-02-12T22:47:12.613Z - type String
- Lock type.
- compartment
Id string - (Updatable) The OCID of the compartment for this IpPool.
- message string
- A message added by the lock creator. The message typically gives an indication of why the resource is locked.
- string
- The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
- time
Created string - The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example:
2021-02-12T22:47:12.613Z - type string
- Lock type.
- compartment_
id str - (Updatable) The OCID of the compartment for this IpPool.
- message str
- A message added by the lock creator. The message typically gives an indication of why the resource is locked.
- str
- The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
- time_
created str - The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example:
2021-02-12T22:47:12.613Z - type str
- Lock type.
- compartment
Id String - (Updatable) The OCID of the compartment for this IpPool.
- message String
- A message added by the lock creator. The message typically gives an indication of why the resource is locked.
- String
- The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
- time
Created String - The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example:
2021-02-12T22:47:12.613Z - type String
- Lock type.
EmailIpPoolOutboundIpsResponse, EmailIpPoolOutboundIpsResponseArgs
- Assignment
State string - The assignment state of the public IP address.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
- Outbound
Ip string - The public IP address assigned to the tenancy.
- State string
- The current state of the IpPool.
- Assignment
State string - The assignment state of the public IP address.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
- Outbound
Ip string - The public IP address assigned to the tenancy.
- State string
- The current state of the IpPool.
- assignment
State String - The assignment state of the public IP address.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
- outbound
Ip String - The public IP address assigned to the tenancy.
- state String
- The current state of the IpPool.
- assignment
State string - The assignment state of the public IP address.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
- outbound
Ip string - The public IP address assigned to the tenancy.
- state string
- The current state of the IpPool.
- assignment_
state str - The assignment state of the public IP address.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
- outbound_
ip str - The public IP address assigned to the tenancy.
- state str
- The current state of the IpPool.
- assignment
State String - The assignment state of the public IP address.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
- outbound
Ip String - The public IP address assigned to the tenancy.
- state String
- The current state of the IpPool.
Import
EmailIpPools can be imported using the id, e.g.
$ pulumi import oci:Email/emailIpPool:EmailIpPool test_email_ip_pool "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
published on Friday, Mar 6, 2026 by Pulumi
